Differences From:
File
src/schema.c
part of check-in
[b6e22e62cf]
- Attempting to rationalize the tagging and branching logic. The "branch"
command has been resurrected and appears to work now. The "tag branch"
command has been removed. Special tags "newbranch" and "closed" used to
manage branches. New changes are not well-tested - use with caution.
You must "rebuild" when upgrading through this version.
by
drh on
2009-01-20 16:51:19.
[view]
To:
File
src/schema.c
part of check-in
[b7f32a71ab]
- Add web-based branch color changer. Add the "branch list" command.
Simplifications to color propagation logic.
by
drh on
2009-01-20 22:21:24.
[view]
@@ -226,9 +226,8 @@
@ mtime DATETIME, -- Date and time when the event occurs
@ objid INTEGER PRIMARY KEY, -- Associated record ID
@ uid INTEGER REFERENCES user, -- User who caused the event
@ bgcolor TEXT, -- Color set by 'bgcolor' property
-@ brbgcolor TEXT, -- Color set by 'br-bgcolor' property
@ euser TEXT, -- User set by 'user' property
@ user TEXT, -- Name of the user
@ ecomment TEXT, -- Comment set by 'comment' property
@ comment TEXT -- Comment describing the event
@@ -329,18 +328,19 @@
** Predefined tagid values
*/
#if INTERFACE
# define TAG_BGCOLOR 1 /* Set the background color for display */
-# define TAG_COMMENT 2 /* The check-in comment */
-# define TAG_USER 3 /* User who made a checking */
-# define TAG_HIDDEN 4 /* Do not display or sync */
-# define TAG_PRIVATE 5 /* Display but do not sync */
-# define TAG_CLUSTER 6 /* A cluster */
-# define TAG_NEWBRANCH 7 /* First check-in of a new named branch */
-# define TAG_CLOSED 8 /* Do not display this check-in as a leaf */
+# define TAG_BRBGCOLOR 2 /* Background color for branches */
+# define TAG_COMMENT 3 /* The check-in comment */
+# define TAG_USER 4 /* User who made a checking */
+# define TAG_HIDDEN 5 /* Do not display or sync */
+# define TAG_PRIVATE 6 /* Display but do not sync */
+# define TAG_CLUSTER 7 /* A cluster */
+# define TAG_NEWBRANCH 8 /* First check-in of a new named branch */
+# define TAG_CLOSED 9 /* Do not display this check-in as a leaf */
#endif
#if EXPORT_INTERFACE
-# define MAX_INT_TAG 8 /* The largest pre-assigned tag id */
+# define MAX_INT_TAG 9 /* The largest pre-assigned tag id */
#endif
/*
** The schema for the locate FOSSIL database file found at the root