mirror of
https://git.zx2c4.com/cgit
synced 2025-07-23 20:25:35 +02:00
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>
This commit is contained in:
parent
27a6d69ab3
commit
e1ad15d368
6 changed files with 13 additions and 3 deletions
4
cgit.c
4
cgit.c
|
@ -50,6 +50,8 @@ static void repo_config(struct cgit_repo *repo, const char *name, const char *va
|
|||
repo->extra_head_content = xstrdup(value);
|
||||
else if (!strcmp(name, "snapshots"))
|
||||
repo->snapshots = ctx.cfg.snapshots & cgit_parse_snapshots_mask(value);
|
||||
else if (!strcmp(name, "enable-blame"))
|
||||
repo->enable_blame = atoi(value);
|
||||
else if (!strcmp(name, "enable-commit-graph"))
|
||||
repo->enable_commit_graph = atoi(value);
|
||||
else if (!strcmp(name, "enable-log-filecount"))
|
||||
|
@ -809,6 +811,8 @@ static void print_repo(FILE *f, struct cgit_repo *repo)
|
|||
fprintf(f, "repo.homepage=%s\n", repo->homepage);
|
||||
if (repo->clone_url)
|
||||
fprintf(f, "repo.clone-url=%s\n", repo->clone_url);
|
||||
fprintf(f, "repo.enable-blame=%d\n",
|
||||
repo->enable_blame);
|
||||
fprintf(f, "repo.enable-commit-graph=%d\n",
|
||||
repo->enable_commit_graph);
|
||||
fprintf(f, "repo.enable-log-filecount=%d\n",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue