Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Show the artifact hash with a copy button on the header of /file pages. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
00eb7a05b511d1218186dd278e27e0d6 |
| User & Date: | drh 2020-08-20 18:08:38.754 |
Context
|
2020-08-20
| ||
| 19:51 | Minor change to auto.def requested by [https://bugs.debian.org/961772] ... (check-in: e6de5ec750 user: drh tags: trunk) | |
| 18:08 | Show the artifact hash with a copy button on the header of /file pages. ... (check-in: 00eb7a05b5 user: drh tags: trunk) | |
| 15:22 | Update the change log and the latest-release link on the homepage. ... (check-in: 5983f5b913 user: drh tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
2304 2305 2306 2307 2308 2309 2310 |
@ from the %z(href("%R/info/tip"))latest check-in</a></h2>
}else{
const char *zPath;
Blob path;
blob_zero(&path);
hyperlinked_path(zName, &path, zCI, "dir", "", LINKPATH_FINFO);
zPath = blob_str(&path);
| | > > | | | 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 |
@ from the %z(href("%R/info/tip"))latest check-in</a></h2>
}else{
const char *zPath;
Blob path;
blob_zero(&path);
hyperlinked_path(zName, &path, zCI, "dir", "", LINKPATH_FINFO);
zPath = blob_str(&path);
@ <h2>File %s(zPath) artifact \
style_copy_button(1,"hash-fid",0,0,"%z%S</a> ",
href("%R/info/%s",zUuid),zUuid);
if( isBranchCI ){
@ on branch %z(href("%R/timeline?r=%T",zCI))%h(zCI)</a></h2>
}else if( isSymbolicCI ){
@ part of check-in %z(href("%R/info/%!S",zCIUuid))%s(zCI)</a></h2>
}else{
@ part 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&checkin=%T",
zName, zCI);
style_submenu_element("Blame", "%R/blame?filename=%T&checkin=%T",
|
| ︙ | ︙ |