summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorEd Morley <emorley@mozilla.com>2015-02-22 23:27:05 +0100
committerDavid Lawrence <dkl@mozilla.com>2015-02-22 23:27:05 +0100
commit06b9a3ec0c8c396b083d754797e9d81b5c469e9d (patch)
tree50acb38a03d71679c2b84bc68c52ed64234cc6cc /extensions
parent3978f0c73178259d1dc6cf3e8625f3ec4dbfcb05 (diff)
downloadbugzilla-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 'extensions')
-rw-r--r--extensions/BMO/template/en/default/email/bugmail.html.tmpl10
1 files changed, 9 insertions, 1 deletions
diff --git a/extensions/BMO/template/en/default/email/bugmail.html.tmpl b/extensions/BMO/template/en/default/email/bugmail.html.tmpl
index 7a628ec7f..f66fee30c 100644
--- a/extensions/BMO/template/en/default/email/bugmail.html.tmpl
+++ b/extensions/BMO/template/en/default/email/bugmail.html.tmpl
@@ -35,11 +35,13 @@
[% PROCESS generate_diffs %]
[% END %]
+ [% SET comment_anchor = '' %]
[% IF new_comments.size %]
<div id="comments">
[% 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 }) FILTER none %]
@@ -110,7 +112,13 @@
[% END %]
</ul>
</div>
-
+ <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-headers@@
</body>
</html>