|
diff --git a/ui-tree.c b/ui-tree.c index db63e13..032a966 100644 --- a/ ui-tree.c+++ b/ ui-tree.c |
|
@@ -60,26 +60,36 @@ static int print_entry(const unsigned char *sha1, const char *base, |
60 | cgit_query_path ? cgit_query_path : "", |
60 | cgit_query_path ? cgit_query_path : "", |
61 | pathname))); |
61 | pathname))); |
62 | html("'>history</a></td>"); |
62 | html("'>history</a></td>"); |
63 | html("</tr>\n"); |
63 | html("</tr>\n"); |
64 | free(name); |
64 | free(name); |
65 | return 0; |
65 | return 0; |
66 | } |
66 | } |
67 | |
67 | |
68 | void cgit_print_tree(const char *rev, const char *hex, char *path) |
68 | void cgit_print_tree(const char *rev, const char *hex, char *path) |
69 | { |
69 | { |
70 | struct tree *tree; |
70 | struct tree *tree; |
71 | unsigned char sha1[20]; |
71 | unsigned char sha1[20]; |
| |
72 | struct commit *commit; |
72 | |
73 | |
73 | curr_rev = xstrdup(rev); |
74 | curr_rev = xstrdup(rev); |
| |
75 | get_sha1(rev, sha1); |
| |
76 | commit = lookup_commit_reference(sha1); |
| |
77 | if (!commit || parse_commit(commit)) { |
| |
78 | cgit_print_error(fmt("Invalid head: %s", rev)); |
| |
79 | return; |
| |
80 | } |
| |
81 | if (!hex) |
| |
82 | hex = sha1_to_hex(commit->tree->object.sha1); |
| |
83 | |
74 | if (get_sha1_hex(hex, sha1)) { |
84 | if (get_sha1_hex(hex, sha1)) { |
75 | cgit_print_error(fmt("Invalid object id: %s", hex)); |
85 | cgit_print_error(fmt("Invalid object id: %s", hex)); |
76 | return; |
86 | return; |
77 | } |
87 | } |
78 | tree = parse_tree_indirect(sha1); |
88 | tree = parse_tree_indirect(sha1); |
79 | if (!tree) { |
89 | if (!tree) { |
80 | cgit_print_error(fmt("Not a tree object: %s", hex)); |
90 | cgit_print_error(fmt("Not a tree object: %s", hex)); |
81 | return; |
91 | return; |
82 | } |
92 | } |
83 | |
93 | |
84 | html_txt(path); |
94 | html_txt(path); |
85 | html("<table class='list'>\n"); |
95 | html("<table class='list'>\n"); |
|