|
diff --git a/ui-tree.c b/ui-tree.c index 1037c82..c5d64ff 100644 --- a/ ui-tree.c+++ b/ ui-tree.c |
|
@@ -83,26 +83,26 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen, |
83 | html_txt(name); |
83 | html_txt(name); |
84 | html("</a>"); |
84 | html("</a>"); |
85 | } else if (S_ISDIR(mode)) { |
85 | } else if (S_ISDIR(mode)) { |
86 | cgit_tree_link(name, NULL, "ls-dir", cgit_query_head, |
86 | cgit_tree_link(name, NULL, "ls-dir", cgit_query_head, |
87 | curr_rev, fullpath); |
87 | curr_rev, fullpath); |
88 | } else { |
88 | } else { |
89 | cgit_tree_link(name, NULL, "ls-blob", cgit_query_head, |
89 | cgit_tree_link(name, NULL, "ls-blob", cgit_query_head, |
90 | curr_rev, fullpath); |
90 | curr_rev, fullpath); |
91 | } |
91 | } |
92 | htmlf("</td><td class='ls-size'>%li</td>", size); |
92 | htmlf("</td><td class='ls-size'>%li</td>", size); |
93 | |
93 | |
94 | html("<td>"); |
94 | html("<td>"); |
95 | cgit_log_link("L", "Log", "button", cgit_query_head, curr_rev, |
95 | cgit_log_link("log", NULL, "button", cgit_query_head, curr_rev, |
96 | fullpath); |
96 | fullpath, 0); |
97 | html("</td></tr>\n"); |
97 | html("</td></tr>\n"); |
98 | free(name); |
98 | free(name); |
99 | return 0; |
99 | return 0; |
100 | } |
100 | } |
101 | |
101 | |
102 | static void ls_head() |
102 | static void ls_head() |
103 | { |
103 | { |
104 | html("<table class='list'>\n"); |
104 | html("<table class='list'>\n"); |
105 | html("<tr class='nohover'>"); |
105 | html("<tr class='nohover'>"); |
106 | html("<th class='left'>Mode</th>"); |
106 | html("<th class='left'>Mode</th>"); |
107 | html("<th class='left'>Name</th>"); |
107 | html("<th class='left'>Name</th>"); |
108 | html("<th class='right'>Size</th>"); |
108 | html("<th class='right'>Size</th>"); |
|