diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2012-08-01 21:46:01 +0200 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2012-08-01 21:46:01 +0200 |
commit | 8be9a1d8b3764e5edc1bf8445b3e7bde5392e23d (patch) | |
tree | e97840381f79639dc9a22d20d91fe154f546f952 /template/en/default | |
parent | a45e86a994221a2feff4cfeef8f9020671f012eb (diff) | |
parent | f6d6091eadb373ed11ed67ddf30821698c2cec9f (diff) | |
download | bugzilla-8be9a1d8b3764e5edc1bf8445b3e7bde5392e23d.tar.gz bugzilla-8be9a1d8b3764e5edc1bf8445b3e7bde5392e23d.tar.xz |
merged with bugzilla/4.2
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/email/bugmail.html.tmpl | 21 | ||||
-rw-r--r-- | template/en/default/pages/release-notes.html.tmpl | 42 |
2 files changed, 53 insertions, 10 deletions
diff --git a/template/en/default/email/bugmail.html.tmpl b/template/en/default/email/bugmail.html.tmpl index 92174fb3b..3d1c291a2 100644 --- a/template/en/default/email/bugmail.html.tmpl +++ b/template/en/default/email/bugmail.html.tmpl @@ -31,12 +31,12 @@ [% FOREACH comment = new_comments.reverse %] <div> [% IF comment.count %] - <b>[% "Comment # ${comment.count}" FILTER bug_link( bug, - {comment_num => comment.count, full_url => 1}) FILTER none %] - on [% "$terms.bug $bug.id" FILTER bug_link( bug, { full_url => 1 }) FILTER none %] + <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 %] from [% INCLUDE global/user.html.tmpl who = comment.author %]</b> [% END %] - <pre>[% comment.body_full({ wrap => 1 }) FILTER quoteUrls(bug, comment) %]</pre> + <pre>[% comment.body_full({ wrap => 1 }) FILTER quoteUrls(bug, comment, to_user) %]</pre> </div> [% END %] </p> @@ -84,13 +84,14 @@ [% SET in_table = 0 %] [% END %] [% IF change.blocker %] - [% "${terms.Bug} ${bug.id}" FILTER bug_link(bug, full_url => 1) FILTER none %] depends - on [% "${terms.bug} ${change.blocker.id}" - FILTER bug_link(change.blocker, full_url => 1) FILTER none %], + [% "${terms.Bug} ${bug.id}" FILTER bug_link(bug, {full_url => 1, user => to_user}) FILTER none %] + depends on + [%+ "${terms.bug} ${change.blocker.id}" + FILTER bug_link(change.blocker, {full_url => 1, user => to_user}) FILTER none %], which changed state. [% ELSE %] - [% INCLUDE global/user.html.tmpl who = change.who %] - changed [% "${terms.Bug} ${bug.id}" FILTER bug_link(bug, full_url => 1) FILTER none %] + [% INCLUDE global/user.html.tmpl who = change.who %] changed + [%+ "${terms.bug} ${bug.id}" FILTER bug_link(bug, {full_url => 1, user => to_user}) FILTER none %] [% END %] <br> [% IF in_table == 0 %] @@ -114,7 +115,7 @@ <th>[% field_label FILTER html %]</th> <td> [% IF change.field_name == "bug_id" %] - [% new_value FILTER bug_link(bug, full_url => 1) FILTER none %] + [% new_value FILTER bug_link(bug, {full_url => 1, user => to_user}) FILTER none %] [% ELSE %] [% new_value FILTER html %] [% END %] diff --git a/template/en/default/pages/release-notes.html.tmpl b/template/en/default/pages/release-notes.html.tmpl index 3cba64406..11c5d5460 100644 --- a/template/en/default/pages/release-notes.html.tmpl +++ b/template/en/default/pages/release-notes.html.tmpl @@ -53,6 +53,48 @@ <h2 id="v42_point">Updates in this 4.2.x Release</h2> +<h3>4.2.2</h3> + +<p>This release fixes two security issues. See the + <a href="http://www.bugzilla.org/security/3.6.9/">Security Advisory</a> + for details.</p> + +<p>In addition, the following important fixes/changes have been made in this + release:</p> + +<ul> + <li>A regression introduced in [% terms.Bugzilla %] 4.0 caused some login + names to be ignored when entered in the CC list of [% terms.bugs %]. + (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=756314">[% terms.Bug %] 756314</a>)</li> + <li>Some queries could trigger an invalid SQL query if strings entered by + the user contained leading or trailing whitespaces. + (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=760075">[% terms.Bug %] 760075</a>)</li> + <li>The auto-completion form for keywords no longer automatically selects + the first keyword in the list when the field is empty. + (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=764517">[% terms.Bug %] 764517</a>)</li> + <li>A regression in [% terms.Bugzilla %] 4.2 prevented classifications + from being used in graphical and tabular reports in the "Multiple Tables" + field. + (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=753688">[% terms.Bug %] 753688</a>)</li> + <li>Attachments created by the <kbd>email_in.pl</kbd> script were associated + to the wrong comment. + (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=762785">[% terms.Bug %] 762785</a>)</li> + <li>Very long dependency lists can now be viewed correctly. + (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=762783">[% terms.Bug %] 762783</a>)</li> + <li>Keywords are now correctly escaped in the auto-completion form to prevent + any XSS abuse. + (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=754561">[% terms.Bug %] 754561</a>)</li> + <li>A regression introduced in [% terms.Bugzilla %] 4.0rc2 when fixing + CVE-2011-0046 caused the "Un-forget the search" link to not work correctly + anymore when restoring a deleted saved search, because this link was + lacking a valid token. + (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=768870">[% terms.Bug %] 768870</a>)</li> + <li>Two minor CSRF vulnerabilities have been fixed which could let an attacker + alter your default search criteria in the Advanced Search page. + (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=754672">[% terms.Bugs %] 754672</a> + and <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=754673">754673</a>)</li> +</ul> + <h3>4.2.1</h3> <p>This release fixes two security issues. See the |