summaryrefslogtreecommitdiffabout
path: root/ui-commit.c
authorLars Hjemli <hjemli@gmail.com>2006-12-16 13:28:26 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2006-12-16 13:28:26 (UTC)
commit8960d267ed2029ad6695488614c015d506de465c (patch) (unidiff)
treefbcc401d0f96fa01ccf57990e54444ed1d4c0777 /ui-commit.c
parent77078ba716ccdfdc954741355dd6a17632db961b (diff)
downloadcgit-8960d267ed2029ad6695488614c015d506de465c.zip
cgit-8960d267ed2029ad6695488614c015d506de465c.tar.gz
cgit-8960d267ed2029ad6695488614c015d506de465c.tar.bz2
Show emails and timestamps in ui-commit.c
Use the extra info found in commitinfo struct when generating commit view. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-commit.c') (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
@@ -47,4 +47,8 @@ void cgit_print_commit(const char *hex)
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");
@@ -52,4 +56,6 @@ void cgit_print_commit(const char *hex)
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");