From: Christian Hesse Date: Wed, 2 Jan 2019 08:20:40 +0000 (+0100) Subject: ui-tree: add about link in tree view list X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=refs%2Fheads%2Fch%2Fabout-link;p=cgit ui-tree: add about link in tree view list Signed-off-by: Christian Hesse --- diff --git a/ui-tree.c b/ui-tree.c index 5d7b257..635a2a4 100644 --- a/ui-tree.c +++ b/ui-tree.c @@ -270,6 +270,9 @@ static int ls_item(const struct object_id *oid, struct strbuf *base, if (!S_ISGITLINK(mode)) cgit_plain_link("plain", NULL, "button", ctx.qry.head, walk_tree_ctx->curr_rev, fullpath.buf); + if (!S_ISDIR(mode)) + cgit_about_link("about", NULL, "button", ctx.qry.head, + walk_tree_ctx->curr_rev, fullpath.buf); if (!S_ISDIR(mode) && ctx.repo->enable_blame) cgit_blame_link("blame", NULL, "button", ctx.qry.head, walk_tree_ctx->curr_rev, fullpath.buf);