Fossil SCM
Enable interface to alter default-user setting.
Commit
cd5f3be51ed713d0b029336daf8f8305ec8ed983
Parent
2cf6304bc375a0c…
1 file changed
+3
M
src/db.c
+3
| --- src/db.c | ||
| +++ src/db.c | ||
| @@ -2128,10 +2128,11 @@ | ||
| 2128 | 2128 | { "case-sensitive", 0, 0, 0, 0, "on" }, |
| 2129 | 2129 | #endif |
| 2130 | 2130 | { "clean-glob", 0, 40, 1, 0, "" }, |
| 2131 | 2131 | { "crnl-glob", 0, 40, 1, 0, "" }, |
| 2132 | 2132 | { "default-perms", 0, 16, 0, 0, "u" }, |
| 2133 | + { "default-user", 0, 40, 0, 0, "" }, | |
| 2133 | 2134 | { "diff-binary", 0, 0, 0, 0, "on" }, |
| 2134 | 2135 | { "diff-command", 0, 40, 0, 0, "" }, |
| 2135 | 2136 | { "dont-push", 0, 0, 0, 0, "off" }, |
| 2136 | 2137 | { "editor", 0, 32, 0, 0, "" }, |
| 2137 | 2138 | { "empty-dirs", 0, 40, 1, 0, "" }, |
| @@ -2235,10 +2236,12 @@ | ||
| 2235 | 2236 | ** line endings. Set to "*" to disable CR+NL checking. |
| 2236 | 2237 | ** |
| 2237 | 2238 | ** default-perms Permissions given automatically to new users. For more |
| 2238 | 2239 | ** information on permissions see Users page in Server |
| 2239 | 2240 | ** Administration of the HTTP UI. Default: u. |
| 2241 | +** | |
| 2242 | +** default-user Default user created with each new repository. | |
| 2240 | 2243 | ** |
| 2241 | 2244 | ** diff-binary If TRUE (the default), permit files that may be binary |
| 2242 | 2245 | ** or that match the "binary-glob" setting to be used with |
| 2243 | 2246 | ** external diff programs. If FALSE, skip these files. |
| 2244 | 2247 | ** |
| 2245 | 2248 |
| --- src/db.c | |
| +++ src/db.c | |
| @@ -2128,10 +2128,11 @@ | |
| 2128 | { "case-sensitive", 0, 0, 0, 0, "on" }, |
| 2129 | #endif |
| 2130 | { "clean-glob", 0, 40, 1, 0, "" }, |
| 2131 | { "crnl-glob", 0, 40, 1, 0, "" }, |
| 2132 | { "default-perms", 0, 16, 0, 0, "u" }, |
| 2133 | { "diff-binary", 0, 0, 0, 0, "on" }, |
| 2134 | { "diff-command", 0, 40, 0, 0, "" }, |
| 2135 | { "dont-push", 0, 0, 0, 0, "off" }, |
| 2136 | { "editor", 0, 32, 0, 0, "" }, |
| 2137 | { "empty-dirs", 0, 40, 1, 0, "" }, |
| @@ -2235,10 +2236,12 @@ | |
| 2235 | ** line endings. Set to "*" to disable CR+NL checking. |
| 2236 | ** |
| 2237 | ** default-perms Permissions given automatically to new users. For more |
| 2238 | ** information on permissions see Users page in Server |
| 2239 | ** Administration of the HTTP UI. Default: u. |
| 2240 | ** |
| 2241 | ** diff-binary If TRUE (the default), permit files that may be binary |
| 2242 | ** or that match the "binary-glob" setting to be used with |
| 2243 | ** external diff programs. If FALSE, skip these files. |
| 2244 | ** |
| 2245 |
| --- src/db.c | |
| +++ src/db.c | |
| @@ -2128,10 +2128,11 @@ | |
| 2128 | { "case-sensitive", 0, 0, 0, 0, "on" }, |
| 2129 | #endif |
| 2130 | { "clean-glob", 0, 40, 1, 0, "" }, |
| 2131 | { "crnl-glob", 0, 40, 1, 0, "" }, |
| 2132 | { "default-perms", 0, 16, 0, 0, "u" }, |
| 2133 | { "default-user", 0, 40, 0, 0, "" }, |
| 2134 | { "diff-binary", 0, 0, 0, 0, "on" }, |
| 2135 | { "diff-command", 0, 40, 0, 0, "" }, |
| 2136 | { "dont-push", 0, 0, 0, 0, "off" }, |
| 2137 | { "editor", 0, 32, 0, 0, "" }, |
| 2138 | { "empty-dirs", 0, 40, 1, 0, "" }, |
| @@ -2235,10 +2236,12 @@ | |
| 2236 | ** line endings. Set to "*" to disable CR+NL checking. |
| 2237 | ** |
| 2238 | ** default-perms Permissions given automatically to new users. For more |
| 2239 | ** information on permissions see Users page in Server |
| 2240 | ** Administration of the HTTP UI. Default: u. |
| 2241 | ** |
| 2242 | ** default-user Default user created with each new repository. |
| 2243 | ** |
| 2244 | ** diff-binary If TRUE (the default), permit files that may be binary |
| 2245 | ** or that match the "binary-glob" setting to be used with |
| 2246 | ** external diff programs. If FALSE, skip these files. |
| 2247 | ** |
| 2248 |