Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Removing superfluous parenthesis in html output. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
ad9cf1cad60a338b72144d77994f6d18 |
| User & Date: | viriketo 2012-10-24 13:43:34.005 |
Context
|
2012-10-24
| ||
| 19:04 | Fix the --setmtime flag on fossil-commit so that it works when changing version, and not just when updating the current version. ... (check-in: 1d3256cbca user: drh tags: trunk) | |
| 13:43 | Removing superfluous parenthesis in html output. ... (check-in: ad9cf1cad6 user: viriketo tags: trunk) | |
|
2012-10-23
| ||
| 18:20 | Simplifications to the checkout-db schema auto-update mechanism. ... (check-in: 21f8161e8e user: drh tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
1176 1177 1178 1179 1180 1181 1182 |
if( g.perm.Hyperlink && g.perm.RdTkt ){
@ ticket [%z(href("%R/tktview?name=%S",zTarget))%S(zTarget)</a>]
}else{
@ ticket [%S(zTarget)]
}
}else{
if( g.perm.Hyperlink && g.perm.RdWiki ){
| | | 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 |
if( g.perm.Hyperlink && g.perm.RdTkt ){
@ ticket [%z(href("%R/tktview?name=%S",zTarget))%S(zTarget)</a>]
}else{
@ ticket [%S(zTarget)]
}
}else{
if( g.perm.Hyperlink && g.perm.RdWiki ){
@ wiki page [%z(href("%R/wiki?name=%t",zTarget))%h(zTarget)</a>]
}else{
@ wiki page [%h(zTarget)]
}
}
@ added by
hyperlink_to_user(zUser,zDate," on");
hyperlink_to_date(zDate,".");
|
| ︙ | ︙ |