mirror of
https://git.zx2c4.com/cgit
synced 2024-11-22 08:28:42 +00:00
ui-commit: Preserve path limit in links to tree and diff pages
For tree links, the original link is unchanged, but in the case of a path limit, a subtree link is added to the right of the original tree link. Signed-off-by: Johan Herland <johan@herland.net> Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
parent
eac1b67541
commit
34c2331d2c
@ -71,6 +71,10 @@ void cgit_print_commit(char *hex, const char *prefix)
|
|||||||
tmp = xstrdup(hex);
|
tmp = xstrdup(hex);
|
||||||
cgit_tree_link(sha1_to_hex(commit->tree->object.sha1), NULL, NULL,
|
cgit_tree_link(sha1_to_hex(commit->tree->object.sha1), NULL, NULL,
|
||||||
ctx.qry.head, tmp, NULL);
|
ctx.qry.head, tmp, NULL);
|
||||||
|
if (prefix) {
|
||||||
|
html(" /");
|
||||||
|
cgit_tree_link(prefix, NULL, NULL, ctx.qry.head, tmp, prefix);
|
||||||
|
}
|
||||||
html("</td></tr>\n");
|
html("</td></tr>\n");
|
||||||
for (p = commit->parents; p ; p = p->next) {
|
for (p = commit->parents; p ; p = p->next) {
|
||||||
parent = lookup_commit_reference(p->item->object.sha1);
|
parent = lookup_commit_reference(p->item->object.sha1);
|
||||||
@ -86,7 +90,7 @@ void cgit_print_commit(char *hex, const char *prefix)
|
|||||||
ctx.qry.head, sha1_to_hex(p->item->object.sha1), 0);
|
ctx.qry.head, sha1_to_hex(p->item->object.sha1), 0);
|
||||||
html(" (");
|
html(" (");
|
||||||
cgit_diff_link("diff", NULL, NULL, ctx.qry.head, hex,
|
cgit_diff_link("diff", NULL, NULL, ctx.qry.head, hex,
|
||||||
sha1_to_hex(p->item->object.sha1), NULL, 0);
|
sha1_to_hex(p->item->object.sha1), prefix, 0);
|
||||||
html(")</td></tr>");
|
html(")</td></tr>");
|
||||||
parents++;
|
parents++;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user