Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Activate the load limiter for the /vdiff page. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
76f4e009f9ee4253d578d4e6e6efedf9 |
| User & Date: | drh 2019-05-29 13:27:46.605 |
Context
|
2019-06-03
| ||
| 13:30 | Merge all the recent tool-tip experiments into trunk. ... (check-in: 6908832cf4 user: drh tags: trunk) | |
|
2019-05-29
| ||
| 13:27 | Activate the load limiter for the /vdiff page. ... (check-in: 76f4e009f9 user: drh tags: trunk) | |
| 00:57 | In the "fossil login-group" command, make sure to leave one group before joining another. ... (check-in: 535714e35c user: drh tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 |
const char *zRe;
const char *zW;
const char *zGlob;
ReCompiled *pRe = 0;
login_check_credentials();
if( !g.perm.Read ){ login_needed(g.anon.Read); return; }
login_anonymous_available();
cookie_link_parameter("diff","diff","2");
diffType = atoi(PD("diff","2"));
cookie_render();
zRe = P("regex");
if( zRe ) re_compile(&pRe, zRe, 0);
zBranch = P("branch");
if( zBranch && zBranch[0] ){
| > | 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 |
const char *zRe;
const char *zW;
const char *zGlob;
ReCompiled *pRe = 0;
login_check_credentials();
if( !g.perm.Read ){ login_needed(g.anon.Read); return; }
login_anonymous_available();
load_control();
cookie_link_parameter("diff","diff","2");
diffType = atoi(PD("diff","2"));
cookie_render();
zRe = P("regex");
if( zRe ) re_compile(&pRe, zRe, 0);
zBranch = P("branch");
if( zBranch && zBranch[0] ){
|
| ︙ | ︙ |