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. |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
d5cd3251fa4b864aedfa034dee7e0523 |
| 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
Changes to src/construct.c.
| ︙ | ︙ | |||
74 75 76 77 78 79 80 | } /* ** COMMAND: deconstruct ** Usage %fossil deconstruct ?-R|--repository REPOSITORY? DESTINATION ** ** Populates the indicated DESTINATION directory with copies of all | | | | 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 | db_finalize(&q); } /* ** COMMAND: reconstruct ** Usage %fossil reconstruct REPOSITORY ORIGIN ** | | | 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 |
** COMMAND: version
**
** Usage: %fossil version
**
** Print the source code version number for the fossil executable.
*/
void version_cmd(void){
| | | 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
|
| ︙ | ︙ |