Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix busted hyperlinks on the /file page, caused by recent enhancements. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
f4a9221ad54a9f4d6c146ab09e92d4d1 |
| User & Date: | drh 2020-05-11 20:56:21.413 |
Context
|
2020-05-11
| ||
| 21:01 | Widen shun fields to accommodate SHA3-256 ... (check-in: f749f203f2 user: andygoth tags: trunk) | |
| 20:56 | Fix busted hyperlinks on the /file page, caused by recent enhancements. ... (check-in: f4a9221ad5 user: drh tags: trunk) | |
| 20:13 | Carry the file browsing UX improvements through into the /dir page. ... (check-in: 4977765e6c user: drh tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
2235 2236 2237 2238 2239 2240 2241 |
blob_zero(&path);
hyperlinked_path(zName, &path, zCI, "dir", "", LINKPATH_FINFO);
zPath = blob_str(&path);
@ <h2>File %s(zPath) \
if( isBranchCI ){
@ on branch %z(href("%R/timeline?r=%T",zCI))%h(zCI)</a></h2>
}else if( isSymbolicCI ){
| | | | 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 |
blob_zero(&path);
hyperlinked_path(zName, &path, zCI, "dir", "", LINKPATH_FINFO);
zPath = blob_str(&path);
@ <h2>File %s(zPath) \
if( isBranchCI ){
@ on branch %z(href("%R/timeline?r=%T",zCI))%h(zCI)</a></h2>
}else if( isSymbolicCI ){
@ as of check-in %z(href("%R/info/%!S",zCIUuid))%s(zCI)</a></h2>
}else{
@ as of check-in [%z(href("%R/info/%!S",zCIUuid))%S(zCIUuid)</a>]</h2>
}
blob_reset(&path);
}
style_submenu_element("Artifact", "%R/artifact/%S", zUuid);
style_submenu_element("Annotate", "%R/annotate?filename=%T&ci=%T",
zName, zCI);
style_submenu_element("Blame", "%R/blame?filename=%T&ci=%T",
|
| ︙ | ︙ |