Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Updated the ignore-glob and keep-glob docs so that the example glob conforms to the documention. Reported in [forum:16c422dac445449a | forum post 16c422dac445449a]. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
e33181c12f90fefdbe2138c2da56f546 |
| User & Date: | stephan 2022-07-13 15:06:10.764 |
Context
|
2022-07-17
| ||
| 17:30 | On the /secaudit0 page, add a link to the canonical URL setting in the /setup_config page, per request in [forum:154494bfaf45949ca93|forum post 154494bfaf45949ca93]. check-in: 861ec9c7b7 user: stephan tags: trunk | |
|
2022-07-13
| ||
| 15:06 | Updated the ignore-glob and keep-glob docs so that the example glob conforms to the documention. Reported in [forum:16c422dac445449a | forum post 16c422dac445449a]. check-in: e33181c12f user: stephan tags: trunk | |
| 07:38 | show original path of renamed files in changes/status output For context, print renamed files in the form "from -> to" except in the `fossil {changes,status} --renamed` case as suggested by wyoung. Requested by ams in [forum:9ca95426f]. ok stephan in /chat check-in: 1b8cfdb01a user: mark tags: trunk | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
4250 4251 4252 4253 4254 4255 4256 | /* ** SETTING: https-login boolean default=off ** If true, then the Fossil web server will redirect unencrypted ** login screen requests to HTTPS. */ /* ** SETTING: ignore-glob width=40 versionable block-text | | | | | | | > | 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 | /* ** SETTING: https-login boolean default=off ** If true, then the Fossil web server will redirect unencrypted ** login screen requests to HTTPS. */ /* ** SETTING: ignore-glob width=40 versionable block-text ** The value is a list of GLOB patterns, separated by spaces, ** commas, or newlines, specifying files that the "add", ** "addremove", "clean", and "extras" commands will ignore. ** ** Example: *.log, customCode.c, notes.txt */ /* ** SETTING: keep-glob width=40 versionable block-text ** The value is list of GLOB patterns, separated by spaces, ** commas, or newlines, specifying files that the "clean" ** command will keep. */ /* ** SETTING: localauth boolean default=off ** If enabled, require that HTTP connections from the loopback ** address (127.0.0.1) be authenticated by password. If false, ** some HTTP requests might be granted full "Setup" user ** privileges without having to present login credentials. |
| ︙ | ︙ |