Differences From Artifact [fd2ead078b]:
- File src/timeline.c — part of check-in [4c3e1728e1] at 2025-07-23 15:58:49 on branch trunk — Minor optimization: replace calls to mprintf("%s", X) with fossil_strdup(X). (user: danield size: 143710) [more...]
To Artifact [8fe91cf81e]:
- File src/timeline.c — part of check-in [54afc94ce0] at 2025-08-16 00:36:03 on branch robot-restrict-simplified — Add the "timelineX" tag to robot-restrict processing. Move /honeypot over to the captcha.c file and have it use the resources found there. (user: drh size: 143765) [more...]
| ︙ | |||
1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 | 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 | + |
}
if( (!g.perm.Read && !g.perm.RdTkt && !g.perm.RdWiki && !g.perm.RdForum)
|| (bisectLocal && !g.perm.Setup)
){
login_needed(g.anon.Read && g.anon.RdTkt && g.anon.RdWiki);
return;
}
if( zBefore && robot_restrict("timelineX") ) return;
if( !bisectLocal ){
etag_check(ETAG_QUERY|ETAG_COOKIE|ETAG_DATA|ETAG_CONFIG, 0);
}
cookie_read_parameter("y","y");
zType = P("y");
if( zType==0 ){
zType = g.perm.Read ? "ci" : "all";
|
| ︙ |