mirror of
https://git.zx2c4.com/cgit
synced 2025-07-30 23:55:28 +02:00
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>
This commit is contained in:
parent
18dfbdc099
commit
46b7abed99
4 changed files with 25 additions and 4 deletions
2
cgit.c
2
cgit.c
|
@ -100,6 +100,8 @@ void config_cb(const char *name, const char *value)
|
|||
ctx.cfg.max_repo_count = atoi(value);
|
||||
else if (!strcmp(name, "max-commit-count"))
|
||||
ctx.cfg.max_commit_count = atoi(value);
|
||||
else if (!strcmp(name, "source-filter"))
|
||||
ctx.cfg.source_filter = new_filter(value, 1);
|
||||
else if (!strcmp(name, "summary-log"))
|
||||
ctx.cfg.summary_log = atoi(value);
|
||||
else if (!strcmp(name, "summary-branches"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue