Diff
Not logged in

Differences From:

File src/tktsetup.c part of check-in [27d2e6e458] - More ticket processing refinements. by drh on 2008-05-28 19:24:58. [view]

To:

File src/tktsetup.c part of check-in [b7588eb2f7] - Fix the "Key Template" setup box under ticket configuration. by drh on 2008-07-19 14:15:16. [view]

@@ -129,14 +129,15 @@
       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>
@@ -559,9 +560,9 @@
 */
 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",
@@ -599,18 +600,18 @@
 ** 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
   );
 }