diff options
| author | Christian Hesse | 2019-02-26 17:08:31 +0100 |
|---|---|---|
| committer | Christian Hesse | 2019-06-25 21:40:59 +0200 |
| commit | e1ad15d368bdeb1bffea588b93a29055c5dfb7f4 (patch) | |
| tree | 8659155ec7bfd675237036a1093de23c0f78a021 /ui-tree.c | |
| parent | 27a6d69ab38825602bdbd5a5d0161e465326ea8d (diff) | |
| download | cgit-e1ad15d368bdeb1bffea588b93a29055c5dfb7f4.tar.gz cgit-e1ad15d368bdeb1bffea588b93a29055c5dfb7f4.tar.bz2 cgit-e1ad15d368bdeb1bffea588b93a29055c5dfb7f4.zip | |
ui-tree: allow per repository override for enable-blame
The blame operation can cause high cost in terms of CPU load for huge
repositories. Let's add a per repository override for enable-blame.
Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'ui-tree.c')
| -rw-r--r-- | ui-tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -110,7 +110,7 @@ static void print_object(const struct object_id *oid, const char *path, const ch | |||
| 110 | htmlf("blob: %s (", oid_to_hex(oid)); | 110 | htmlf("blob: %s (", oid_to_hex(oid)); |
| 111 | cgit_plain_link("plain", NULL, NULL, ctx.qry.head, | 111 | cgit_plain_link("plain", NULL, NULL, ctx.qry.head, |
| 112 | rev, path); | 112 | rev, path); |
| 113 | if (ctx.cfg.enable_blame) { | 113 | if (ctx.repo->enable_blame) { |
| 114 | html(") ("); | 114 | html(") ("); |
| 115 | cgit_blame_link("blame", NULL, NULL, ctx.qry.head, | 115 | cgit_blame_link("blame", NULL, NULL, ctx.qry.head, |
| 116 | rev, path); | 116 | rev, path); |
| @@ -251,7 +251,7 @@ static int ls_item(const struct object_id *oid, struct strbuf *base, | |||
| 251 | if (!S_ISGITLINK(mode)) | 251 | if (!S_ISGITLINK(mode)) |
| 252 | cgit_plain_link("plain", NULL, "button", ctx.qry.head, | 252 | cgit_plain_link("plain", NULL, "button", ctx.qry.head, |
| 253 | walk_tree_ctx->curr_rev, fullpath.buf); | 253 | walk_tree_ctx->curr_rev, fullpath.buf); |
| 254 | if (!S_ISDIR(mode) && ctx.cfg.enable_blame) | 254 | if (!S_ISDIR(mode) && ctx.repo->enable_blame) |
| 255 | cgit_blame_link("blame", NULL, "button", ctx.qry.head, | 255 | cgit_blame_link("blame", NULL, "button", ctx.qry.head, |
| 256 | walk_tree_ctx->curr_rev, fullpath.buf); | 256 | walk_tree_ctx->curr_rev, fullpath.buf); |
| 257 | html("</td></tr>\n"); | 257 | html("</td></tr>\n"); |
