|
diff --git a/ui-log.c b/ui-log.c index 6d5509b..9d0ec02 100644 --- a/ ui-log.c+++ b/ ui-log.c |
|
@@ -29,17 +29,17 @@ void print_commit(struct commit *commit) |
29 | struct tm *time; |
29 | struct tm *time; |
30 | |
30 | |
31 | info = cgit_parse_commit(commit); |
31 | info = cgit_parse_commit(commit); |
32 | time = gmtime(&commit->date); |
32 | time = gmtime(&commit->date); |
33 | html("<tr><td>"); |
33 | html("<tr><td>"); |
34 | strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M", time); |
34 | strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M", time); |
35 | html_txt(buf); |
35 | html_txt(buf); |
36 | html("</td><td>"); |
36 | html("</td><td>"); |
37 | char *qry = fmt("id=%s", sha1_to_hex(commit->object.sha1)); |
37 | char *qry = fmt("h=%s", sha1_to_hex(commit->object.sha1)); |
38 | char *url = cgit_pageurl(cgit_query_repo, "commit", qry); |
38 | char *url = cgit_pageurl(cgit_query_repo, "commit", qry); |
39 | html_link_open(url, NULL, NULL); |
39 | html_link_open(url, NULL, NULL); |
40 | html_ntxt(cgit_max_msg_len, info->subject); |
40 | html_ntxt(cgit_max_msg_len, info->subject); |
41 | html_link_close(); |
41 | html_link_close(); |
42 | files = 0; |
42 | files = 0; |
43 | lines = 0; |
43 | lines = 0; |
44 | cgit_diff_commit(commit, inspect_files); |
44 | cgit_diff_commit(commit, inspect_files); |
45 | html("</td><td class='right'>"); |
45 | html("</td><td class='right'>"); |
@@ -116,9 +116,8 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path) |
116 | if ((commit = get_revision(&rev)) != NULL) { |
116 | if ((commit = get_revision(&rev)) != NULL) { |
117 | html(" <a href='"); |
117 | html(" <a href='"); |
118 | html(cgit_pageurl(cgit_query_repo, "log", |
118 | html(cgit_pageurl(cgit_query_repo, "log", |
119 | fmt("h=%s&ofs=%d", tip, ofs+cnt))); |
119 | fmt("h=%s&ofs=%d", tip, ofs+cnt))); |
120 | html("'>[next]</a> "); |
120 | html("'>[next]</a> "); |
121 | } |
121 | } |
122 | html("</div>"); |
122 | html("</div>"); |
123 | } |
123 | } |
124 | |
| |
|