Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | The Login/Logout text was reversed. Fix it. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
aa519dbd996b1bcc692932bdff77f593 |
| User & Date: | drh 2008-02-25 14:05:17.000 |
References
|
2008-02-26
| ||
| 04:55 | Merged with [aa519dbd99]. ... (check-in: 91fd4205ea user: aku tags: trunk) | |
Context
|
2008-02-26
| ||
| 04:55 | Merged with [aa519dbd99]. ... (check-in: 91fd4205ea user: aku tags: trunk) | |
|
2008-02-25
| ||
| 14:05 | The Login/Logout text was reversed. Fix it. ... (check-in: aa519dbd99 user: drh tags: trunk) | |
| 02:26 | Add the "stat" webpage showing repository statistics. ... (check-in: e71e4d3193 user: drh tags: trunk) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
169 170 171 172 173 174 175 |
@ if {[hascap j]} {
@ html "<a href='$baseurl/wiki'>Wiki</a>"
@ }
@ if {[hascap s]} {
@ html "<a href='$baseurl/setup'>Setup</a>"
@ }
@ if {[info exists login]} {
| | | | 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 |
@ if {[hascap j]} {
@ html "<a href='$baseurl/wiki'>Wiki</a>"
@ }
@ if {[hascap s]} {
@ html "<a href='$baseurl/setup'>Setup</a>"
@ }
@ if {[info exists login]} {
@ html "<a href='$baseurl/login'>Logout</a>"
@ } else {
@ html "<a href='$baseurl/login'>Login</a>"
@ }
@ </th1></div>
;
/*
** The default page footer
*/
|
| ︙ | ︙ |