diff options
author | Ed Morley <emorley@mozilla.com> | 2015-02-22 23:27:05 +0100 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2015-02-22 23:27:05 +0100 |
commit | 06b9a3ec0c8c396b083d754797e9d81b5c469e9d (patch) | |
tree | 50acb38a03d71679c2b84bc68c52ed64234cc6cc /template | |
parent | 3978f0c73178259d1dc6cf3e8625f3ec4dbfcb05 (diff) | |
download | bugzilla-06b9a3ec0c8c396b083d754797e9d81b5c469e9d.tar.gz bugzilla-06b9a3ec0c8c396b083d754797e9d81b5c469e9d.tar.xz |
Bug 1102364: Add microdata to HTML bugmail so GMail can display a "View bug" button
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/email/bugmail.html.tmpl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/template/en/default/email/bugmail.html.tmpl b/template/en/default/email/bugmail.html.tmpl index 2cd9318c1..65b449232 100644 --- a/template/en/default/email/bugmail.html.tmpl +++ b/template/en/default/email/bugmail.html.tmpl @@ -28,9 +28,11 @@ <body> [% PROCESS generate_diffs %] <p> + [% SET comment_anchor = '' %] [% FOREACH comment = new_comments.reverse %] <div> [% IF comment.count %] + [% comment_anchor = "#c$comment.count" %] <b>[% "Comment # ${comment.count}" FILTER bug_link(bug, {comment_num => comment.count, full_url => 1, user => to_user}) FILTER none %] on [% "$terms.bug $bug.id" FILTER bug_link(bug, { full_url => 1, user => to_user }) FILTER none %] @@ -70,6 +72,13 @@ [% END %] [% END %] </ul> + <div itemscope itemtype="http://schema.org/EmailMessage"> + <div itemprop="action" itemscope itemtype="http://schema.org/ViewAction"> + <link itemprop="url" href="[% urlbase FILTER html %]show_bug.cgi?id=[% "$bug.id$comment_anchor" FILTER uri %]"/> + <meta itemprop="name" content="View [% terms.bug %]"/> + </div> + <meta itemprop="description" content="[% terms.Bugzilla %] [%+ terms.bug %] update notification"/> + </div> </body> </html> |