Diff
Not logged in

Differences From:

File src/setup.c part of check-in [134e2aeccc] - Combine the "config" and "setting" commands into a single "settings" command. by drh on 2007-09-28 20:08:32. [view]

To:

File src/setup.c part of check-in [0edee97370] - Begin adding setup screens for ticket configuration. by drh on 2007-10-03 02:33:31. [view]

@@ -34,9 +34,9 @@
 ** If zLink is not NULL or an empty string, then it is the page that
 ** the menu entry will hyperlink to.  If zLink is NULL or "", then
 ** the menu entry has no hyperlink - it is disabled.
 */
-static void menu_entry(
+void setup_menu_entry(
   const char *zTitle,
   const char *zLink,
   const char *zDesc
 ){
@@ -60,14 +60,16 @@
   }
 
   style_header("Setup");
   @ <dl id="setup">
-  menu_entry("Users", "setup_ulist",
+  setup_menu_entry("Users", "setup_ulist",
     "Grant privileges to individual users.");
-  menu_entry("Access", "setup_access",
+  setup_menu_entry("Access", "setup_access",
     "Control access settings.");
-  menu_entry("Configuration", "setup_config",
+  setup_menu_entry("Configuration", "setup_config",
     "Configure the WWW components of the repository");
+  setup_menu_entry("Tickets", "tktsetup",
+    "Configure the trouble-ticketing system for this repository");
   @ </dl>
 
   style_footer();
 }