diff options
Diffstat (limited to 'ui-commit.c')
-rw-r--r-- | ui-commit.c | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/ui-commit.c b/ui-commit.c index f654208..8916212 100644 --- a/ui-commit.c +++ b/ui-commit.c | |||
@@ -13,20 +13,18 @@ void cgit_print_commit(const char *hex) | |||
13 | struct commit *commit; | 13 | struct commit *commit; |
14 | struct commitinfo *info; | 14 | struct commitinfo *info; |
15 | struct commit_list *p; | 15 | struct commit_list *p; |
16 | |||
17 | unsigned char sha1[20]; | 16 | unsigned char sha1[20]; |
17 | char *query; | ||
18 | 18 | ||
19 | if (get_sha1(hex, sha1)) { | 19 | if (get_sha1(hex, sha1)) { |
20 | cgit_print_error(fmt("Bad object id: %s", hex)); | 20 | cgit_print_error(fmt("Bad object id: %s", hex)); |
21 | return; | 21 | return; |
22 | } | 22 | } |
23 | |||
24 | commit = lookup_commit_reference(sha1); | 23 | commit = lookup_commit_reference(sha1); |
25 | if (!commit) { | 24 | if (!commit) { |
26 | cgit_print_error(fmt("Bad commit reference: %s", hex)); | 25 | cgit_print_error(fmt("Bad commit reference: %s", hex)); |
27 | return; | 26 | return; |
28 | } | 27 | } |
29 | |||
30 | info = cgit_parse_commit(commit); | 28 | info = cgit_parse_commit(commit); |
31 | 29 | ||
32 | html("<table class='commit-info'>\n"); | 30 | html("<table class='commit-info'>\n"); |
@@ -45,12 +43,15 @@ void cgit_print_commit(const char *hex) | |||
45 | cgit_print_date(info->committer_date); | 43 | cgit_print_date(info->committer_date); |
46 | html("</td></tr>\n"); | 44 | html("</td></tr>\n"); |
47 | html("<tr><th>tree</th><td colspan='2' class='sha1'><a href='"); | 45 | html("<tr><th>tree</th><td colspan='2' class='sha1'><a href='"); |
48 | html_attr(cgit_pageurl(cgit_query_repo, "tree", fmt("id=%s", sha1_to_hex(commit->tree->object.sha1)))); | 46 | query = fmt("id=%s", sha1_to_hex(commit->tree->object.sha1)); |
47 | html_attr(cgit_pageurl(cgit_query_repo, "tree", query)); | ||
49 | htmlf("'>%s</a></td></tr>\n", sha1_to_hex(commit->tree->object.sha1)); | 48 | htmlf("'>%s</a></td></tr>\n", sha1_to_hex(commit->tree->object.sha1)); |
50 | 49 | for (p = commit->parents; p ; p = p->next) { | |
51 | for (p = commit->parents; p ; p = p->next) { | 50 | html("<tr><th>parent</th>" |
52 | html("<tr><th>parent</th><td colspan='2' class='sha1'><a href='"); | 51 | "<td colspan='2' class='sha1'>" |
53 | html_attr(cgit_pageurl(cgit_query_repo, "commit", fmt("id=%s", sha1_to_hex(p->item->object.sha1)))); | 52 | "<a href='"); |
53 | query = fmt("id=%s", sha1_to_hex(p->item->object.sha1)); | ||
54 | html_attr(cgit_pageurl(cgit_query_repo, "commit", query)); | ||
54 | htmlf("'>%s</a></td></tr>\n", | 55 | htmlf("'>%s</a></td></tr>\n", |
55 | sha1_to_hex(p->item->object.sha1)); | 56 | sha1_to_hex(p->item->object.sha1)); |
56 | } | 57 | } |