Diffstat (limited to 'ui-tree.c')
| -rw-r--r-- | ui-tree.c | 18 |
1 files changed, 10 insertions, 8 deletions
@@ -72,11 +72,11 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen, return 0; } - html("<tr><td class='ls-mode'>"); + html("<tr><td class='filemode'>"); html_filemode(mode); - html("</td><td>"); + html("</td><td "); if (S_ISDIRLNK(mode)) { - htmlf("<a class='ls-mod' href='"); + htmlf("class='ls-mod'><a href='"); html_attr(fmt(cgit_repo->module_link, name, sha1_to_hex(sha1))); @@ -84,21 +84,23 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen, html_txt(name); html("</a>"); } else if (S_ISDIR(mode)) { - cgit_tree_link(name, NULL, "ls-dir", cgit_query_head, + html("class='ls-dir'>"); + cgit_tree_link(name, NULL, NULL, cgit_query_head, curr_rev, fullpath); } else { - cgit_tree_link(name, NULL, "ls-blob", cgit_query_head, + html("class='ls-blob'>"); + cgit_tree_link(name, NULL, NULL, cgit_query_head, curr_rev, fullpath); } - htmlf("</td><td class='ls-size'>%li</td>", size); + htmlf("</td><td class='filesize'>%li</td>", size); - html("<td><a href='"); + html("<td class='links'><a href='"); qry = fmt("h=%s&path=%s%s%s", curr_rev, cgit_query_path ? cgit_query_path : "", cgit_query_path ? "/" : "", pathname); url = cgit_pageurl(cgit_query_repo, "log", qry); html_attr(url); - html("' title='Log' class='button'>L</a></td>"); + html("' class='button'>H</a></td>"); html("</tr>\n"); free(name); return 0; |