X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/566f92b27618f67f59cc3642e17d9cb9c12634fa..1383fe3fa60b4c207d103a49943a59de71a36fe1:/ui-tree.c diff --git a/ui-tree.c b/ui-tree.c index 9a837e2..9876c99 100644 --- a/ui-tree.c +++ b/ui-tree.c @@ -35,10 +35,10 @@ static void print_object(const unsigned char *sha1, char *path) return; } - html(" blob: %s",sha1_to_hex(sha1)); + html(" ("); + cgit_plain_link("plain", NULL, NULL, ctx.qry.head, + curr_rev, path); + htmlf(")
blob: %s", sha1_to_hex(sha1)); html("\n"); idx = 0; @@ -54,8 +54,10 @@ static void print_object(const unsigned char *sha1, char *path) } idx++; } - htmlf(linefmt, ++lineno); - html_txt(buf + start); + if (start < idx) { + htmlf(linefmt, ++lineno); + html_txt(buf + start); + } html("\n"); html("
\n"); } @@ -106,7 +108,7 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen, html(""); cgit_log_link("log", NULL, "button", ctx.qry.head, curr_rev, - fullpath, 0, NULL, NULL); + fullpath, 0, NULL, NULL, ctx.qry.showmsg); html("\n"); free(name); return 0;