| | @@ -126,11 +126,11 @@ |
| 126 | 126 | @ info TEXT, -- contact information |
| 127 | 127 | @ mtime DATE, -- last change. seconds since 1970 |
| 128 | 128 | @ photo BLOB -- JPEG image of this user |
| 129 | 129 | @ ); |
| 130 | 130 | @ |
| 131 | | -@ -- The VAR table holds miscellanous information about the repository. |
| 131 | +@ -- The config table holds miscellanous information about the repository. |
| 132 | 132 | @ -- in the form of name-value pairs. |
| 133 | 133 | @ -- |
| 134 | 134 | @ CREATE TABLE config( |
| 135 | 135 | @ name TEXT PRIMARY KEY NOT NULL, -- Primary name of the entry |
| 136 | 136 | @ value CLOB, -- Content of the named parameter |
| | @@ -449,12 +449,12 @@ |
| 449 | 449 | #if EXPORT_INTERFACE |
| 450 | 450 | # define MAX_INT_TAG 16 /* The largest pre-assigned tag id */ |
| 451 | 451 | #endif |
| 452 | 452 | |
| 453 | 453 | /* |
| 454 | | -** The schema for the locate FOSSIL database file found at the root |
| 455 | | -** of very check-out. This database contains the complete state of |
| 454 | +** The schema for the local FOSSIL database file found at the root |
| 455 | +** of every check-out. This database contains the complete state of |
| 456 | 456 | ** the checkout. |
| 457 | 457 | */ |
| 458 | 458 | const char zLocalSchema[] = |
| 459 | 459 | @ -- The VVAR table holds miscellanous information about the local database |
| 460 | 460 | @ -- in the form of name-value pairs. This is similar to the VAR table |
| | @@ -481,12 +481,12 @@ |
| 481 | 481 | @ -- Vfile.chnged is 0 for unmodified files, 1 for files that have |
| 482 | 482 | @ -- been edited or which have been subjected to a 3-way merge. |
| 483 | 483 | @ -- Vfile.chnged is 2 if the file has been replaced from a different |
| 484 | 484 | @ -- version by the merge and 3 if the file has been added by a merge. |
| 485 | 485 | @ -- Vfile.chnged is 4|5 is the same as 2|3, but the operation has been |
| 486 | | -@ -- done by an --integrate merge. The difference between vfile.chnged==2|4 |
| 487 | | -@ -- and a regular add is that with vfile.chnged==2|4 we know that the |
| 486 | +@ -- done by an --integrate merge. The difference between vfile.chnged==3|5 |
| 487 | +@ -- and a regular add is that with vfile.chnged==3|5 we know that the |
| 488 | 488 | @ -- current version of the file is already in the repository. |
| 489 | 489 | @ -- |
| 490 | 490 | @ CREATE TABLE vfile( |
| 491 | 491 | @ id INTEGER PRIMARY KEY, -- ID of the checked out file |
| 492 | 492 | @ vid INTEGER REFERENCES blob, -- The baseline this file is part of. |
| 493 | 493 | |