Diff
Not logged in

Differences From:

File src/timeline.c part of check-in [c1e85e4da5] - Fix the timeline command so that it work with --repository and -R. by drh on 2008-07-13 12:08:47. [view]

To:

File src/timeline.c part of check-in [e8c4f69c50] - Change all mentions of "UUID" in the documentation and help screens into either "artifact ID" or "baseline ID" or "ticket ID" as appropriate. "UUID" has a widely recognized meaning that is different from its meaning in fossil. "UUID" is still used in code comments and in variable names. by drh on 2008-10-24 13:27:53. [view]

@@ -555,9 +555,9 @@
 
 /*
 ** COMMAND: timeline
 **
-** Usage: %fossil timeline ?WHEN? ?UUID|DATETIME? ?-n|--count N?
+** Usage: %fossil timeline ?WHEN? ?BASELINE|DATETIME? ?-n|--count N?
 **
 ** Print a summary of activity going backwards in date and time
 ** specified or from the current date and time if no arguments
 ** are given.  Show as many as N (default 20) check-ins.  The
@@ -568,9 +568,9 @@
 **     after
 **     descendants | children
 **     ancestors | parents
 **
-** The UUID can be any unique prefix of 4 characters or more.
+** The BASELINE can be any unique prefix of 4 characters or more.
 ** The DATETIME should be in the ISO8601 format.  For
 ** examples: "2007-08-18 07:21:21".  You can also say "current"
 ** for the current version or "now" for the current time.
 */
@@ -605,9 +605,9 @@
       mode = 4;
     }else if( strncmp(g.argv[2],"parents",k)==0 ){
       mode = 4;
     }else{
-      usage("?WHEN? ?UUID|DATETIME?");
+      usage("?WHEN? ?BASELINE|DATETIME?");
     }
     zOrigin = g.argv[3];
   }else if( g.argc==3 ){
     zOrigin = g.argv[2];