aboutsummaryrefslogtreecommitdiffstats
path: root/ui-commit.c
diff options
context:
space:
mode:
authorGravatar Jason A. Donenfeld <Jason@zx2c4.com>2014-01-13 12:04:52 (JST)
committerGravatar Jason A. Donenfeld <Jason@zx2c4.com>2014-01-14 10:00:07 (JST)
commita5e15537268410e268c7b26aa69d03b347c326c8 (patch)
tree77f42b7f03788d4741bfd60b49719fbc649181ff /ui-commit.c
parent800380dde797ae35d738a644acdae2fabb9a0d44 (diff)
downloadcgit-a5e15537268410e268c7b26aa69d03b347c326c8.zip
cgit-a5e15537268410e268c7b26aa69d03b347c326c8.tar.gz
filter: add support for email filter
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'ui-commit.c')
-rw-r--r--ui-commit.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ui-commit.c b/ui-commit.c
index 5ac79c0..bd14ef0 100644
--- a/ui-commit.c
+++ b/ui-commit.c
@@ -44,20 +44,24 @@ void cgit_print_commit(char *hex, const char *prefix)
44 cgit_print_diff_ctrls(); 44 cgit_print_diff_ctrls();
45 html("<table summary='commit info' class='commit-info'>\n"); 45 html("<table summary='commit info' class='commit-info'>\n");
46 html("<tr><th>author</th><td>"); 46 html("<tr><th>author</th><td>");
47 cgit_open_filter(ctx.repo->email_filter, info->author_email);
47 html_txt(info->author); 48 html_txt(info->author);
48 if (!ctx.cfg.noplainemail) { 49 if (!ctx.cfg.noplainemail) {
49 html(" "); 50 html(" ");
50 html_txt(info->author_email); 51 html_txt(info->author_email);
51 } 52 }
53 cgit_close_filter(ctx.repo->email_filter);
52 html("</td><td class='right'>"); 54 html("</td><td class='right'>");
53 cgit_print_date(info->author_date, FMT_LONGDATE, ctx.cfg.local_time); 55 cgit_print_date(info->author_date, FMT_LONGDATE, ctx.cfg.local_time);
54 html("</td></tr>\n"); 56 html("</td></tr>\n");
55 html("<tr><th>committer</th><td>"); 57 html("<tr><th>committer</th><td>");
58 cgit_open_filter(ctx.repo->email_filter, info->committer_email);
56 html_txt(info->committer); 59 html_txt(info->committer);
57 if (!ctx.cfg.noplainemail) { 60 if (!ctx.cfg.noplainemail) {
58 html(" "); 61 html(" ");
59 html_txt(info->committer_email); 62 html_txt(info->committer_email);
60 } 63 }
64 cgit_close_filter(ctx.repo->email_filter);
61 html("</td><td class='right'>"); 65 html("</td><td class='right'>");
62 cgit_print_date(info->committer_date, FMT_LONGDATE, ctx.cfg.local_time); 66 cgit_print_date(info->committer_date, FMT_LONGDATE, ctx.cfg.local_time);
63 html("</td></tr>\n"); 67 html("</td></tr>\n");