diff options
author | Lars Hjemli <hjemli@gmail.com> | 2007-06-17 13:17:00 +0200 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-06-17 13:17:00 +0200 |
commit | 426032f767763b46f462de51d1ebded34f671d79 (patch) | |
tree | c94684f2d5f6c4ea500ebc60a36a7d74ff76cadb /ui-tree.c | |
parent | 486c87ec2906c445ca505c877720d56e02aed784 (diff) | |
download | cgit-426032f767763b46f462de51d1ebded34f671d79.tar.gz cgit-426032f767763b46f462de51d1ebded34f671d79.tar.bz2 cgit-426032f767763b46f462de51d1ebded34f671d79.zip |
ui-tree: html/css cleanup
Various fixes to make html and css more "clean". The only visible change
is the link to file/directory log: it is now printed as "L" (for Log)
instead of "H" (for History).
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-tree.c')
-rw-r--r-- | ui-tree.c | 18 |
1 files changed, 8 insertions, 10 deletions
@@ -72,11 +72,11 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen, return 0; } - html("<tr><td class='filemode'>"); + html("<tr><td class='ls-mode'>"); html_filemode(mode); - html("</td><td "); + html("</td><td>"); if (S_ISDIRLNK(mode)) { - htmlf("class='ls-mod'><a href='"); + htmlf("<a class='ls-mod' href='"); html_attr(fmt(cgit_repo->module_link, name, sha1_to_hex(sha1))); @@ -84,23 +84,21 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen, html_txt(name); html("</a>"); } else if (S_ISDIR(mode)) { - html("class='ls-dir'>"); - cgit_tree_link(name, NULL, NULL, cgit_query_head, + cgit_tree_link(name, NULL, "ls-dir", cgit_query_head, curr_rev, fullpath); } else { - html("class='ls-blob'>"); - cgit_tree_link(name, NULL, NULL, cgit_query_head, + cgit_tree_link(name, NULL, "ls-blob", cgit_query_head, curr_rev, fullpath); } - htmlf("</td><td class='filesize'>%li</td>", size); + htmlf("</td><td class='ls-size'>%li</td>", size); - html("<td class='links'><a href='"); + html("<td><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("' class='button'>H</a></td>"); + html("' title='Log' class='button'>L</a></td>"); html("</tr>\n"); free(name); return 0; |