|
diff --git a/cgit.c b/cgit.c index aa1107a..dbec196 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -27,2 +27,17 @@ void add_mimetype(const char *name, const char *value) |
27 | |
27 | |
| |
28 | struct cgit_filter *new_filter(const char *cmd, int extra_args) |
| |
29 | { |
| |
30 | struct cgit_filter *f; |
| |
31 | |
| |
32 | if (!cmd || !cmd[0]) |
| |
33 | return NULL; |
| |
34 | |
| |
35 | f = xmalloc(sizeof(struct cgit_filter)); |
| |
36 | f->cmd = xstrdup(cmd); |
| |
37 | f->argv = xmalloc((2 + extra_args) * sizeof(char *)); |
| |
38 | f->argv[0] = f->cmd; |
| |
39 | f->argv[1] = NULL; |
| |
40 | return f; |
| |
41 | } |
| |
42 | |
28 | void config_cb(const char *name, const char *value) |
43 | void config_cb(const char *name, const char *value) |
@@ -87,2 +102,4 @@ void config_cb(const char *name, const char *value) |
87 | ctx.cfg.cache_dynamic_ttl = atoi(value); |
102 | ctx.cfg.cache_dynamic_ttl = atoi(value); |
| |
103 | else if (!strcmp(name, "commit-filter")) |
| |
104 | ctx.cfg.commit_filter = new_filter(value, 0); |
88 | else if (!strcmp(name, "embedded")) |
105 | else if (!strcmp(name, "embedded")) |
@@ -97,2 +114,4 @@ void config_cb(const char *name, const char *value) |
97 | ctx.cfg.max_commit_count = atoi(value); |
114 | ctx.cfg.max_commit_count = atoi(value); |
| |
115 | else if (!strcmp(name, "source-filter")) |
| |
116 | ctx.cfg.source_filter = new_filter(value, 1); |
98 | else if (!strcmp(name, "summary-log")) |
117 | else if (!strcmp(name, "summary-log")) |
@@ -141,2 +160,6 @@ void config_cb(const char *name, const char *value) |
141 | ctx.repo->module_link= xstrdup(value); |
160 | ctx.repo->module_link= xstrdup(value); |
| |
161 | else if (ctx.repo && !strcmp(name, "repo.commit-filter")) |
| |
162 | ctx.repo->commit_filter = new_filter(value, 0); |
| |
163 | else if (ctx.repo && !strcmp(name, "repo.source-filter")) |
| |
164 | ctx.repo->source_filter = new_filter(value, 1); |
142 | else if (ctx.repo && !strcmp(name, "repo.readme") && value != NULL) { |
165 | else if (ctx.repo && !strcmp(name, "repo.readme") && value != NULL) { |
|