mirror of
https://git.zx2c4.com/cgit
synced 2025-08-03 01:25:34 +02:00
Merge branch 'lh/remote-branches'
This commit is contained in:
commit
4e75d7c9b9
5 changed files with 18 additions and 0 deletions
4
cgit.c
4
cgit.c
|
@ -60,6 +60,8 @@ void repo_config(struct cgit_repo *repo, const char *name, const char *value)
|
|||
repo->enable_log_filecount = ctx.cfg.enable_log_filecount * atoi(value);
|
||||
else if (!strcmp(name, "enable-log-linecount"))
|
||||
repo->enable_log_linecount = ctx.cfg.enable_log_linecount * atoi(value);
|
||||
else if (!strcmp(name, "enable-remote-branches"))
|
||||
repo->enable_remote_branches = atoi(value);
|
||||
else if (!strcmp(name, "max-stats"))
|
||||
repo->max_stats = cgit_find_stats_period(value, NULL);
|
||||
else if (!strcmp(name, "module-link"))
|
||||
|
@ -137,6 +139,8 @@ void config_cb(const char *name, const char *value)
|
|||
ctx.cfg.enable_log_filecount = atoi(value);
|
||||
else if (!strcmp(name, "enable-log-linecount"))
|
||||
ctx.cfg.enable_log_linecount = atoi(value);
|
||||
else if (!strcmp(name, "enable-remote-branches"))
|
||||
ctx.cfg.enable_remote_branches = atoi(value);
|
||||
else if (!strcmp(name, "enable-tree-linenumbers"))
|
||||
ctx.cfg.enable_tree_linenumbers = atoi(value);
|
||||
else if (!strcmp(name, "max-stats"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue