author | Lars Hjemli <hjemli@gmail.com> | 2009-03-15 08:06:20 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2009-03-15 08:06:20 (UTC) |
commit | 780d2d98598e621d12c7b23d4c68b5ddc7019838 (patch) (unidiff) | |
tree | ab520cb674fd07ab265693ba6f89126e7c0f823f /ui-tree.c | |
parent | 942a4c200168e110ec009c3260dc5f5f050de325 (diff) | |
parent | 6fddad7251021b307c8a3f70fdd2aa04c3f74eaa (diff) | |
download | cgit-780d2d98598e621d12c7b23d4c68b5ddc7019838.zip cgit-780d2d98598e621d12c7b23d4c68b5ddc7019838.tar.gz cgit-780d2d98598e621d12c7b23d4c68b5ddc7019838.tar.bz2 |
Merge branch 'stable'
-rw-r--r-- | ui-tree.c | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -16,29 +16,32 @@ 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(char *buf, unsigned long size) |
19 | { | 19 | { |
20 | unsigned long lineno, idx; | 20 | unsigned long lineno, idx; |
21 | const char *numberfmt = | 21 | const char *numberfmt = |
22 | "<a class='no' id='n%1$d' name='n%1$d' href='#n%1$d'>%1$d</a>\n"; | 22 | "<a class='no' id='n%1$d' name='n%1$d' href='#n%1$d'>%1$d</a>\n"; |
23 | 23 | ||
24 | html("<table summary='blob content' class='blob'>\n"); | 24 | html("<table summary='blob content' class='blob'>\n"); |
25 | html("<tr><td class='linenumbers'><pre>"); | 25 | html("<tr><td class='linenumbers'><pre>"); |
26 | idx = 0; | 26 | idx = 0; |
27 | lineno = 0; | 27 | lineno = 0; |
28 | htmlf(numberfmt, ++lineno); | 28 | |
29 | while(idx < size - 1) { // skip absolute last newline | 29 | if (size) { |
30 | if (buf[idx] == '\n') | 30 | htmlf(numberfmt, ++lineno); |
31 | htmlf(numberfmt, ++lineno); | 31 | while(idx < size - 1) { // skip absolute last newline |
32 | idx++; | 32 | if (buf[idx] == '\n') |
33 | htmlf(numberfmt, ++lineno); | ||
34 | idx++; | ||
35 | } | ||
33 | } | 36 | } |
34 | html("</pre></td>\n"); | 37 | html("</pre></td>\n"); |
35 | html("<td class='lines'><pre><code>"); | 38 | html("<td class='lines'><pre><code>"); |
36 | html_txt(buf); | 39 | html_txt(buf); |
37 | html("</code></pre></td></tr></table>\n"); | 40 | html("</code></pre></td></tr></table>\n"); |
38 | } | 41 | } |
39 | 42 | ||
40 | #define ROWLEN 32 | 43 | #define ROWLEN 32 |
41 | 44 | ||
42 | static void print_binary_buffer(char *buf, unsigned long size) | 45 | static void print_binary_buffer(char *buf, unsigned long size) |
43 | { | 46 | { |
44 | unsigned long ofs, idx; | 47 | unsigned long ofs, idx; |