author | Michael Krelin <hacker@klever.net> | 2007-07-21 17:51:47 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-07-21 17:51:47 (UTC) |
commit | d6b01dac856efda565d4085e77826fd9ac83348a (patch) (unidiff) | |
tree | a197bfddc04f9d0b214e71db66447a7efdf54cf5 /ui-tree.c | |
parent | bbd4a14456789a2114d8bb0f7ba245af3605bb49 (diff) | |
download | cgit-d6b01dac856efda565d4085e77826fd9ac83348a.zip cgit-d6b01dac856efda565d4085e77826fd9ac83348a.tar.gz cgit-d6b01dac856efda565d4085e77826fd9ac83348a.tar.bz2 |
link raw blob from tree file view
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | ui-tree.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -19,32 +19,36 @@ static void print_object(const unsigned char *sha1, char *path) | |||
19 | unsigned long size, lineno, start, idx; | 19 | unsigned long size, lineno, start, idx; |
20 | 20 | ||
21 | type = sha1_object_info(sha1, &size); | 21 | type = sha1_object_info(sha1, &size); |
22 | if (type == OBJ_BAD) { | 22 | if (type == OBJ_BAD) { |
23 | cgit_print_error(fmt("Bad object name: %s", | 23 | cgit_print_error(fmt("Bad object name: %s", |
24 | sha1_to_hex(sha1))); | 24 | sha1_to_hex(sha1))); |
25 | return; | 25 | return; |
26 | } | 26 | } |
27 | 27 | ||
28 | buf = read_sha1_file(sha1, &type, &size); | 28 | buf = read_sha1_file(sha1, &type, &size); |
29 | if (!buf) { | 29 | if (!buf) { |
30 | cgit_print_error(fmt("Error reading object %s", | 30 | cgit_print_error(fmt("Error reading object %s", |
31 | sha1_to_hex(sha1))); | 31 | sha1_to_hex(sha1))); |
32 | return; | 32 | return; |
33 | } | 33 | } |
34 | 34 | ||
35 | html(" blob: <a href='"); | ||
36 | html_attr(cgit_pageurl(cgit_query_repo, "blob", fmt("id=%s", sha1_to_hex(sha1)))); | ||
37 | htmlf("'>%s</a>",sha1_to_hex(sha1)); | ||
38 | |||
35 | html("<table class='blob'>\n"); | 39 | html("<table class='blob'>\n"); |
36 | idx = 0; | 40 | idx = 0; |
37 | start = 0; | 41 | start = 0; |
38 | lineno = 0; | 42 | lineno = 0; |
39 | while(idx < size) { | 43 | while(idx < size) { |
40 | if (buf[idx] == '\n') { | 44 | if (buf[idx] == '\n') { |
41 | buf[idx] = '\0'; | 45 | buf[idx] = '\0'; |
42 | htmlf("<tr><td class='no'>%d</td><td class='txt'>", | 46 | htmlf("<tr><td class='no'>%d</td><td class='txt'>", |
43 | ++lineno); | 47 | ++lineno); |
44 | html_txt(buf + start); | 48 | html_txt(buf + start); |
45 | html("</td></tr>\n"); | 49 | html("</td></tr>\n"); |
46 | start = idx + 1; | 50 | start = idx + 1; |
47 | } | 51 | } |
48 | idx++; | 52 | idx++; |
49 | } | 53 | } |
50 | html("</table>\n"); | 54 | html("</table>\n"); |