summaryrefslogtreecommitdiffabout
path: root/ui-tree.c
authorLars Hjemli <hjemli@gmail.com>2009-03-15 08:06:20 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2009-03-15 08:06:20 (UTC)
commit780d2d98598e621d12c7b23d4c68b5ddc7019838 (patch) (side-by-side diff)
treeab520cb674fd07ab265693ba6f89126e7c0f823f /ui-tree.c
parent942a4c200168e110ec009c3260dc5f5f050de325 (diff)
parent6fddad7251021b307c8a3f70fdd2aa04c3f74eaa (diff)
downloadcgit-780d2d98598e621d12c7b23d4c68b5ddc7019838.zip
cgit-780d2d98598e621d12c7b23d4c68b5ddc7019838.tar.gz
cgit-780d2d98598e621d12c7b23d4c68b5ddc7019838.tar.bz2
Merge branch 'stable'
Diffstat (limited to 'ui-tree.c') (more/less context) (show whitespace changes)
-rw-r--r--ui-tree.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ui-tree.c b/ui-tree.c
index c6159ec..553dbaa 100644
--- a/ui-tree.c
+++ b/ui-tree.c
@@ -12,38 +12,41 @@
#include "ui-shared.h"
char *curr_rev;
char *match_path;
int header = 0;
static void print_text_buffer(char *buf, unsigned long size)
{
unsigned long lineno, idx;
const char *numberfmt =
"<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");
html("<tr><td class='linenumbers'><pre>");
idx = 0;
lineno = 0;
+
+ if (size) {
htmlf(numberfmt, ++lineno);
while(idx < size - 1) { // skip absolute last newline
if (buf[idx] == '\n')
htmlf(numberfmt, ++lineno);
idx++;
}
+ }
html("</pre></td>\n");
html("<td class='lines'><pre><code>");
html_txt(buf);
html("</code></pre></td></tr></table>\n");
}
#define ROWLEN 32
static void print_binary_buffer(char *buf, unsigned long size)
{
unsigned long ofs, idx;
static char ascii[ROWLEN + 1];
html("<table summary='blob content' class='bin-blob'>\n");
html("<tr><th>ofs</th><th>hex dump</th><th>ascii</th></tr>");
for (ofs = 0; ofs < size; ofs += ROWLEN, buf += ROWLEN) {