diff options
author | Lars Hjemli | 2008-11-29 19:11:26 +0100 |
---|---|---|
committer | Lars Hjemli | 2008-11-30 13:01:44 +0100 |
commit | ab67164d6217fcda5ef3e07aefa3dd6eee6b65a3 (patch) | |
tree | 1c5430d46e9edf9306178967266c6e6373f06b31 /ui-log.c | |
parent | 951f550b60befeacd7334aebd64c891e72be5ac4 (diff) | |
download | cgit-ab67164d6217fcda5ef3e07aefa3dd6eee6b65a3.tar.gz cgit-ab67164d6217fcda5ef3e07aefa3dd6eee6b65a3.tar.bz2 cgit-ab67164d6217fcda5ef3e07aefa3dd6eee6b65a3.zip |
ui-log: use css to make full-log prettier
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-log.c')
-rw-r--r-- | ui-log.c | 14 |
1 files changed, 6 insertions, 8 deletions
@@ -38,19 +38,17 @@ void print_commit(struct commit *commit) | |||
38 | int cols = 2; | 38 | int cols = 2; |
39 | 39 | ||
40 | info = cgit_parse_commit(commit); | 40 | info = cgit_parse_commit(commit); |
41 | html("<tr><td>"); | 41 | htmlf("<tr%s><td>", |
42 | ctx.qry.showmsg ? " class='logheader'" : ""); | ||
42 | tmp = fmt("id=%s", sha1_to_hex(commit->object.sha1)); | 43 | tmp = fmt("id=%s", sha1_to_hex(commit->object.sha1)); |
43 | tmp = cgit_pageurl(ctx.repo->url, "commit", tmp); | 44 | tmp = cgit_pageurl(ctx.repo->url, "commit", tmp); |
44 | html_link_open(tmp, NULL, NULL); | 45 | html_link_open(tmp, NULL, NULL); |
45 | cgit_print_age(commit->date, TM_WEEK * 2, FMT_SHORTDATE); | 46 | cgit_print_age(commit->date, TM_WEEK * 2, FMT_SHORTDATE); |
46 | html_link_close(); | 47 | html_link_close(); |
47 | html("</td><td>"); | 48 | htmlf("</td><td%s>", |
48 | if (ctx.qry.showmsg) | 49 | ctx.qry.showmsg ? " class='logsubject'" : ""); |
49 | html("<u>"); | ||
50 | cgit_commit_link(info->subject, NULL, NULL, ctx.qry.head, | 50 | cgit_commit_link(info->subject, NULL, NULL, ctx.qry.head, |
51 | sha1_to_hex(commit->object.sha1)); | 51 | sha1_to_hex(commit->object.sha1)); |
52 | if (ctx.qry.showmsg) | ||
53 | html("</u>"); | ||
54 | html("</td><td>"); | 52 | html("</td><td>"); |
55 | html_txt(info->author); | 53 | html_txt(info->author); |
56 | if (ctx.repo->enable_log_filecount) { | 54 | if (ctx.repo->enable_log_filecount) { |
@@ -72,10 +70,10 @@ void print_commit(struct commit *commit) | |||
72 | if (ctx.repo->enable_log_linecount) | 70 | if (ctx.repo->enable_log_linecount) |
73 | cols++; | 71 | cols++; |
74 | } | 72 | } |
75 | htmlf("<tr class='nohover'><td></td><td colspan='%d'><div class='commit-msg'>", | 73 | htmlf("<tr class='nohover'><td/><td colspan='%d' class='logmsg'>", |
76 | cols); | 74 | cols); |
77 | html_txt(info->msg); | 75 | html_txt(info->msg); |
78 | html("</div><br/></td></tr>\n"); | 76 | html("</td></tr>\n"); |
79 | } | 77 | } |
80 | cgit_free_commitinfo(info); | 78 | cgit_free_commitinfo(info); |
81 | } | 79 | } |