summaryrefslogtreecommitdiffabout
path: root/ui-commit.c
Unidiff
Diffstat (limited to 'ui-commit.c') (more/less context) (ignore whitespace changes)
-rw-r--r--ui-commit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-commit.c b/ui-commit.c
index 45af450..2b4f677 100644
--- a/ui-commit.c
+++ b/ui-commit.c
@@ -15,49 +15,49 @@
15void cgit_print_commit(char *hex, const char *prefix) 15void cgit_print_commit(char *hex, const char *prefix)
16{ 16{
17 struct commit *commit, *parent; 17 struct commit *commit, *parent;
18 struct commitinfo *info, *parent_info; 18 struct commitinfo *info, *parent_info;
19 struct commit_list *p; 19 struct commit_list *p;
20 struct strbuf notes = STRBUF_INIT; 20 struct strbuf notes = STRBUF_INIT;
21 unsigned char sha1[20]; 21 unsigned char sha1[20];
22 char *tmp, *tmp2; 22 char *tmp, *tmp2;
23 int parents = 0; 23 int parents = 0;
24 24
25 if (!hex) 25 if (!hex)
26 hex = ctx.qry.head; 26 hex = ctx.qry.head;
27 27
28 if (get_sha1(hex, sha1)) { 28 if (get_sha1(hex, sha1)) {
29 cgit_print_error(fmt("Bad object id: %s", hex)); 29 cgit_print_error(fmt("Bad object id: %s", hex));
30 return; 30 return;
31 } 31 }
32 commit = lookup_commit_reference(sha1); 32 commit = lookup_commit_reference(sha1);
33 if (!commit) { 33 if (!commit) {
34 cgit_print_error(fmt("Bad commit reference: %s", hex)); 34 cgit_print_error(fmt("Bad commit reference: %s", hex));
35 return; 35 return;
36 } 36 }
37 info = cgit_parse_commit(commit); 37 info = cgit_parse_commit(commit);
38 38
39 get_commit_notes(commit, &notes, PAGE_ENCODING, 0); 39 format_note(NULL, sha1, &notes, PAGE_ENCODING, 0);
40 40
41 load_ref_decorations(DECORATE_FULL_REFS); 41 load_ref_decorations(DECORATE_FULL_REFS);
42 42
43 html("<table summary='commit info' class='commit-info'>\n"); 43 html("<table summary='commit info' class='commit-info'>\n");
44 html("<tr><th>author</th><td>"); 44 html("<tr><th>author</th><td>");
45 html_txt(info->author); 45 html_txt(info->author);
46 if (!ctx.cfg.noplainemail) { 46 if (!ctx.cfg.noplainemail) {
47 html(" "); 47 html(" ");
48 html_txt(info->author_email); 48 html_txt(info->author_email);
49 } 49 }
50 html("</td><td class='right'>"); 50 html("</td><td class='right'>");
51 cgit_print_date(info->author_date, FMT_LONGDATE, ctx.cfg.local_time); 51 cgit_print_date(info->author_date, FMT_LONGDATE, ctx.cfg.local_time);
52 html("</td></tr>\n"); 52 html("</td></tr>\n");
53 html("<tr><th>committer</th><td>"); 53 html("<tr><th>committer</th><td>");
54 html_txt(info->committer); 54 html_txt(info->committer);
55 if (!ctx.cfg.noplainemail) { 55 if (!ctx.cfg.noplainemail) {
56 html(" "); 56 html(" ");
57 html_txt(info->committer_email); 57 html_txt(info->committer_email);
58 } 58 }
59 html("</td><td class='right'>"); 59 html("</td><td class='right'>");
60 cgit_print_date(info->committer_date, FMT_LONGDATE, ctx.cfg.local_time); 60 cgit_print_date(info->committer_date, FMT_LONGDATE, ctx.cfg.local_time);
61 html("</td></tr>\n"); 61 html("</td></tr>\n");
62 html("<tr><th>commit</th><td colspan='2' class='sha1'>"); 62 html("<tr><th>commit</th><td colspan='2' class='sha1'>");
63 tmp = sha1_to_hex(commit->object.sha1); 63 tmp = sha1_to_hex(commit->object.sha1);