author | Lars Hjemli <hjemli@gmail.com> | 2009-07-31 14:55:27 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2009-07-31 15:41:21 (UTC) |
commit | 46b7abed99e957008c01c02cf612aa526ba92f04 (patch) (unidiff) | |
tree | 2cdbfe5281c2ffa645def488d53db0a8b82842f4 /cgit.c | |
parent | 18dfbdc099c1398016427b6fa7f1a1facb363998 (diff) | |
download | cgit-46b7abed99e957008c01c02cf612aa526ba92f04.zip cgit-46b7abed99e957008c01c02cf612aa526ba92f04.tar.gz cgit-46b7abed99e957008c01c02cf612aa526ba92f04.tar.bz2 |
ui-tree: add support for source-filter option
This new option is used to specify an external command which will be
executed when displaying blob content in the tree view. Blob content
will be written to STDIN of the filter and STDOUT from the filter
will be included verbatim in the html output from cgit. The file name
of the blob will be passed as the only argument to the filter command.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgit.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -99,8 +99,10 @@ void config_cb(const char *name, const char *value) | |||
99 | else if (!strcmp(name, "max-repo-count")) | 99 | else if (!strcmp(name, "max-repo-count")) |
100 | ctx.cfg.max_repo_count = atoi(value); | 100 | ctx.cfg.max_repo_count = atoi(value); |
101 | else if (!strcmp(name, "max-commit-count")) | 101 | else if (!strcmp(name, "max-commit-count")) |
102 | ctx.cfg.max_commit_count = atoi(value); | 102 | ctx.cfg.max_commit_count = atoi(value); |
103 | else if (!strcmp(name, "source-filter")) | ||
104 | ctx.cfg.source_filter = new_filter(value, 1); | ||
103 | else if (!strcmp(name, "summary-log")) | 105 | else if (!strcmp(name, "summary-log")) |
104 | ctx.cfg.summary_log = atoi(value); | 106 | ctx.cfg.summary_log = atoi(value); |
105 | else if (!strcmp(name, "summary-branches")) | 107 | else if (!strcmp(name, "summary-branches")) |
106 | ctx.cfg.summary_branches = atoi(value); | 108 | ctx.cfg.summary_branches = atoi(value); |