Fossil SCM
Provide an interface to the max-upload setting.
Commit
c0c3b0810d2cf504091d0a913d8f00e8d2c6c6b0
Parent
838283273ac6323…
1 file changed
+4
M
src/db.c
+4
| --- src/db.c | ||
| +++ src/db.c | ||
| @@ -1621,10 +1621,11 @@ | ||
| 1621 | 1621 | { "gdiff-command", 0, 16, "gdiff" }, |
| 1622 | 1622 | { "ignore-glob", 0, 40, "" }, |
| 1623 | 1623 | { "http-port", 0, 16, "8080" }, |
| 1624 | 1624 | { "localauth", 0, 0, "off" }, |
| 1625 | 1625 | { "manifest", 0, 0, "off" }, |
| 1626 | + { "max-upload", 0, 25, "250000" }, | |
| 1626 | 1627 | { "mtime-changes", 0, 0, "on" }, |
| 1627 | 1628 | { "pgp-command", 0, 32, "gpg --clearsign -o " }, |
| 1628 | 1629 | { "proxy", 0, 32, "off" }, |
| 1629 | 1630 | { "repo-cksum", 0, 0, "on" }, |
| 1630 | 1631 | { "self-register", 0, 0, "off" }, |
| @@ -1696,10 +1697,13 @@ | ||
| 1696 | 1697 | ** unrestricted access to the repository. |
| 1697 | 1698 | ** |
| 1698 | 1699 | ** manifest If enabled, automatically create files "manifest" and |
| 1699 | 1700 | ** "manifest.uuid" in every checkout. The SQLite and |
| 1700 | 1701 | ** Fossil repositories both require this. Default: off. |
| 1702 | +** | |
| 1703 | +** max-upload A limit on the size of uplink HTTP requests. The | |
| 1704 | +** default is 250000 bytes. | |
| 1701 | 1705 | ** |
| 1702 | 1706 | ** mtime-changes Use file modification times (mtimes) to detect when |
| 1703 | 1707 | ** files have been modified. (Default "on".) |
| 1704 | 1708 | ** |
| 1705 | 1709 | ** pgp-command Command used to clear-sign manifests at check-in. |
| 1706 | 1710 |
| --- src/db.c | |
| +++ src/db.c | |
| @@ -1621,10 +1621,11 @@ | |
| 1621 | { "gdiff-command", 0, 16, "gdiff" }, |
| 1622 | { "ignore-glob", 0, 40, "" }, |
| 1623 | { "http-port", 0, 16, "8080" }, |
| 1624 | { "localauth", 0, 0, "off" }, |
| 1625 | { "manifest", 0, 0, "off" }, |
| 1626 | { "mtime-changes", 0, 0, "on" }, |
| 1627 | { "pgp-command", 0, 32, "gpg --clearsign -o " }, |
| 1628 | { "proxy", 0, 32, "off" }, |
| 1629 | { "repo-cksum", 0, 0, "on" }, |
| 1630 | { "self-register", 0, 0, "off" }, |
| @@ -1696,10 +1697,13 @@ | |
| 1696 | ** unrestricted access to the repository. |
| 1697 | ** |
| 1698 | ** manifest If enabled, automatically create files "manifest" and |
| 1699 | ** "manifest.uuid" in every checkout. The SQLite and |
| 1700 | ** Fossil repositories both require this. Default: off. |
| 1701 | ** |
| 1702 | ** mtime-changes Use file modification times (mtimes) to detect when |
| 1703 | ** files have been modified. (Default "on".) |
| 1704 | ** |
| 1705 | ** pgp-command Command used to clear-sign manifests at check-in. |
| 1706 |
| --- src/db.c | |
| +++ src/db.c | |
| @@ -1621,10 +1621,11 @@ | |
| 1621 | { "gdiff-command", 0, 16, "gdiff" }, |
| 1622 | { "ignore-glob", 0, 40, "" }, |
| 1623 | { "http-port", 0, 16, "8080" }, |
| 1624 | { "localauth", 0, 0, "off" }, |
| 1625 | { "manifest", 0, 0, "off" }, |
| 1626 | { "max-upload", 0, 25, "250000" }, |
| 1627 | { "mtime-changes", 0, 0, "on" }, |
| 1628 | { "pgp-command", 0, 32, "gpg --clearsign -o " }, |
| 1629 | { "proxy", 0, 32, "off" }, |
| 1630 | { "repo-cksum", 0, 0, "on" }, |
| 1631 | { "self-register", 0, 0, "off" }, |
| @@ -1696,10 +1697,13 @@ | |
| 1697 | ** unrestricted access to the repository. |
| 1698 | ** |
| 1699 | ** manifest If enabled, automatically create files "manifest" and |
| 1700 | ** "manifest.uuid" in every checkout. The SQLite and |
| 1701 | ** Fossil repositories both require this. Default: off. |
| 1702 | ** |
| 1703 | ** max-upload A limit on the size of uplink HTTP requests. The |
| 1704 | ** default is 250000 bytes. |
| 1705 | ** |
| 1706 | ** mtime-changes Use file modification times (mtimes) to detect when |
| 1707 | ** files have been modified. (Default "on".) |
| 1708 | ** |
| 1709 | ** pgp-command Command used to clear-sign manifests at check-in. |
| 1710 |