diff options
author | Jason A. Donenfeld <[email protected]> | 2014-01-13 16:24:40 +0100 |
---|---|---|
committer | Jason A. Donenfeld <[email protected]> | 2014-01-14 02:00:07 +0100 |
commit | 786609bd36c07b85dbf905fc8c36eba7132122d7 (patch) | |
tree | 03d3a49c01b89e7122bdde4ad088fc225a819e7b /ui-refs.c | |
parent | e942a1622bddf3338096393c3906c1adc871d198 (diff) |
filter: add page source to email filter
Since the email filter is called from lots of places, the script might
benefit from knowing the origin. That way it can modify its contents
and/or size depending.
Signed-off-by: Jason A. Donenfeld <[email protected]>
Diffstat (limited to 'ui-refs.c')
-rw-r--r-- | ui-refs.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -77,7 +77,7 @@ static int print_branch(struct refinfo *ref) if (ref->object->type == OBJ_COMMIT) { cgit_commit_link(info->subject, NULL, NULL, name, NULL, NULL, 0); html("</td><td>"); - cgit_open_filter(ctx.repo->email_filter, info->author_email); + cgit_open_filter(ctx.repo->email_filter, info->author_email, "refs"); html_txt(info->author); cgit_close_filter(ctx.repo->email_filter); html("</td><td colspan='2'>"); @@ -157,12 +157,12 @@ static int print_tag(struct refinfo *ref) html("</td><td>"); if (info) { if (info->tagger) { - cgit_open_filter(ctx.repo->email_filter, info->tagger_email); + cgit_open_filter(ctx.repo->email_filter, info->tagger_email, "refs"); html_txt(info->tagger); cgit_close_filter(ctx.repo->email_filter); } } else if (ref->object->type == OBJ_COMMIT) { - cgit_open_filter(ctx.repo->email_filter, ref->commit->author_email); + cgit_open_filter(ctx.repo->email_filter, ref->commit->author_email, "refs"); html_txt(ref->commit->author); cgit_close_filter(ctx.repo->email_filter); } |