From 426032f767763b46f462de51d1ebded34f671d79 Mon Sep 17 00:00:00 2001 From: Lars Hjemli Date: Sun, 17 Jun 2007 13:17:00 +0200 Subject: 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 --- ui-tree.c | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'ui-tree.c') diff --git a/ui-tree.c b/ui-tree.c index 3b82374..d503bee 100644 --- a/ui-tree.c +++ b/ui-tree.c @@ -72,11 +72,11 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen, return 0; } - html(""); + html(""); html_filemode(mode); - html(""); if (S_ISDIRLNK(mode)) { - htmlf("class='ls-mod'>"); - 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("%li", size); + htmlf("%li", size); - html("H"); + html("' title='Log' class='button'>L"); html("\n"); free(name); return 0; -- cgit v1.2.3-24-g4f1b