|
diff --git a/cgit.c b/cgit.c index e46c00a..6ccf4aa 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -62,6 +62,8 @@ void repo_config(struct cgit_repo *repo, const char *name, const char *value) |
62 | repo->enable_log_linecount = ctx.cfg.enable_log_linecount * atoi(value); |
62 | repo->enable_log_linecount = ctx.cfg.enable_log_linecount * atoi(value); |
63 | else if (!strcmp(name, "enable-remote-branches")) |
63 | else if (!strcmp(name, "enable-remote-branches")) |
64 | repo->enable_remote_branches = atoi(value); |
64 | repo->enable_remote_branches = atoi(value); |
| |
65 | else if (!strcmp(name, "enable-subject-links")) |
| |
66 | repo->enable_subject_links = atoi(value); |
65 | else if (!strcmp(name, "max-stats")) |
67 | else if (!strcmp(name, "max-stats")) |
66 | repo->max_stats = cgit_find_stats_period(value, NULL); |
68 | repo->max_stats = cgit_find_stats_period(value, NULL); |
67 | else if (!strcmp(name, "module-link")) |
69 | else if (!strcmp(name, "module-link")) |
@@ -141,6 +143,8 @@ void config_cb(const char *name, const char *value) |
141 | ctx.cfg.enable_log_linecount = atoi(value); |
143 | ctx.cfg.enable_log_linecount = atoi(value); |
142 | else if (!strcmp(name, "enable-remote-branches")) |
144 | else if (!strcmp(name, "enable-remote-branches")) |
143 | ctx.cfg.enable_remote_branches = atoi(value); |
145 | ctx.cfg.enable_remote_branches = atoi(value); |
| |
146 | else if (!strcmp(name, "enable-subject-links")) |
| |
147 | ctx.cfg.enable_subject_links = atoi(value); |
144 | else if (!strcmp(name, "enable-tree-linenumbers")) |
148 | else if (!strcmp(name, "enable-tree-linenumbers")) |
145 | ctx.cfg.enable_tree_linenumbers = atoi(value); |
149 | ctx.cfg.enable_tree_linenumbers = atoi(value); |
146 | else if (!strcmp(name, "max-stats")) |
150 | else if (!strcmp(name, "max-stats")) |
@@ -260,7 +264,7 @@ char *xstrdupn(const char *str) |
260 | |
264 | |
261 | static void prepare_context(struct cgit_context *ctx) |
265 | static void prepare_context(struct cgit_context *ctx) |
262 | { |
266 | { |
263 | memset(ctx, 0, sizeof(ctx)); |
267 | memset(ctx, 0, sizeof(*ctx)); |
264 | ctx->cfg.agefile = "info/web/last-modified"; |
268 | ctx->cfg.agefile = "info/web/last-modified"; |
265 | ctx->cfg.nocache = 0; |
269 | ctx->cfg.nocache = 0; |
266 | ctx->cfg.cache_size = 0; |
270 | ctx->cfg.cache_size = 0; |
|