diff options
author | Lars Hjemli | 2011-05-23 23:28:38 +0200 |
---|---|---|
committer | Lars Hjemli | 2011-05-23 23:28:38 +0200 |
commit | ab350a77b1d3b0e251cc28329f2e16f0566e521e (patch) | |
tree | 1af2b0760858fcd87ce1e628465f9b60af7815e3 /ui-commit.c | |
parent | 652a5a18db3b0409fedfaf8c5720446d87628ba0 (diff) | |
parent | c2b58ed8539fcfa4f05cc9da316bbc782f4b8f10 (diff) | |
download | cgit-ab350a77b1d3b0e251cc28329f2e16f0566e521e.tar.gz cgit-ab350a77b1d3b0e251cc28329f2e16f0566e521e.tar.bz2 cgit-ab350a77b1d3b0e251cc28329f2e16f0566e521e.zip |
Merge branch 'fh/filter-api'
Conflicts:
cgit.c
Diffstat (limited to 'ui-commit.c')
-rw-r--r-- | ui-commit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ui-commit.c b/ui-commit.c index 2b4f677..2da9fcf 100644 --- a/ui-commit.c +++ b/ui-commit.c | |||
@@ -110,7 +110,7 @@ void cgit_print_commit(char *hex, const char *prefix) | |||
110 | html("</table>\n"); | 110 | html("</table>\n"); |
111 | html("<div class='commit-subject'>"); | 111 | html("<div class='commit-subject'>"); |
112 | if (ctx.repo->commit_filter) | 112 | if (ctx.repo->commit_filter) |
113 | cgit_open_filter(ctx.repo->commit_filter); | 113 | cgit_open_filter(ctx.repo->commit_filter, ctx.repo); |
114 | html_txt(info->subject); | 114 | html_txt(info->subject); |
115 | if (ctx.repo->commit_filter) | 115 | if (ctx.repo->commit_filter) |
116 | cgit_close_filter(ctx.repo->commit_filter); | 116 | cgit_close_filter(ctx.repo->commit_filter); |
@@ -118,7 +118,7 @@ void cgit_print_commit(char *hex, const char *prefix) | |||
118 | html("</div>"); | 118 | html("</div>"); |
119 | html("<div class='commit-msg'>"); | 119 | html("<div class='commit-msg'>"); |
120 | if (ctx.repo->commit_filter) | 120 | if (ctx.repo->commit_filter) |
121 | cgit_open_filter(ctx.repo->commit_filter); | 121 | cgit_open_filter(ctx.repo->commit_filter, ctx.repo); |
122 | html_txt(info->msg); | 122 | html_txt(info->msg); |
123 | if (ctx.repo->commit_filter) | 123 | if (ctx.repo->commit_filter) |
124 | cgit_close_filter(ctx.repo->commit_filter); | 124 | cgit_close_filter(ctx.repo->commit_filter); |
@@ -127,7 +127,7 @@ void cgit_print_commit(char *hex, const char *prefix) | |||
127 | html("<div class='notes-header'>Notes</div>"); | 127 | html("<div class='notes-header'>Notes</div>"); |
128 | html("<div class='notes'>"); | 128 | html("<div class='notes'>"); |
129 | if (ctx.repo->commit_filter) | 129 | if (ctx.repo->commit_filter) |
130 | cgit_open_filter(ctx.repo->commit_filter); | 130 | cgit_open_filter(ctx.repo->commit_filter, ctx.repo); |
131 | html_txt(notes.buf); | 131 | html_txt(notes.buf); |
132 | if (ctx.repo->commit_filter) | 132 | if (ctx.repo->commit_filter) |
133 | cgit_close_filter(ctx.repo->commit_filter); | 133 | cgit_close_filter(ctx.repo->commit_filter); |