|
diff --git a/cgit.c b/cgit.c index bd37788..6bb712d 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -55,35 +55,35 @@ void repo_config(struct cgit_repo *repo, const char *name, const char *value) |
55 | else if (!strcmp(name, "defbranch")) |
55 | else if (!strcmp(name, "defbranch")) |
56 | repo->defbranch = xstrdup(value); |
56 | repo->defbranch = xstrdup(value); |
57 | else if (!strcmp(name, "snapshots")) |
57 | else if (!strcmp(name, "snapshots")) |
58 | repo->snapshots = ctx.cfg.snapshots & cgit_parse_snapshots_mask(value); |
58 | repo->snapshots = ctx.cfg.snapshots & cgit_parse_snapshots_mask(value); |
59 | else if (!strcmp(name, "enable-log-filecount")) |
59 | else if (!strcmp(name, "enable-log-filecount")) |
60 | repo->enable_log_filecount = ctx.cfg.enable_log_filecount * atoi(value); |
60 | repo->enable_log_filecount = ctx.cfg.enable_log_filecount * atoi(value); |
61 | else if (!strcmp(name, "enable-log-linecount")) |
61 | else if (!strcmp(name, "enable-log-linecount")) |
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, "max-stats")) |
63 | else if (!strcmp(name, "max-stats")) |
64 | repo->max_stats = cgit_find_stats_period(value, NULL); |
64 | repo->max_stats = cgit_find_stats_period(value, NULL); |
65 | else if (!strcmp(name, "module-link")) |
65 | else if (!strcmp(name, "module-link")) |
66 | repo->module_link= xstrdup(value); |
66 | repo->module_link= xstrdup(value); |
67 | else if (!strcmp(name, "section")) |
67 | else if (!strcmp(name, "section")) |
68 | repo->section = xstrdup(value); |
68 | repo->section = xstrdup(value); |
69 | else if (!strcmp(name, "readme") && value != NULL) { |
69 | else if (!strcmp(name, "readme") && value != NULL) { |
70 | if (*value == '/') |
70 | if (*value == '/') |
71 | ctx.repo->readme = xstrdup(value); |
71 | repo->readme = xstrdup(value); |
72 | else |
72 | else |
73 | ctx.repo->readme = xstrdup(fmt("%s/%s", ctx.repo->path, value)); |
73 | repo->readme = xstrdup(fmt("%s/%s", repo->path, value)); |
74 | } else if (ctx.cfg.enable_filter_overrides) { |
74 | } else if (ctx.cfg.enable_filter_overrides) { |
75 | if (!strcmp(name, "about-filter")) |
75 | if (!strcmp(name, "about-filter")) |
76 | repo->about_filter = new_filter(value, 0); |
76 | repo->about_filter = new_filter(value, 0); |
77 | else if (!strcmp(name, "commit-filter")) |
77 | else if (!strcmp(name, "commit-filter")) |
78 | repo->commit_filter = new_filter(value, 0); |
78 | repo->commit_filter = new_filter(value, 0); |
79 | else if (!strcmp(name, "source-filter")) |
79 | else if (!strcmp(name, "source-filter")) |
80 | repo->source_filter = new_filter(value, 1); |
80 | repo->source_filter = new_filter(value, 1); |
81 | } |
81 | } |
82 | } |
82 | } |
83 | |
83 | |
84 | void config_cb(const char *name, const char *value) |
84 | void config_cb(const char *name, const char *value) |
85 | { |
85 | { |
86 | if (!strcmp(name, "section") || !strcmp(name, "repo.group")) |
86 | if (!strcmp(name, "section") || !strcmp(name, "repo.group")) |
87 | ctx.cfg.section = xstrdup(value); |
87 | ctx.cfg.section = xstrdup(value); |
88 | else if (!strcmp(name, "repo.url")) |
88 | else if (!strcmp(name, "repo.url")) |
89 | ctx.repo = cgit_add_repo(value); |
89 | ctx.repo = cgit_add_repo(value); |
|