Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Make the 'tcl-setup', 'th1-setup', and 'th1-uri-regexp' settings versionable. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | th1Hooks |
| Files: | files | file ages | folders |
| SHA1: |
99528933606cb623acddee6dab6af3f4 |
| User & Date: | mistachkin 2014-06-08 00:38:27.739 |
Context
|
2014-06-08
| ||
| 00:49 | Update comments on the settings that were made versionable in the previous check-in. check-in: 3d28912ca3 user: mistachkin tags: th1Hooks | |
| 00:38 | Make the 'tcl-setup', 'th1-setup', and 'th1-uri-regexp' settings versionable. check-in: 9952893360 user: mistachkin tags: th1Hooks | |
| 00:16 | Fix several merge conflict issues from the previous check-in. check-in: 1f915a6859 user: mistachkin tags: th1Hooks | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
2180 2181 2182 2183 2184 2185 2186 |
{ "repo-cksum", 0, 0, 0, 0, "on" },
{ "self-register", 0, 0, 0, 0, "off" },
{ "ssh-command", 0, 40, 0, 0, "" },
{ "ssl-ca-location", 0, 40, 0, 0, "" },
{ "ssl-identity", 0, 40, 0, 0, "" },
#ifdef FOSSIL_ENABLE_TCL
{ "tcl", 0, 0, 0, 0, "off" },
| | | | | 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 |
{ "repo-cksum", 0, 0, 0, 0, "on" },
{ "self-register", 0, 0, 0, 0, "off" },
{ "ssh-command", 0, 40, 0, 0, "" },
{ "ssl-ca-location", 0, 40, 0, 0, "" },
{ "ssl-identity", 0, 40, 0, 0, "" },
#ifdef FOSSIL_ENABLE_TCL
{ "tcl", 0, 0, 0, 0, "off" },
{ "tcl-setup", 0, 40, 1, 1, "" },
#endif
{ "th1-setup", 0, 40, 1, 1, "" },
{ "th1-uri-regexp", 0, 40, 1, 0, "" },
{ "web-browser", 0, 32, 0, 0, "" },
{ "white-foreground", 0, 0, 0, 0, "off" },
{ 0,0,0,0,0,0 }
};
/*
** COMMAND: settings
|
| ︙ | ︙ |