diff options
Diffstat (limited to 'cgit.c')
| -rw-r--r-- | cgit.c | 3 |
1 files changed, 3 insertions, 0 deletions
| @@ -137,6 +137,8 @@ void config_cb(const char *name, const char *value) | |||
| 137 | ctx.cfg.enable_log_filecount = atoi(value); | 137 | ctx.cfg.enable_log_filecount = atoi(value); |
| 138 | else if (!strcmp(name, "enable-log-linecount")) | 138 | else if (!strcmp(name, "enable-log-linecount")) |
| 139 | ctx.cfg.enable_log_linecount = atoi(value); | 139 | ctx.cfg.enable_log_linecount = atoi(value); |
| 140 | else if (!strcmp(name, "enable-tree-linenumbers")) | ||
| 141 | ctx.cfg.enable_tree_linenumbers = atoi(value); | ||
| 140 | else if (!strcmp(name, "max-stats")) | 142 | else if (!strcmp(name, "max-stats")) |
| 141 | ctx.cfg.max_stats = cgit_find_stats_period(value, NULL); | 143 | ctx.cfg.max_stats = cgit_find_stats_period(value, NULL); |
| 142 | else if (!strcmp(name, "cache-size")) | 144 | else if (!strcmp(name, "cache-size")) |
| @@ -260,6 +262,7 @@ static void prepare_context(struct cgit_context *ctx) | |||
| 260 | ctx->cfg.css = "/cgit.css"; | 262 | ctx->cfg.css = "/cgit.css"; |
| 261 | ctx->cfg.logo = "/cgit.png"; | 263 | ctx->cfg.logo = "/cgit.png"; |
| 262 | ctx->cfg.local_time = 0; | 264 | ctx->cfg.local_time = 0; |
| 265 | ctx->cfg.enable_tree_linenumbers = 1; | ||
| 263 | ctx->cfg.max_repo_count = 50; | 266 | ctx->cfg.max_repo_count = 50; |
| 264 | ctx->cfg.max_commit_count = 50; | 267 | ctx->cfg.max_commit_count = 50; |
| 265 | ctx->cfg.max_lock_attempts = 5; | 268 | ctx->cfg.max_lock_attempts = 5; |
