diff options
| author | Lars Hjemli <hjemli@gmail.com> | 2009-08-09 13:22:00 +0200 | 
|---|---|---|
| committer | Lars Hjemli <hjemli@gmail.com> | 2009-08-09 13:22:00 +0200 | 
| commit | e976df27952ca1e450c1c3d420532ac9f5e3036b (patch) | |
| tree | 2634538f3144c935d1579315d4de289e6c890f19 /ui-tree.c | |
| parent | ui-commit: add support for 'commit-filter' option (diff) | |
| download | cgit-e976df27952ca1e450c1c3d420532ac9f5e3036b.tar.gz cgit-e976df27952ca1e450c1c3d420532ac9f5e3036b.tar.bz2 cgit-e976df27952ca1e450c1c3d420532ac9f5e3036b.zip | |
Add support for repo.commit-filter and repo.source-filter
These options can be used to override the default commit- and source-
filter settings per repository.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to '')
| -rw-r--r-- | ui-tree.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| @@ -22,12 +22,12 @@ static void print_text_buffer(const char *name, char *buf, unsigned long size)  		"<a class='no' id='n%1$d' name='n%1$d' href='#n%1$d'>%1$d</a>\n";  	html("<table summary='blob content' class='blob'>\n"); -	if (ctx.cfg.source_filter) { +	if (ctx.repo->source_filter) {  		html("<tr><td class='lines'><pre><code>"); -		ctx.cfg.source_filter->argv[1] = xstrdup(name); -		cgit_open_filter(ctx.cfg.source_filter); +		ctx.repo->source_filter->argv[1] = xstrdup(name); +		cgit_open_filter(ctx.repo->source_filter);  		write(STDOUT_FILENO, buf, size); -		cgit_close_filter(ctx.cfg.source_filter); +		cgit_close_filter(ctx.repo->source_filter);  		html("</code></pre></td></tr></table>\n");  		return;  	} | 
