Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Corrected misuse of g.argv in /ci and /ci_tags pages, per [forum:74ec2261df|forum post 74ec2261df]. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
ba3323da9f16a2671466d2f699e07ca3 |
| User & Date: | stephan 2021-10-12 17:11:59.671 |
| Original Comment: | Corrected misuse of g.argv in /ci and /ci_tag pages, per [forum:74ec2261df|forum post 74ec2261df]. |
Context
|
2021-10-12
| ||
| 20:28 | /chat: fixed an error reporting bug which could cause server-triggered errors to not be displayed. When sending a message fails, the failed message is now presented as an error message, along with buttons to either retry or discard the message. ... (check-in: 9d693ef80a user: stephan tags: trunk) | |
| 17:11 | Corrected misuse of g.argv in /ci and /ci_tags pages, per [forum:74ec2261df|forum post 74ec2261df]. ... (check-in: ba3323da9f user: stephan tags: trunk) | |
|
2021-10-11
| ||
| 10:18 | Fix the "fossil tls-config remove-exception" command so that it works without triggering authorizer exceptions. [forum:/forumpost/64d919b2cf|Forum post 64d919b2cf]. ... (check-in: 156c890a2e user: drh tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
491 492 493 494 495 496 497 |
char const *zType;
login_check_credentials();
if( !g.perm.Read ){ login_needed(g.anon.Read); return; }
rid = name_to_rid_www("name");
if( rid==0 ){
style_header("Check-in Information Error");
| | | 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 |
char const *zType;
login_check_credentials();
if( !g.perm.Read ){ login_needed(g.anon.Read); return; }
rid = name_to_rid_www("name");
if( rid==0 ){
style_header("Check-in Information Error");
@ No such object: %h(PD("name",""))
style_finish_page();
return;
}
zHash = db_text(0, "SELECT uuid FROM blob WHERE rid=%d", rid);
style_header("Tags and Properties");
zType = whatis_rid_type_label(rid);
if(!zType) zType = "Artifact";
|
| ︙ | ︙ | |||
625 626 627 628 629 630 631 |
login_check_credentials();
if( !g.perm.Read ){ login_needed(g.anon.Read); return; }
style_set_current_feature("vinfo");
zName = P("name");
rid = name_to_rid_www("name");
if( rid==0 ){
style_header("Check-in Information Error");
| | | 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 |
login_check_credentials();
if( !g.perm.Read ){ login_needed(g.anon.Read); return; }
style_set_current_feature("vinfo");
zName = P("name");
rid = name_to_rid_www("name");
if( rid==0 ){
style_header("Check-in Information Error");
@ No such object: %h(zName)
style_finish_page();
return;
}
zRe = P("regex");
if( zRe ) re_compile(&pRe, zRe, 0);
zUuid = db_text(0, "SELECT uuid FROM blob WHERE rid=%d", rid);
zParent = db_text(0,
|
| ︙ | ︙ |