Overview
SHA1 Hash: | d5cd3251fa4b864aedfa034dee7e0523f87a1d5b |
---|---|
Date: | 2008-10-31 13:36:33 |
User: | drh |
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: | ancestors | descendants | both | trunk |
Other Links: | files | ZIP archive | manifest |
Tags And Properties
- branch=trunk inherited from [a28c83647d]
- sym-trunk inherited from [a28c83647d]
Changes
[hide diffs]Modified src/construct.c from [a5be93c8e9] to [bf4879b005].
@@ -76,12 +76,12 @@ /* ** 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 +** 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; @@ -115,11 +115,11 @@ /* ** COMMAND: reconstruct ** Usage %fossil reconstruct REPOSITORY ORIGIN ** -** Creates the REPOSITORY and populates it with the files in the +** Creates the REPOSITORY and populates it with the artifacts in the ** indicated ORIGIN directory. */ void reconstruct_cmd(void){ const char* zOrigin;
Modified src/main.c from [1d28ae7236] to [89f5fcc95e].
@@ -435,11 +435,11 @@ ** 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"); + printf("This is fossil version " MANIFEST_VERSION " " MANIFEST_DATE " UTC\n"); } /* ** COMMAND: help