Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch versionable-settings Excluding Merge-Ins
This is equivalent to a diff from 5fdf14ba1c to ec5c690e0e
|
2011-12-17
| ||
| 15:20 | Make allow-symlinks a versionable setting. This is a merge from the versionable-settings branch. check-in: c4ade43651 user: drh tags: trunk | |
|
2011-12-01
| ||
| 16:16 | Make allow-symlinks a versionable setting. Closed-Leaf check-in: ec5c690e0e user: ben tags: versionable-settings | |
|
2011-11-25
| ||
| 09:36 | Disallow the word "rawl" (as in crawler) in the user agent. check-in: fe075f5d89 user: drh tags: trunk | |
|
2011-11-23
| ||
| 00:36 | Added todo notes for adding loginExpiryTime in /json/login. (And checked in the latest cson_amalgamation - no functional changes there.) check-in: 5fdf14ba1c user: stephan tags: trunk | |
| 00:14 | Added loginCookieName to /json/login response payload, mainly as a crutch for certain scripting cases (e.g. RSS feeds). Still TODO: add future expiry time of cookie/token to response. check-in: daa564c4df user: stephan tags: trunk | |
Changes to src/db.c.
| ︙ | |||
1807 1808 1809 1810 1811 1812 1813 | 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 | - + |
int width; /* Width of display. 0 for boolean values */
int versionable; /* Is this setting versionable? */
char const *def; /* Default value */
};
#endif /* INTERFACE */
struct stControlSettings const ctrlSettings[] = {
{ "access-log", 0, 0, 0, "off" },
|
| ︙ | |||
1865 1866 1867 1868 1869 1870 1871 | 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 | - + | ** file named .fossil-settings/PROPERTY in the checked out files, if that ** file exists. ** ** The "unset" command clears a property setting. ** ** ** allow-symlinks If enabled, don't follow symlinks, and instead treat |
| ︙ |
Changes to www/settings.wiki.
| ︙ | |||
16 17 18 19 20 21 22 | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | - + | You can also set a setting globally on your local machine. The value will be used for all repositories cloned to your machine, unless overridden explicitly in a particular repository. Global settings can be set by using the <tt>-global</tt> option on the <tt>fossil settings</tt> command. <h3>"Versionable" settings</h3> Most of the settings control the behaviour of fossil on your local machine, largely acting to reflect your preference on how you want to use Fossil, how you communicate with the server, or options for hosting a repository on the web. |
| ︙ |