about summary refs log tree commit diff stats
path: root/ui-tree.c
diff options
context:
space:
mode:
authorFerry Huberts2011-03-23 11:57:42 +0100
committerLars Hjemli2011-03-26 11:03:42 +0100
commitd87bba846d368e560193a1f75de6d66bffe986cf (patch)
treeec74dbc35f2b0dfb5e5ef494bb27bcc097f4e922 /ui-tree.c
parentnew_filter: determine extra_args from filter type (diff)
downloadcgit-d87bba846d368e560193a1f75de6d66bffe986cf.tar.gz
cgit-d87bba846d368e560193a1f75de6d66bffe986cf.zip
cgit_open_filter: also take the repo as a parameter
To prepare for handing repo configuration to the
filter script that is executed.

Signed-off-by: Ferry Huberts <ferry.huberts@pelagic.nl>
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-tree.c')
-rw-r--r--ui-tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-tree.c b/ui-tree.c index 0b1b531..835c166 100644 --- a/ui-tree.c +++ b/ui-tree.c
@@ -45,7 +45,7 @@ static void print_text_buffer(const char *name, char *buf, unsigned long size)
45 if (ctx.repo->source_filter) { 45 if (ctx.repo->source_filter) {
46 html("<td class='lines'><pre><code>"); 46 html("<td class='lines'><pre><code>");
47 ctx.repo->source_filter->argv[1] = xstrdup(name); 47 ctx.repo->source_filter->argv[1] = xstrdup(name);
48 cgit_open_filter(ctx.repo->source_filter); 48 cgit_open_filter(ctx.repo->source_filter, ctx.repo);
49 html_raw(buf, size); 49 html_raw(buf, size);
50 cgit_close_filter(ctx.repo->source_filter); 50 cgit_close_filter(ctx.repo->source_filter);
51 html("</code></pre></td></tr></table>\n"); 51 html("</code></pre></td></tr></table>\n");