|
diff --git a/ui-tree.c b/ui-tree.c index 61fcf5a..c608754 100644 --- a/ ui-tree.c+++ b/ ui-tree.c |
|
@@ -16,5 +16,5 @@ char *match_path; |
16 | int header = 0; |
16 | int header = 0; |
17 | |
17 | |
18 | static void print_text_buffer(char *buf, unsigned long size) |
18 | static void print_text_buffer(const char *name, char *buf, unsigned long size) |
19 | { |
19 | { |
20 | unsigned long lineno, idx; |
20 | unsigned long lineno, idx; |
@@ -23,4 +23,14 @@ static void print_text_buffer(char *buf, unsigned long size) |
23 | |
23 | |
24 | html("<table summary='blob content' class='blob'>\n"); |
24 | html("<table summary='blob content' class='blob'>\n"); |
| |
25 | if (ctx.repo->source_filter) { |
| |
26 | html("<tr><td class='lines'><pre><code>"); |
| |
27 | ctx.repo->source_filter->argv[1] = xstrdup(name); |
| |
28 | cgit_open_filter(ctx.repo->source_filter); |
| |
29 | write(STDOUT_FILENO, buf, size); |
| |
30 | cgit_close_filter(ctx.repo->source_filter); |
| |
31 | html("</code></pre></td></tr></table>\n"); |
| |
32 | return; |
| |
33 | } |
| |
34 | |
25 | html("<tr><td class='linenumbers'><pre>"); |
35 | html("<tr><td class='linenumbers'><pre>"); |
26 | idx = 0; |
36 | idx = 0; |
@@ -66,5 +76,5 @@ static void print_binary_buffer(char *buf, unsigned long size) |
66 | } |
76 | } |
67 | |
77 | |
68 | static void print_object(const unsigned char *sha1, char *path) |
78 | static void print_object(const unsigned char *sha1, char *path, const char *basename) |
69 | { |
79 | { |
70 | enum object_type type; |
80 | enum object_type type; |
@@ -94,5 +104,5 @@ static void print_object(const unsigned char *sha1, char *path) |
94 | print_binary_buffer(buf, size); |
104 | print_binary_buffer(buf, size); |
95 | else |
105 | else |
96 | print_text_buffer(buf, size); |
106 | print_text_buffer(basename, buf, size); |
97 | } |
107 | } |
98 | |
108 | |
@@ -220,5 +230,5 @@ static int walk_tree(const unsigned char *sha1, const char *base, int baselen, |
220 | return READ_TREE_RECURSIVE; |
230 | return READ_TREE_RECURSIVE; |
221 | } else { |
231 | } else { |
222 | print_object(sha1, buffer); |
232 | print_object(sha1, buffer, pathname); |
223 | return 0; |
233 | return 0; |
224 | } |
234 | } |
|