Fossil SCM
Change manifest setting to a non-boolean.
Commit
87a154753774705e9446ae1a43c38a722fc02933
Parent
9a2c75fc1cb557f…
1 file changed
+7
-4
M
src/db.c
+7
-4
| --- src/db.c | ||
| +++ src/db.c | ||
| @@ -2541,11 +2541,11 @@ | ||
| 2541 | 2541 | { "https-login", 0, 0, 0, 0, "off" }, |
| 2542 | 2542 | { "ignore-glob", 0, 40, 1, 0, "" }, |
| 2543 | 2543 | { "keep-glob", 0, 40, 1, 0, "" }, |
| 2544 | 2544 | { "localauth", 0, 0, 0, 0, "off" }, |
| 2545 | 2545 | { "main-branch", 0, 40, 0, 0, "trunk" }, |
| 2546 | - { "manifest", 0, 0, 1, 0, "off" }, | |
| 2546 | + { "manifest", 0, 5, 0, 0, "off" }, | |
| 2547 | 2547 | { "max-loadavg", 0, 25, 0, 0, "0.0" }, |
| 2548 | 2548 | { "max-upload", 0, 25, 0, 0, "250000" }, |
| 2549 | 2549 | { "mtime-changes", 0, 0, 0, 0, "on" }, |
| 2550 | 2550 | #if FOSSIL_ENABLE_LEGACY_MV_RM |
| 2551 | 2551 | { "mv-rm-files", 0, 0, 0, 0, "off" }, |
| @@ -2745,13 +2745,16 @@ | ||
| 2745 | 2745 | ** false, all HTTP requests from localhost have |
| 2746 | 2746 | ** unrestricted access to the repository. |
| 2747 | 2747 | ** |
| 2748 | 2748 | ** main-branch The primary branch for the project. Default: trunk |
| 2749 | 2749 | ** |
| 2750 | -** manifest If enabled, automatically create files "manifest" and | |
| 2751 | -** (versionable) "manifest.uuid" in every checkout. The SQLite and | |
| 2752 | -** Fossil repositories both require this. Default: off. | |
| 2750 | +** manifest If set to a true boolean value, automatically create | |
| 2751 | +** (versionable) files "manifest" and "manifest.uuid" in every checkout. | |
| 2752 | +** Optionally use combinations of characters 'r' | |
| 2753 | +** for "manifest", 'u' for "manifest.uuid" and 't' for | |
| 2754 | +** "manifest.tags". The SQLite and Fossil repositories | |
| 2755 | +** both require manifests. Default: off. | |
| 2753 | 2756 | ** |
| 2754 | 2757 | ** max-loadavg Some CPU-intensive web pages (ex: /zip, /tarball, /blame) |
| 2755 | 2758 | ** are disallowed if the system load average goes above this |
| 2756 | 2759 | ** value. "0.0" means no limit. This only works on unix. |
| 2757 | 2760 | ** Only local settings of this value make a difference since |
| 2758 | 2761 |
| --- src/db.c | |
| +++ src/db.c | |
| @@ -2541,11 +2541,11 @@ | |
| 2541 | { "https-login", 0, 0, 0, 0, "off" }, |
| 2542 | { "ignore-glob", 0, 40, 1, 0, "" }, |
| 2543 | { "keep-glob", 0, 40, 1, 0, "" }, |
| 2544 | { "localauth", 0, 0, 0, 0, "off" }, |
| 2545 | { "main-branch", 0, 40, 0, 0, "trunk" }, |
| 2546 | { "manifest", 0, 0, 1, 0, "off" }, |
| 2547 | { "max-loadavg", 0, 25, 0, 0, "0.0" }, |
| 2548 | { "max-upload", 0, 25, 0, 0, "250000" }, |
| 2549 | { "mtime-changes", 0, 0, 0, 0, "on" }, |
| 2550 | #if FOSSIL_ENABLE_LEGACY_MV_RM |
| 2551 | { "mv-rm-files", 0, 0, 0, 0, "off" }, |
| @@ -2745,13 +2745,16 @@ | |
| 2745 | ** false, all HTTP requests from localhost have |
| 2746 | ** unrestricted access to the repository. |
| 2747 | ** |
| 2748 | ** main-branch The primary branch for the project. Default: trunk |
| 2749 | ** |
| 2750 | ** manifest If enabled, automatically create files "manifest" and |
| 2751 | ** (versionable) "manifest.uuid" in every checkout. The SQLite and |
| 2752 | ** Fossil repositories both require this. Default: off. |
| 2753 | ** |
| 2754 | ** max-loadavg Some CPU-intensive web pages (ex: /zip, /tarball, /blame) |
| 2755 | ** are disallowed if the system load average goes above this |
| 2756 | ** value. "0.0" means no limit. This only works on unix. |
| 2757 | ** Only local settings of this value make a difference since |
| 2758 |
| --- src/db.c | |
| +++ src/db.c | |
| @@ -2541,11 +2541,11 @@ | |
| 2541 | { "https-login", 0, 0, 0, 0, "off" }, |
| 2542 | { "ignore-glob", 0, 40, 1, 0, "" }, |
| 2543 | { "keep-glob", 0, 40, 1, 0, "" }, |
| 2544 | { "localauth", 0, 0, 0, 0, "off" }, |
| 2545 | { "main-branch", 0, 40, 0, 0, "trunk" }, |
| 2546 | { "manifest", 0, 5, 0, 0, "off" }, |
| 2547 | { "max-loadavg", 0, 25, 0, 0, "0.0" }, |
| 2548 | { "max-upload", 0, 25, 0, 0, "250000" }, |
| 2549 | { "mtime-changes", 0, 0, 0, 0, "on" }, |
| 2550 | #if FOSSIL_ENABLE_LEGACY_MV_RM |
| 2551 | { "mv-rm-files", 0, 0, 0, 0, "off" }, |
| @@ -2745,13 +2745,16 @@ | |
| 2745 | ** false, all HTTP requests from localhost have |
| 2746 | ** unrestricted access to the repository. |
| 2747 | ** |
| 2748 | ** main-branch The primary branch for the project. Default: trunk |
| 2749 | ** |
| 2750 | ** manifest If set to a true boolean value, automatically create |
| 2751 | ** (versionable) files "manifest" and "manifest.uuid" in every checkout. |
| 2752 | ** Optionally use combinations of characters 'r' |
| 2753 | ** for "manifest", 'u' for "manifest.uuid" and 't' for |
| 2754 | ** "manifest.tags". The SQLite and Fossil repositories |
| 2755 | ** both require manifests. Default: off. |
| 2756 | ** |
| 2757 | ** max-loadavg Some CPU-intensive web pages (ex: /zip, /tarball, /blame) |
| 2758 | ** are disallowed if the system load average goes above this |
| 2759 | ** value. "0.0" means no limit. This only works on unix. |
| 2760 | ** Only local settings of this value make a difference since |
| 2761 |