Differences From:
File
src/info.c
part of check-in
[c8a78004ce]
- Improvements in the display of ticket history.
by
drh on
2008-10-20 16:05:03.
[view]
To:
File
src/info.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]
@@ -73,20 +73,20 @@
/*
** COMMAND: info
**
-** Usage: %fossil info ?UUID|FILENAME?
+** Usage: %fossil info ?ARTIFACT-ID|FILENAME?
**
** With no arguments, provide information about the current tree.
-** If an argument is given, provide information about the record
+** If an argument is specified, provide information about the object
** in the respository of the current tree that the argument refers
** to. Or if the argument is the name of a repository, show
** information about that repository.
*/
void info_cmd(void){
i64 fsize;
if( g.argc!=2 && g.argc!=3 ){
- usage("?FILENAME|UUID?");
+ usage("?FILENAME|ARTIFACT-ID?");
}
if( g.argc==3 && (fsize = file_size(g.argv[2]))>0 && (fsize&0x1ff)==0 ){
db_open_config();
db_record_repository_filename(g.argv[2]);
@@ -304,9 +304,9 @@
/*
** WEBPAGE: vinfo
-** URL: /vinfo?name=RID|UUID
+** URL: /vinfo?name=RID|ARTIFACTID
**
** Return information about a baseline
*/
void vinfo_page(void){
@@ -796,11 +796,11 @@
}
/*
** WEBPAGE: artifact
-** URL: /artifact?name=UUID
+** URL: /artifact?name=ARTIFACTID
**
-** Show the complete content of a file identified by UUID
+** Show the complete content of a file identified by ARTIFACTID
** as preformatted text.
*/
void artifact_page(void){
int rid;
@@ -835,9 +835,9 @@
}
/*
** WEBPAGE: tinfo
-** URL: /tinfo?name=UUID
+** URL: /tinfo?name=ARTIFACTID
**
** Show the details of a ticket change control artifact.
*/
void tinfo_page(void){
@@ -889,14 +889,14 @@
/*
** WEBPAGE: info
-** URL: info/UUID
+** URL: info/ARTIFACTID
**
-** The argument is a UUID which might be a baseline or a file or
+** The argument is a artifact ID which might be a baseline or a file or
** a ticket changes or a wiki editor or something else.
**
-** Figure out what the UUID is and jump to it.
+** Figure out what the artifact ID is and jump to it.
*/
void info_page(void){
const char *zName;
Blob uuid;