ui-commit: add support for 'commit-filter' option
This new option specifies a filter which is executed on the commit message, i.e. the commit message is written to the filters STDIN and the filters STDOUT is included verbatim as the commit message. This can be used to implement commit linking by creating a simple shell script in e.g. /usr/bin/cgit-commit-filter.sh like this: #/bin/sh sed -re 's|\b([0-9a-fA-F]{6,40})\b|<a href="./?id=\1">\1</a>|g' Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
@ -89,11 +89,19 @@ void cgit_print_commit(char *hex)
|
||||
}
|
||||
html("</table>\n");
|
||||
html("<div class='commit-subject'>");
|
||||
if (ctx.cfg.commit_filter)
|
||||
cgit_open_filter(ctx.cfg.commit_filter);
|
||||
html_txt(info->subject);
|
||||
if (ctx.cfg.commit_filter)
|
||||
cgit_close_filter(ctx.cfg.commit_filter);
|
||||
show_commit_decorations(commit);
|
||||
html("</div>");
|
||||
html("<div class='commit-msg'>");
|
||||
if (ctx.cfg.commit_filter)
|
||||
cgit_open_filter(ctx.cfg.commit_filter);
|
||||
html_txt(info->msg);
|
||||
if (ctx.cfg.commit_filter)
|
||||
cgit_close_filter(ctx.cfg.commit_filter);
|
||||
html("</div>");
|
||||
if (parents < 3) {
|
||||
if (parents)
|
||||
|
Viittaa uudesa ongelmassa
Block a user