summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--ui-commit.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/ui-commit.c b/ui-commit.c
index 2d36015..e9de411 100644
--- a/ui-commit.c
+++ b/ui-commit.c
@@ -45,13 +45,19 @@ void cgit_print_commit(const char *hex)
45 info = cgit_parse_commit(commit); 45 info = cgit_parse_commit(commit);
46 46
47 html("<table class='commit-info'>\n"); 47 html("<table class='commit-info'>\n");
48 html("<tr><th>author</th><td colspan='2'>"); 48 html("<tr><th>author</th><td>");
49 html_txt(info->author); 49 html_txt(info->author);
50 html(" ");
51 html_txt(info->author_email);
52 html("</td><td class='right'>");
53 cgit_print_date(info->author_date);
50 html("</td></tr>\n"); 54 html("</td></tr>\n");
51 html("<tr><th>committer</th><td>"); 55 html("<tr><th>committer</th><td>");
52 html_txt(info->committer); 56 html_txt(info->committer);
57 html(" ");
58 html_txt(info->committer_email);
53 html("</td><td class='right'>"); 59 html("</td><td class='right'>");
54 cgit_print_date(commit->date); 60 cgit_print_date(info->committer_date);
55 html("</td></tr>\n"); 61 html("</td></tr>\n");
56 html("<tr><th>tree</th><td colspan='2' class='sha1'><a href='"); 62 html("<tr><th>tree</th><td colspan='2' class='sha1'><a href='");
57 html_attr(cgit_pageurl(cgit_query_repo, "tree", fmt("id=%s", sha1_to_hex(commit->tree->object.sha1)))); 63 html_attr(cgit_pageurl(cgit_query_repo, "tree", fmt("id=%s", sha1_to_hex(commit->tree->object.sha1))));