Differences From Artifact [0bfb9e6240]:
- File skins/blitz_no_logo/header.txt — part of check-in [9cee8cf5c4] at 2019-08-27 00:07:48 on branch skin-cap-matching — Changed all of the [anycap jor] TH1 calls in the stock skins wrapping the generation of that skin's /timeline and /timeline.rss links to [anycap ijr2] to match the user caps the timeline HTTP hit handler actually checks for in the C code. This is a branch in part because it needs review, but also it's the start of a broader effort to check the other cap checks in the skins to make sure they a) match what the C code checks for; and b) match each other. (user: wyoung size: 1621)
To Artifact [566af00eff]:
- File skins/blitz_no_logo/header.txt — part of check-in [f4e3abce26] at 2019-08-27 02:16:31 on branch skin-cap-matching — Added cap "n" to "r" in skins that show a /ticket link in their header, since the handler for it allows the page to show for those who can only file new tickets, not just those who can see existing tickets. Also fixed some skins that were using "anoncap" to test this: it needs to work for all logged-in users, not just "anonymous". (user: wyoung size: 1622)
| ︙ | ︙ | |||
44 45 46 47 48 49 50 |
if {[hascap o]} {
menulink /brlist Branches
menulink /taglist Tags
}
if {[anycap 23456] || [anoncap 2] || [anoncap 3]} {
menulink /forum Forum
}
| | | 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
if {[hascap o]} {
menulink /brlist Branches
menulink /taglist Tags
}
if {[anycap 23456] || [anoncap 2] || [anoncap 3]} {
menulink /forum Forum
}
if {[anycap nr]} {
menulink /ticket Tickets
}
if {[hascap j]} {
menulink /wiki Wiki
}
if {[hascap o]} {
menulink /help Help
|
| ︙ | ︙ |