Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Reduce extraneous wording in /finfo, per feedback in [forum:e456b9141b|forum post e456b9141b]. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
b6517d5eebe414f6e7bca2265a9cf384 |
| User & Date: | stephan 2024-03-09 07:44:01.047 |
Context
|
2024-03-09
| ||
| 07:52 | Document the optional IP: part of (server --port IP:PORT), per [forum:88f7f8245e|forum post 88f7f8245e]. check-in: 3815c85746 user: stephan tags: trunk | |
| 07:44 | Reduce extraneous wording in /finfo, per feedback in [forum:e456b9141b|forum post e456b9141b]. check-in: b6517d5eeb user: stephan tags: trunk | |
|
2024-03-05
| ||
| 08:44 | Part 2 of 2 of [91a73ec348d7609f]: add --dark-pikchr to the test-wiki-render and test-markdown-render commands. check-in: aac2a35086 user: stephan tags: trunk | |
Changes
Changes to src/finfo.c.
| ︙ | ︙ | |||
565 566 567 568 569 570 571 |
if( ridTo ){
zUuid = db_text(0, "SELECT uuid FROM blob WHERE rid=%d", ridTo);
zLink = href("%R/info/%!S", zUuid);
blob_appendf(&title, " and check-in %z%S</a>", zLink, zUuid);
fossil_free(zUuid);
}
}else if( ridCi ){
| | | 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 |
if( ridTo ){
zUuid = db_text(0, "SELECT uuid FROM blob WHERE rid=%d", ridTo);
zLink = href("%R/info/%!S", zUuid);
blob_appendf(&title, " and check-in %z%S</a>", zLink, zUuid);
fossil_free(zUuid);
}
}else if( ridCi ){
blob_appendf(&title, "History of file ");
hyperlinked_path(zFilename, &title, 0, "tree", "", LINKPATH_FILE);
if( fShowId ) blob_appendf(&title, " (%d)", fnid);
blob_appendf(&title, " at check-in %z%h</a>",
href("%R/info?name=%t",zCI), zCI);
}else{
blob_appendf(&title, "History for ");
hyperlinked_path(zFilename, &title, 0, "tree", "", LINKPATH_FILE);
|
| ︙ | ︙ |