Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Documentation update: Make the robot-restrict setting "none" or "off" to disable all restrictions. |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
26a9b033363106853b846c005eeab6fd |
| User & Date: | drh 2025-08-19 10:28:38.023 |
Context
|
2025-08-19
| ||
| 10:37 | Make "off" the preferred way to diable robot-restrict check-in: db69c47abd user: drh tags: trunk | |
| 10:28 | Documentation update: Make the robot-restrict setting "none" or "off" to disable all restrictions. check-in: 26a9b03336 user: drh tags: trunk | |
|
2025-08-18
| ||
| 15:49 | New setting "anon-cookie-lifespan" sets the life span of an anonymous login cookie. The default is 8 hours. Set to zero to disable anonymous login. check-in: 7d2b47a7c3 user: drh tags: trunk | |
Changes
Changes to src/robot.c.
| ︙ | ︙ | |||
151 152 153 154 155 156 157 | ** ** timelineX,diff,annotate,zip,fileage,file ** ** The "diff" tag covers all diffing pages such as /vdiff, /fdiff, and ** /vpatch. The "annotate" tag also covers /blame and /praise. "zip" ** also covers /tarball and /sqlar. If a tag has an "X" character appended, ** then it only applies if query parameters are such that the page is | | > < > | 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 |
**
** timelineX,diff,annotate,zip,fileage,file
**
** The "diff" tag covers all diffing pages such as /vdiff, /fdiff, and
** /vpatch. The "annotate" tag also covers /blame and /praise. "zip"
** also covers /tarball and /sqlar. If a tag has an "X" character appended,
** then it only applies if query parameters are such that the page is
** particularly difficult to compute. In all other case, the tag should
** exactly match the page name.
**
** Make this setting "none" or "off" to disable all robot restrictions.
*/
/*
** Return the default restriction GLOB
*/
const char *robot_restrict_default(void){
return "timelineX,diff,annotate,zip,fileage,file";
|
| ︙ | ︙ |
Changes to src/setup.c.
| ︙ | ︙ | |||
508 509 510 511 512 513 514 515 516 517 518 519 520 521 |
@ <p>
@ The "diff" tag covers all diffing pages such as /vdiff, /fdiff, and
@ /vpatch. The "annotate" tag covers /annotate and also /blame and
@ /praise. The "zip" covers itself and also /tarball and /sqlar. If a
@ tag has an "X" character appended, then it only applies if query
@ parameters are such that the page is particularly difficult to compute.
@ In all other case, the tag should exactly match the page name.
@ (Property: robot-restrict)
@ <br>
textarea_attribute("", 2, 80,
"robot-restrict", "rbrestrict", robot_restrict_default(), 0);
@ <hr>
addAutoHyperlinkSettings();
| > > | 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 |
@ <p>
@ The "diff" tag covers all diffing pages such as /vdiff, /fdiff, and
@ /vpatch. The "annotate" tag covers /annotate and also /blame and
@ /praise. The "zip" covers itself and also /tarball and /sqlar. If a
@ tag has an "X" character appended, then it only applies if query
@ parameters are such that the page is particularly difficult to compute.
@ In all other case, the tag should exactly match the page name.
@
@ To disable robot restrictions, make this setting "none" or "off".
@ (Property: robot-restrict)
@ <br>
textarea_attribute("", 2, 80,
"robot-restrict", "rbrestrict", robot_restrict_default(), 0);
@ <hr>
addAutoHyperlinkSettings();
|
| ︙ | ︙ |