diff options
author | Florian Pritz <bluewind@xssn.at> | 2009-08-09 15:43:18 +0200 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2009-08-21 14:14:21 +0200 |
commit | 03389d6e67bfda5cb3ff1504db815f09715ec6f4 (patch) | |
tree | c3424f2206c8b577becb35038e45e6f5cf2b40a5 /ui-tree.c | |
parent | 6445a3ad0987ba66eef555c9caa3fc378f99ee22 (diff) | |
download | cgit-03389d6e67bfda5cb3ff1504db815f09715ec6f4.tar.gz cgit-03389d6e67bfda5cb3ff1504db815f09715ec6f4.tar.xz |
ui-tree.c: show line numbers when highlighting
When source-filter is enabled, cgit currently will not display
linenumbers in the tree view. This patch restores the linenumber
function.
Signed-off-by: Florian Pritz <bluewind@xssn.at>
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-tree.c')
-rw-r--r-- | ui-tree.c | 20 |
1 files changed, 11 insertions, 9 deletions
@@ -22,15 +22,6 @@ 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.repo->source_filter) { - html("<tr><td class='lines'><pre><code>"); - ctx.repo->source_filter->argv[1] = xstrdup(name); - cgit_open_filter(ctx.repo->source_filter); - write(STDOUT_FILENO, buf, size); - cgit_close_filter(ctx.repo->source_filter); - html("</code></pre></td></tr></table>\n"); - return; - } html("<tr><td class='linenumbers'><pre>"); idx = 0; @@ -45,6 +36,17 @@ static void print_text_buffer(const char *name, char *buf, unsigned long size) } } html("</pre></td>\n"); + + if (ctx.repo->source_filter) { + html("<td class='lines'><pre><code>"); + ctx.repo->source_filter->argv[1] = xstrdup(name); + cgit_open_filter(ctx.repo->source_filter); + write(STDOUT_FILENO, buf, size); + cgit_close_filter(ctx.repo->source_filter); + html("</code></pre></td></tr></table>\n"); + return; + } + html("<td class='lines'><pre><code>"); html_txt(buf); html("</code></pre></td></tr></table>\n"); |