Overview
SHA1 Hash: | b7588eb2f7ede9178b5740d204391fc9632aaa05 |
---|---|
Date: | 2008-07-19 14:15:16 |
User: | drh |
Comment: | Fix the "Key Template" setup box under ticket configuration. |
Timelines: | ancestors | descendants | both | trunk |
Other Links: | files | ZIP archive | manifest |
Tags And Properties
- branch=trunk inherited from [a28c83647d]
- sym-trunk inherited from [a28c83647d]
Changes
[hide diffs]Modified src/tktsetup.c from [fa060a4666] to [e7df19c0f4].
@@ -128,16 +128,17 @@ db_set(zDbField, z, 0); if( xRebuild ) xRebuild(); } } @ <form action="%s(g.zBaseURL)/%s(g.zPath)" method="POST"> - @ %s(zDesc) + @ <p>%s(zDesc)</p> @ <textarea name="x" rows="%d(height)" cols="80">%h(z)</textarea> - @ <br /> + @ <blockquote> @ <input type="submit" name="submit" value="Apply Changes"> @ <input type="submit" name="clear" value="Revert To Default"> - @ <input type="submit" name="setup" value="Ticket Setup Menu"> + @ <input type="submit" name="setup" value="Cancel"> + @ </blockquote> @ </form> @ <hr> @ <h2>Default %s(zTitle)</h2> @ <blockquote><pre> @ %h(zDfltValue) @@ -558,11 +559,11 @@ ** WEBPAGE: tktsetup_rpttplt */ void tktsetup_rpttplt_page(void){ static const char zDesc[] = @ <p>Enter the default ticket report format template. This is the - @ the template report format that initial appears when creating a + @ the template report format that initially appears when creating a @ new ticket summary report.</p> ; tktsetup_generic( "Default Report Template", "ticket-report-template", @@ -598,19 +599,19 @@ /* ** WEBPAGE: tktsetup_keytplt */ void tktsetup_keytplt_page(void){ static const char zDesc[] = - @ <p>Enter the default ticket report key template. This is the - @ the template report format that initial appears when creating a + @ <p>Enter the default ticket report color-key template. This is the + @ the color-key that initially appears when creating a @ new ticket summary report.</p> ; tktsetup_generic( - "Default Report Template", - "ticket-report-template", - zDefaultReport, + "Default Report Color-Key Template", + "ticket-key-template", + zDefaultKey, zDesc, 0, 0, - 20 + 10 ); }