Fossil

Check-in [d5cd3251fa]
Login

Check-in [d5cd3251fa]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Change a couple of instances of "file" to the more correct "artifact". Make it clear that the build time is expressed in UTC.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: d5cd3251fa4b864aedfa034dee7e0523f87a1d5b
User & Date: drh 2008-10-31 13:36:33.000
Context
2008-10-31
14:01
Make the "ls" command report MISSING instead of EDITED for files that do not exist in the tree. Ticket [ce458c35ca]. ... (check-in: 89d100b845 user: drh tags: trunk)
13:36
Change a couple of instances of "file" to the more correct "artifact". Make it clear that the build time is expressed in UTC. ... (check-in: d5cd3251fa user: drh tags: trunk)
13:33
Take care that the root directory name does not have extra "/" characters. Ticket [9c378ed139]. ... (check-in: 1d280a85aa user: drh tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/construct.c.
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
}

/*
** COMMAND: deconstruct 
** Usage %fossil deconstruct ?-R|--repository REPOSITORY? DESTINATION
**
** Populates the indicated DESTINATION directory with copies of all
** files contained within the repository.  Files are named AA/bbbbb
** where AA is the first 2 characters of the uuid and bbbbb is the
** remaining 38 characters.
*/

void deconstruct_cmd(void){
  const char* zDestination;
  Blob zOut;
  Stmt q;







|
|







74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
}

/*
** COMMAND: deconstruct 
** Usage %fossil deconstruct ?-R|--repository REPOSITORY? DESTINATION
**
** Populates the indicated DESTINATION directory with copies of all
** artifcats contained within the repository.  Artifacts are named AA/bbbbb
** where AA is the first 2 characters of the artifact ID and bbbbb is the
** remaining 38 characters.
*/

void deconstruct_cmd(void){
  const char* zDestination;
  Blob zOut;
  Stmt q;
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
  db_finalize(&q);
}

/*
** COMMAND: reconstruct 
** Usage %fossil reconstruct REPOSITORY ORIGIN
**
** Creates the REPOSITORY and populates it with the files in the
** indicated ORIGIN directory.
*/

void reconstruct_cmd(void){
  const char* zOrigin;
  const char* zRepository;
  int fileCnt;







|







113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
  db_finalize(&q);
}

/*
** COMMAND: reconstruct 
** Usage %fossil reconstruct REPOSITORY ORIGIN
**
** Creates the REPOSITORY and populates it with the artifacts in the
** indicated ORIGIN directory.
*/

void reconstruct_cmd(void){
  const char* zOrigin;
  const char* zRepository;
  int fileCnt;
Changes to src/main.c.
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
** COMMAND: version
**
** Usage:  %fossil version
**
** Print the source code version number for the fossil executable.
*/
void version_cmd(void){
  printf("This is fossil version " MANIFEST_VERSION " " MANIFEST_DATE "\n");
}


/*
** COMMAND: help
**
** Usage: %fossil help COMMAND







|







433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
** COMMAND: version
**
** Usage:  %fossil version
**
** Print the source code version number for the fossil executable.
*/
void version_cmd(void){
  printf("This is fossil version " MANIFEST_VERSION " " MANIFEST_DATE " UTC\n");
}


/*
** COMMAND: help
**
** Usage: %fossil help COMMAND