Diff
Not logged in

Differences From:

File src/tktconfig.c part of check-in [f394d84560] - Update SQLite to the latest build from CVS. Add in the FTS3 extension, though it is not yet being used. Additional work toward tickets. by drh on 2007-11-25 16:13:52. [view]

To:

File src/tktconfig.c part of check-in [5f3ddcc1b8] - Add ticket configuration editing capability. by drh on 2007-11-25 21:11:33. Also file src/tktconfig.c part of check-in [d0305b305a] - Merged mainline into my branch to get the newest application. by aku on 2007-12-05 08:07:46. [view]

@@ -86,24 +86,17 @@
 ** Some of the variables have special meanings.  The content of some
 ** of the variables are additional subscript scripts.
 */
 
-/* @-comment: # */
+/* @-comment: ** */
 const char zDefaultTicketConfig[] =
-@ ##########################################################################
-@ #
-@ # Every ticket configuration file should have a title.  When you
-@ # come up with a new ticket configuration, please change the title
-@ # to something descriptive.
-@ #
-@ {Default Ticket Configuration} /ticket_config_title set
-@
 @ ############################################################################
-@ # Every ticket configuration *must* define a set of columns for the
-@ # "ticket" table of the database.  These column names will also be
-@ # used as CGI parameter names, so to avoid problems it is best that
-@ # the names be all lower-case alphabetic characters.  The names must
-@ # be unique and must not begin with "tkt_".
+@ # Every ticket configuration *must* define an SQL statement that creates
+@ # the TICKET table.  This table must have three columns named
+@ # tkt_id, tkt_uuid, and tkt_mtime.  tkt_id must be the integer primary
+@ # key and tkt_uuid and tkt_mtime must be unique.  A configuration should
+@ # define addition columns as necessary.  All columns should be in all
+@ # lower-case letters and should not begin with "tkt".
 @ #
 @ {
 @    CREATE TABLE ticket(
 @      -- Do not change any column that begins with tkt_