[%# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
#%]
[% PROCESS "global/reason-descs.none.tmpl" %]
[% isnew = bug.lastdiffed ? 0 : 1 %]
[% Hook.process('start') %]
[% PROCESS generate_diffs %]
[% SET comment_anchor = '' %]
[% FOREACH comment = new_comments.reverse %]
[% END %]
[% IF referenced_bugs.size %]
Referenced [% terms.Bugs %]:
[% FOREACH ref_bug = referenced_bugs %]
[[% "${terms.Bug} ${ref_bug.id}" FILTER bug_link(ref_bug, {full_url => 1, user => to_user}) FILTER none %]]
[% ref_bug.short_desc FILTER html %]
[% END %]
[% END %]
You are receiving this mail because:
[% FOREACH reason = reasons %]
[% IF reason_descs.$reason %]
[% reason_descs.$reason FILTER html %]
[% END %]
[% END %]
[% FOREACH reason = reasons_watch %]
[% IF watch_reason_descs.$reason %]
[% watch_reason_descs.$reason FILTER html %]
[% END %]
[% END %]
[%# Filtering of the URL param is not required & would break the URL when the comment anchor is set %]
[% BLOCK generate_diffs %]
[% SET in_table = 0 %]
[% class_name = isnew ? "bz_new_table" : "bz_diff_table" %]
[% last_changer = 0 %]
[% FOREACH change = diffs %]
[% IF !isnew && change.who.id != last_changer %]
[% last_changer = change.who.id %]
[% IF in_table == 1 %]
[% SET in_table = 0 %]
[% END %]
[% IF change.blocker %]
[% INCLUDE bug/link.html.tmpl bug = bug, link_text = "$terms.Bug $bug.id", full_url = 1, user = to_user %]
depends on
[%+ INCLUDE bug/link.html.tmpl bug = change.blocker, link_text = "$terms.bug $change.blocker.id",
full_url = 1, user = to_user %],
which changed state.
[% ELSE %]
[% INCLUDE global/user.html.tmpl user = to_user, who = change.who %] changed
[%+ INCLUDE bug/link.html.tmpl bug = bug, link_text = "$terms.bug $bug.id", full_url = 1, user = to_user %]
[% END %]
[% IF in_table == 0 %]
[% SET in_table = 1 %]
[% END %]
What
Removed
Added
[% END %]
[% PROCESS "email/bugmail-common.txt.tmpl" %]
[% IF in_table == 0 %]
[% SET in_table = 1 %]
[% END %]
[% IF isnew %]
[% field_label FILTER html %]
[% IF change.field_name == "bug_id" %]
[% INCLUDE bug/link.html.tmpl bug = bug, link_text = new_value, full_url = 1, user = to_user %]
[% ELSE %]
[% new_value FILTER html %]
[% END %]
[% ELSE %]
[% field_label FILTER html %]
[% IF old_value %]
[% old_value FILTER html %]
[% ELSE %]
[% END%]
[% IF new_value %]
[% new_value FILTER html %]
[% ELSE %]
[% END%]
[% END %]
[% END %]
[% '
' IF in_table %]
[% END %]