summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2010-07-23 00:46:02 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2010-07-23 00:46:02 +0200
commitddb5db354ac1b55ce99c9d0e977a2a63099f4c21 (patch)
tree644fe8ebb504af5d5e025ece6eb123a1094137c3 /template/en/default/admin
parent1ccdf14572251c8fe39cf2065fd3ca16da01e1a3 (diff)
downloadbugzilla-ddb5db354ac1b55ce99c9d0e977a2a63099f4c21.tar.gz
bugzilla-ddb5db354ac1b55ce99c9d0e977a2a63099f4c21.tar.xz
Bug 398701: Replace |FILTER url_quote| by |FILTER uri|
r/a=mkanat
Diffstat (limited to 'template/en/default/admin')
-rw-r--r--template/en/default/admin/classifications/edit.html.tmpl2
-rw-r--r--template/en/default/admin/classifications/select.html.tmpl6
-rw-r--r--template/en/default/admin/components/confirm-delete.html.tmpl4
-rw-r--r--template/en/default/admin/components/edit.html.tmpl8
-rw-r--r--template/en/default/admin/components/footer.html.tmpl6
-rw-r--r--template/en/default/admin/components/list.html.tmpl10
-rw-r--r--template/en/default/admin/custom_fields/edit.html.tmpl2
-rw-r--r--template/en/default/admin/fieldvalues/confirm-delete.html.tmpl14
-rw-r--r--template/en/default/admin/fieldvalues/footer.html.tmpl8
-rw-r--r--template/en/default/admin/fieldvalues/list.html.tmpl4
-rw-r--r--template/en/default/admin/groups/delete.html.tmpl8
-rw-r--r--template/en/default/admin/keywords/edit.html.tmpl2
-rw-r--r--template/en/default/admin/milestones/confirm-delete.html.tmpl4
-rw-r--r--template/en/default/admin/milestones/footer.html.tmpl10
-rw-r--r--template/en/default/admin/milestones/list.html.tmpl8
-rw-r--r--template/en/default/admin/params/editparams.html.tmpl2
-rw-r--r--template/en/default/admin/params/index.html.tmpl2
-rw-r--r--template/en/default/admin/products/confirm-delete.html.tmpl10
-rw-r--r--template/en/default/admin/products/edit.html.tmpl10
-rw-r--r--template/en/default/admin/products/footer.html.tmpl6
-rw-r--r--template/en/default/admin/products/list.html.tmpl2
-rw-r--r--template/en/default/admin/products/updated.html.tmpl4
-rw-r--r--template/en/default/admin/sanitycheck/messages.html.tmpl8
-rw-r--r--template/en/default/admin/table.html.tmpl2
-rw-r--r--template/en/default/admin/users/confirm-delete.html.tmpl14
-rw-r--r--template/en/default/admin/users/listselectvars.html.tmpl4
-rw-r--r--template/en/default/admin/users/responsibilities.html.tmpl4
-rw-r--r--template/en/default/admin/users/userdata.html.tmpl2
-rw-r--r--template/en/default/admin/versions/confirm-delete.html.tmpl4
-rw-r--r--template/en/default/admin/versions/footer.html.tmpl10
-rw-r--r--template/en/default/admin/versions/list.html.tmpl8
31 files changed, 94 insertions, 94 deletions
diff --git a/template/en/default/admin/classifications/edit.html.tmpl b/template/en/default/admin/classifications/edit.html.tmpl
index 2ef1725f3..17d04de67 100644
--- a/template/en/default/admin/classifications/edit.html.tmpl
+++ b/template/en/default/admin/classifications/edit.html.tmpl
@@ -29,7 +29,7 @@
<tr valign=top>
<th align="right">
- <a href="editproducts.cgi?classification=[% classification.name FILTER url_quote %]">
+ <a href="editproducts.cgi?classification=[% classification.name FILTER uri %]">
Edit Products</a>:
</th>
<td>
diff --git a/template/en/default/admin/classifications/select.html.tmpl b/template/en/default/admin/classifications/select.html.tmpl
index d6b352d02..bc78cbb6e 100644
--- a/template/en/default/admin/classifications/select.html.tmpl
+++ b/template/en/default/admin/classifications/select.html.tmpl
@@ -33,7 +33,7 @@
[% FOREACH cl = classifications %]
<tr>
- <td valign="top"><a href="editclassifications.cgi?action=edit&amp;classification=[% cl.name FILTER url_quote %]"><b>[% cl.name FILTER html %]</b></a></td>
+ <td valign="top"><a href="editclassifications.cgi?action=edit&amp;classification=[% cl.name FILTER uri %]"><b>[% cl.name FILTER html %]</b></a></td>
<td valign="top">
[% IF cl.description %]
[% cl.description FILTER html_light %]
@@ -45,14 +45,14 @@
[% IF (cl.id == 1) %]
<td valign="top">[% cl.product_count FILTER html %]</td>
[% ELSE %]
- <td valign="top"><a href="editclassifications.cgi?action=reclassify&amp;classification=[% cl.name FILTER url_quote %]">reclassify ([% cl.product_count FILTER html %])</a></td>
+ <td valign="top"><a href="editclassifications.cgi?action=reclassify&amp;classification=[% cl.name FILTER uri %]">reclassify ([% cl.product_count FILTER html %])</a></td>
[% END %]
[%# don't allow user to delete the default id. %]
[% IF (cl.id == 1) %]
<td valign="top">&nbsp;</td>
[% ELSE %]
- <td valign="top"><a href="editclassifications.cgi?action=del&amp;classification=[% cl.name FILTER url_quote %]">delete</a></td>
+ <td valign="top"><a href="editclassifications.cgi?action=del&amp;classification=[% cl.name FILTER uri %]">delete</a></td>
[% END %]
</tr>
[% END %]
diff --git a/template/en/default/admin/components/confirm-delete.html.tmpl b/template/en/default/admin/components/confirm-delete.html.tmpl
index d0a1385f1..e2caa5208 100644
--- a/template/en/default/admin/components/confirm-delete.html.tmpl
+++ b/template/en/default/admin/components/confirm-delete.html.tmpl
@@ -90,8 +90,8 @@ from '[% product.name FILTER html %]' product
<td valign="top">
[% IF comp.bug_count %]
<a title="List of [% terms.bugs %] for component '[% comp.name FILTER html %]'"
- href="buglist.cgi?component=[% comp.name FILTER url_quote %]&amp;product=
- [%- product.name FILTER url_quote %]">[% comp.bug_count %]</a>
+ href="buglist.cgi?component=[% comp.name FILTER uri %]&amp;product=
+ [%- product.name FILTER uri %]">[% comp.bug_count %]</a>
[% ELSE %]
None
[% END %]
diff --git a/template/en/default/admin/components/edit.html.tmpl b/template/en/default/admin/components/edit.html.tmpl
index be14be054..e34e18d0c 100644
--- a/template/en/default/admin/components/edit.html.tmpl
+++ b/template/en/default/admin/components/edit.html.tmpl
@@ -48,8 +48,8 @@
[% IF comp.bug_count > 0 %]
<a title="[% terms.Bugs %] in component '[% comp.name FILTER html %]'"
href="buglist.cgi?component=
- [%- comp.name FILTER url_quote %]&amp;product=
- [%- product.name FILTER url_quote %]">[% comp.bug_count %]</a>
+ [%- comp.name FILTER uri %]&amp;product=
+ [%- product.name FILTER uri %]">[% comp.bug_count %]</a>
[% ELSE %]
None
[% END %]
@@ -64,8 +64,8 @@
<input type="hidden" name="token" value="[% token FILTER html %]">
<input type="submit" value="Save Changes" id="update"> or <a
href="editcomponents.cgi?action=del&amp;product=
- [%- product.name FILTER url_quote %]&amp;component=
- [%- comp.name FILTER url_quote %]">Delete</a> this component.
+ [%- product.name FILTER uri %]&amp;component=
+ [%- comp.name FILTER uri %]">Delete</a> this component.
</form>
diff --git a/template/en/default/admin/components/footer.html.tmpl b/template/en/default/admin/components/footer.html.tmpl
index b2e105eb3..ec1869b29 100644
--- a/template/en/default/admin/components/footer.html.tmpl
+++ b/template/en/default/admin/components/footer.html.tmpl
@@ -33,7 +33,7 @@ Edit
component <a
title="Edit Component '[% comp.name FILTER html %]'"
href="editcomponents.cgi?action=edit&amp;product=
- [%- product.name FILTER url_quote %]&amp;component=[% comp.name FILTER url_quote %]">
+ [%- product.name FILTER uri %]&amp;component=[% comp.name FILTER uri %]">
'[% comp.name FILTER html %]'</a>
or edit
[% END %]
@@ -42,13 +42,13 @@ Edit
other components of product <a
title="Choose a component from product '[% product.name FILTER html %]' to edit"
href="editcomponents.cgi?product=
- [%- product.name FILTER url_quote %]">'[% product.name FILTER html %]'</a>,
+ [%- product.name FILTER uri %]">'[% product.name FILTER html %]'</a>,
or edit
[% END %]
product <a
title="Edit Product '[% product.name FILTER html %]'"
href="editproducts.cgi?action=edit&amp;product=
- [%- product.name FILTER url_quote %]">'[% product.name FILTER html %]'</a>.
+ [%- product.name FILTER uri %]">'[% product.name FILTER html %]'</a>.
</p>
diff --git a/template/en/default/admin/components/list.html.tmpl b/template/en/default/admin/components/list.html.tmpl
index 632d47e6e..b62ce1bae 100644
--- a/template/en/default/admin/components/list.html.tmpl
+++ b/template/en/default/admin/components/list.html.tmpl
@@ -34,11 +34,11 @@
%]
[% edit_contentlink = BLOCK %]editcomponents.cgi?action=edit&amp;product=
- [%- product.name FILTER url_quote %]&amp;component=%%name%%[% END %]
+ [%- product.name FILTER uri %]&amp;component=%%name%%[% END %]
[% delete_contentlink = BLOCK %]editcomponents.cgi?action=del&amp;product=
- [%- product.name FILTER url_quote %]&amp;component=%%name%%[% END %]
+ [%- product.name FILTER uri %]&amp;component=%%name%%[% END %]
[% bug_count_contentlink = BLOCK %]buglist.cgi?component=%%name%%&amp;product=
- [%- product.name FILTER url_quote %][% END %]
+ [%- product.name FILTER uri %][% END %]
[% columns = [
@@ -111,12 +111,12 @@
overrides = overrides
%]
-<p><a href="editcomponents.cgi?action=add&amp;product=[% product.name FILTER url_quote %]">Add</a>
+<p><a href="editcomponents.cgi?action=add&amp;product=[% product.name FILTER uri %]">Add</a>
a new component to product '[% product.name FILTER html %]'</p>
[% IF ! showbugcounts %]
- <p><a href="editcomponents.cgi?product=[% product.name FILTER url_quote %]&amp;showbugcounts=1">
+ <p><a href="editcomponents.cgi?product=[% product.name FILTER uri %]&amp;showbugcounts=1">
Redisplay table with [% terms.bug %] counts (slower)</a></p>
[% END %]
diff --git a/template/en/default/admin/custom_fields/edit.html.tmpl b/template/en/default/admin/custom_fields/edit.html.tmpl
index 755c3642c..ec4e3276d 100644
--- a/template/en/default/admin/custom_fields/edit.html.tmpl
+++ b/template/en/default/admin/custom_fields/edit.html.tmpl
@@ -137,7 +137,7 @@
<tr>
<th>&nbsp;</th>
<td>
- <a href="editvalues.cgi?field=[% field.name FILTER url_quote %]">Edit
+ <a href="editvalues.cgi?field=[% field.name FILTER uri %]">Edit
legal values for this field</a>.
</td>
diff --git a/template/en/default/admin/fieldvalues/confirm-delete.html.tmpl b/template/en/default/admin/fieldvalues/confirm-delete.html.tmpl
index 81a5b0f96..547cac636 100644
--- a/template/en/default/admin/fieldvalues/confirm-delete.html.tmpl
+++ b/template/en/default/admin/fieldvalues/confirm-delete.html.tmpl
@@ -49,8 +49,8 @@
<a title="List of [% terms.bugs %] where '
[%- field.description FILTER html %]' is '
[%- value.name FILTER html %]'"
- href="buglist.cgi?[% field.name FILTER url_quote %]=
- [%- value.name FILTER url_quote %]">
+ href="buglist.cgi?[% field.name FILTER uri %]=
+ [%- value.name FILTER uri %]">
[%- value.bug_count FILTER html %]</a>
[% ELSE %]
None
@@ -94,8 +94,8 @@
<a title="List of [% terms.bugs %] where '
[%- field.description FILTER html %]' is '
[%- value.name FILTER html %]'"
- href="buglist.cgi?[% field.name FILTER url_quote %]=
- [%- value.name FILTER url_quote %]">
+ href="buglist.cgi?[% field.name FILTER uri %]=
+ [%- value.name FILTER uri %]">
[% IF value.bug_count > 1 %]
those [% terms.bugs %]
[% ELSE %]
@@ -116,7 +116,7 @@
<li>This value controls the visibility of the following fields:<br>
[% FOREACH field = value.controls_visibility_of_fields %]
<a href="editfields.cgi?action=edit&name=
- [%- field.name FILTER url_quote %]">
+ [%- field.name FILTER uri %]">
[%- field.description FILTER html %]
([% field.name FILTER html %])</a><br>
[% END %]
@@ -129,8 +129,8 @@
[% FOREACH field_name = value.controlled_values.keys %]
[% FOREACH controlled = value.controlled_values.${field_name} %]
<a href="editvalues.cgi?action=edit&field=
- [%- controlled.field.name FILTER url_quote %]&value=
- [%- controlled.name FILTER url_quote %]">
+ [%- controlled.field.name FILTER uri %]&value=
+ [%- controlled.name FILTER uri %]">
[% controlled.field.description FILTER html %]
([% controlled.field.name FILTER html %]):
[%+ controlled.name FILTER html %]</a><br>
diff --git a/template/en/default/admin/fieldvalues/footer.html.tmpl b/template/en/default/admin/fieldvalues/footer.html.tmpl
index 288612d4c..7d4a41d47 100644
--- a/template/en/default/admin/fieldvalues/footer.html.tmpl
+++ b/template/en/default/admin/fieldvalues/footer.html.tmpl
@@ -32,7 +32,7 @@
[% UNLESS no_add_link %]
<a title="Add a value for the '[% field.description FILTER html %]' field."
href="editvalues.cgi?action=add&amp;field=
- [%- field.name FILTER url_quote %]">Add</a> a value.
+ [%- field.name FILTER uri %]">Add</a> a value.
[% END %]
[% IF value.defined && !no_edit_link %]
@@ -40,15 +40,15 @@
title="Edit value '[% value.name FILTER html %]' for the '
[%- field.name FILTER html %]' field"
href="editvalues.cgi?action=edit&amp;field=
- [%- field.name FILTER url_quote %]&amp;value=
- [%- value.name FILTER url_quote %]">
+ [%- field.name FILTER uri %]&amp;value=
+ [%- value.name FILTER uri %]">
'[% value.name FILTER html %]'</a>.
[% END %]
[% UNLESS no_edit_other_link %]
Edit other values for the <a
href="editvalues.cgi?field=
- [%- field.name FILTER url_quote %]">'[% field.description FILTER html %]'</a> field.
+ [%- field.name FILTER uri %]">'[% field.description FILTER html %]'</a> field.
[% END %]
diff --git a/template/en/default/admin/fieldvalues/list.html.tmpl b/template/en/default/admin/fieldvalues/list.html.tmpl
index 3f750ebca..2b6aedb6f 100644
--- a/template/en/default/admin/fieldvalues/list.html.tmpl
+++ b/template/en/default/admin/fieldvalues/list.html.tmpl
@@ -35,9 +35,9 @@
%]
[% edit_contentlink = BLOCK %]editvalues.cgi?action=edit&amp;field=
- [%- field.name FILTER url_quote %]&amp;value=%%name%%[% END %]
+ [%- field.name FILTER uri %]&amp;value=%%name%%[% END %]
[% delete_contentlink = BLOCK %]editvalues.cgi?action=del&amp;field=
- [%- field.name FILTER url_quote %]&amp;value=%%name%%[% END %]
+ [%- field.name FILTER uri %]&amp;value=%%name%%[% END %]
[% columns = [
diff --git a/template/en/default/admin/groups/delete.html.tmpl b/template/en/default/admin/groups/delete.html.tmpl
index 9d32da4de..b93c84b25 100644
--- a/template/en/default/admin/groups/delete.html.tmpl
+++ b/template/en/default/admin/groups/delete.html.tmpl
@@ -55,7 +55,7 @@
users in it.</b>
<br><a href="editusers.cgi?action=list&amp;groupid=
- [%- group.id FILTER url_quote %]&amp;grouprestrict=1">Show
+ [%- group.id FILTER uri %]&amp;grouprestrict=1">Show
me which users</a> - <label><input type="checkbox" name="removeusers">Remove
all users from this group for me.</label></p>
[% END %]
@@ -75,7 +75,7 @@
[%+ terms.bugs %] are using it.</b>
<br><a href="buglist.cgi?field0-0-0=bug_group&amp;type0-0-0=equals&amp;value0-0-0=
- [%- group.name FILTER url_quote %]">Show me
+ [%- group.name FILTER uri %]">Show me
which [% terms.bugs %]</a> -
<label><input type="checkbox" name="removebugs">Remove
all [% terms.bugs %] from this group restriction for me.</label></p>
@@ -119,7 +119,7 @@
[% END %]
<li><a href="editproducts.cgi?action=editgroupcontrols&amp;product=
- [%- data.product.name FILTER url_quote %]">
+ [%- data.product.name FILTER uri %]">
[%- data.product.name FILTER html %]</a>
([% active.join(', ') FILTER html %])
[% IF hidden %]
@@ -139,7 +139,7 @@
You cannot delete this group while there are flag types using it.</b>
<br><a href="editflagtypes.cgi?action=list&amp;group=
- [%- group.id FILTER url_quote %]">Show
+ [%- group.id FILTER uri %]">Show
me which types</a> -
<label><input type="checkbox" name="removeflags">Remove all
flag types from this group for me.</label></p>
diff --git a/template/en/default/admin/keywords/edit.html.tmpl b/template/en/default/admin/keywords/edit.html.tmpl
index c4b9a64d7..65a62290b 100644
--- a/template/en/default/admin/keywords/edit.html.tmpl
+++ b/template/en/default/admin/keywords/edit.html.tmpl
@@ -53,7 +53,7 @@
<th align="right">[% terms.Bugs %]:</th>
<td>
[% IF keyword.bug_count > 0 %]
- <a href="buglist.cgi?keywords=[% keyword.name FILTER url_quote %]">
+ <a href="buglist.cgi?keywords=[% keyword.name FILTER uri %]">
[% keyword.bug_count FILTER html %]</a>
[% ELSE %]
none
diff --git a/template/en/default/admin/milestones/confirm-delete.html.tmpl b/template/en/default/admin/milestones/confirm-delete.html.tmpl
index ea89b8021..068e8e254 100644
--- a/template/en/default/admin/milestones/confirm-delete.html.tmpl
+++ b/template/en/default/admin/milestones/confirm-delete.html.tmpl
@@ -52,8 +52,8 @@
[% IF milestone.bug_count %]
<a title="List of [% terms.bugs %] targetted at milestone '
[% milestone.name FILTER html %]'"
- href="buglist.cgi?target_milestone=[% milestone.name FILTER url_quote %]&amp;product=
- [%- product.name FILTER url_quote %]">
+ href="buglist.cgi?target_milestone=[% milestone.name FILTER uri %]&amp;product=
+ [%- product.name FILTER uri %]">
[% milestone.bug_count FILTER none %]</a>
[% ELSE %]
None
diff --git a/template/en/default/admin/milestones/footer.html.tmpl b/template/en/default/admin/milestones/footer.html.tmpl
index e91e5f9ad..1cae69e17 100644
--- a/template/en/default/admin/milestones/footer.html.tmpl
+++ b/template/en/default/admin/milestones/footer.html.tmpl
@@ -40,7 +40,7 @@
[% UNLESS no_add_milestone_link %]
<a title="Add a milestone to product '[% product.name FILTER html %]'"
href="editmilestones.cgi?action=add&amp;product=
- [%- product.name FILTER url_quote %]">Add</a> a milestone.
+ [%- product.name FILTER uri %]">Add</a> a milestone.
[% END %]
[% IF milestone.name && !no_edit_milestone_link %]
@@ -48,20 +48,20 @@
title="Edit Milestone '[% milestone.name FILTER html %]' of product '
[%- product.name FILTER html %]'"
href="editmilestones.cgi?action=edit&amp;product=
- [%- product.name FILTER url_quote %]&amp;milestone=
- [%- milestone.name FILTER url_quote %]">
+ [%- product.name FILTER uri %]&amp;milestone=
+ [%- milestone.name FILTER uri %]">
'[% milestone.name FILTER html %]'</a>.
[% END %]
[% UNLESS no_edit_other_milestones_link %]
Edit other milestones of product <a
href="editmilestones.cgi?product=
- [%- product.name FILTER url_quote %]">'[% product.name FILTER html %]'</a>.
+ [%- product.name FILTER uri %]">'[% product.name FILTER html %]'</a>.
[% END %]
Edit product <a
href="editproducts.cgi?action=edit&amp;product=
- [%- product.name FILTER url_quote %]">'[% product.name FILTER html %]'</a>.
+ [%- product.name FILTER uri %]">'[% product.name FILTER html %]'</a>.
</p>
diff --git a/template/en/default/admin/milestones/list.html.tmpl b/template/en/default/admin/milestones/list.html.tmpl
index 9422855ac..56f621e1e 100644
--- a/template/en/default/admin/milestones/list.html.tmpl
+++ b/template/en/default/admin/milestones/list.html.tmpl
@@ -37,11 +37,11 @@
%]
[% edit_contentlink = BLOCK %]editmilestones.cgi?action=edit&amp;product=
- [%- product.name FILTER url_quote %]&amp;milestone=%%name%%[% END %]
+ [%- product.name FILTER uri %]&amp;milestone=%%name%%[% END %]
[% delete_contentlink = BLOCK %]editmilestones.cgi?action=del&amp;product=
- [%- product.name FILTER url_quote %]&amp;milestone=%%name%%[% END %]
+ [%- product.name FILTER uri %]&amp;milestone=%%name%%[% END %]
[% bug_count_contentlink = BLOCK %]buglist.cgi?target_milestone=%%name%%&amp;product=
- [%- product.name FILTER url_quote %][% END %]
+ [%- product.name FILTER uri %][% END %]
[% columns = [
@@ -96,7 +96,7 @@
[% IF ! showbugcounts %]
- <p><a href="editmilestones.cgi?product=[% product.name FILTER url_quote %]&amp;showbugcounts=1">
+ <p><a href="editmilestones.cgi?product=[% product.name FILTER uri %]&amp;showbugcounts=1">
Redisplay table with [% terms.bug %] counts (slower)</a></p>
[% END %]
diff --git a/template/en/default/admin/params/editparams.html.tmpl b/template/en/default/admin/params/editparams.html.tmpl
index 21fa9fa41..77d843da2 100644
--- a/template/en/default/admin/params/editparams.html.tmpl
+++ b/template/en/default/admin/params/editparams.html.tmpl
@@ -78,7 +78,7 @@
</td>
[% ELSE %]
<td>
- <a href="editparams.cgi?section=[% panel.name FILTER url_quote %]"
+ <a href="editparams.cgi?section=[% panel.name FILTER uri %]"
title="[% panel.desc FILTER html %]">[% panel.title FILTER html %]</a>
</td>
[% END %]
diff --git a/template/en/default/admin/params/index.html.tmpl b/template/en/default/admin/params/index.html.tmpl
index 9f8024528..de6a56f2e 100644
--- a/template/en/default/admin/params/index.html.tmpl
+++ b/template/en/default/admin/params/index.html.tmpl
@@ -35,7 +35,7 @@
<tr>
<td>
<a href="editparams.cgi?section=
- [%- panel.name FILTER url_quote %]#[% param.name FILTER url_quote %]_desc">
+ [%- panel.name FILTER uri %]#[% param.name FILTER uri %]_desc">
[% param.name FILTER html %]</a>
</td>
<td>
diff --git a/template/en/default/admin/products/confirm-delete.html.tmpl b/template/en/default/admin/products/confirm-delete.html.tmpl
index f4a04b86f..aa728df75 100644
--- a/template/en/default/admin/products/confirm-delete.html.tmpl
+++ b/template/en/default/admin/products/confirm-delete.html.tmpl
@@ -58,7 +58,7 @@
<tr>
<td valign="top">Product:</td>
<td valign="top">
- <a href="editproducts.cgi?product=[% product.name FILTER url_quote %]">
+ <a href="editproducts.cgi?product=[% product.name FILTER uri %]">
[% product.name FILTER html %]
</a>
</td>
@@ -104,7 +104,7 @@
<tr>
<td>
[% IF product.components.size > 0 %]
- <a href="editcomponents.cgi?product=[% product.name FILTER url_quote %]"
+ <a href="editcomponents.cgi?product=[% product.name FILTER uri %]"
title="Edit components for product '[% product.name FILTER html %]'">
Components:
</a>
@@ -138,7 +138,7 @@
<tr>
<td>
[% IF product.versions.size > 0 %]
- <a href="editversions.cgi?product=[%- product.name FILTER url_quote %]">
+ <a href="editversions.cgi?product=[%- product.name FILTER uri %]">
Versions:
</a>
[% ELSE %]
@@ -161,7 +161,7 @@
<tr>
<td valign="top">
[% IF product.milestones.size > 0 %]
- <a href="editmilestones.cgi?product=[%- product.name FILTER url_quote %]">
+ <a href="editmilestones.cgi?product=[%- product.name FILTER uri %]">
Milestones:
</a>
[% ELSE %]
@@ -184,7 +184,7 @@
<td>[% terms.Bugs %]:</td>
<td>
[% IF product.bug_count %]
- <a href="buglist.cgi?product=[% product.name FILTER url_quote %]"
+ <a href="buglist.cgi?product=[% product.name FILTER uri %]"
title="List of [% terms.bugs %] for product '[% product.name FILTER html %]'">
[% product.bug_count FILTER html %]
</a>
diff --git a/template/en/default/admin/products/edit.html.tmpl b/template/en/default/admin/products/edit.html.tmpl
index 976739f78..bb55f4eb0 100644
--- a/template/en/default/admin/products/edit.html.tmpl
+++ b/template/en/default/admin/products/edit.html.tmpl
@@ -45,7 +45,7 @@
<tr>
<th align="right" valign="top">
- <a href="editcomponents.cgi?product=[% product.name FILTER url_quote %]">
+ <a href="editcomponents.cgi?product=[% product.name FILTER uri %]">
Edit components:
</a>
</th>
@@ -67,7 +67,7 @@
</tr>
<tr>
<th align="right" valign="top">
- <a href="editversions.cgi?product=[% product.name FILTER url_quote %]">Edit
+ <a href="editversions.cgi?product=[% product.name FILTER uri %]">Edit
versions:</a>
</th>
<td>
@@ -84,7 +84,7 @@ versions:</a>
[% IF Param('usetargetmilestone') %]
<tr>
<th align="right" valign="top">
- <a href="editmilestones.cgi?product=[% product.name FILTER url_quote %]">
+ <a href="editmilestones.cgi?product=[% product.name FILTER uri %]">
Edit milestones:</a>
</th>
<td>
@@ -102,7 +102,7 @@ versions:</a>
<tr>
<th align="right" valign="top">
<a href="editproducts.cgi?action=editgroupcontrols&product=
- [%- product.name FILTER url_quote %]">
+ [%- product.name FILTER uri %]">
Edit Group Access Controls:
</a>
</th>
@@ -130,7 +130,7 @@ versions:</a>
</tr>
<tr>
<th align="right">[% terms.Bugs %]:</th>
- <td><a href="buglist.cgi?product=[% product.name FILTER url_quote %]">
+ <td><a href="buglist.cgi?product=[% product.name FILTER uri %]">
[% product.bug_count FILTER html %]</a></td>
</tr>
</table>
diff --git a/template/en/default/admin/products/footer.html.tmpl b/template/en/default/admin/products/footer.html.tmpl
index 661829b7c..78e1864a7 100644
--- a/template/en/default/admin/products/footer.html.tmpl
+++ b/template/en/default/admin/products/footer.html.tmpl
@@ -30,10 +30,10 @@
[% IF Param('useclassification') && classification %]
[% classification_url_part = BLOCK %]&amp;classification=
- [%- classification.name FILTER url_quote %]
+ [%- classification.name FILTER uri %]
[% END %]
[% classification_url_part_start = BLOCK %]classification=
- [%- classification.name FILTER url_quote %]
+ [%- classification.name FILTER uri %]
[% END %]
[% classification_text = BLOCK %]
of classification '[% classification.name FILTER html %]'
@@ -61,7 +61,7 @@
Edit product <a
title="Edit Product '[% product.name FILTER html %]'
[%- classification_text %]"
- href="editproducts.cgi?action=edit&amp;product=[% product.name FILTER url_quote %]">
+ href="editproducts.cgi?action=edit&amp;product=[% product.name FILTER uri %]">
'[% product.name FILTER html %]'</a>.
[% END %]
diff --git a/template/en/default/admin/products/list.html.tmpl b/template/en/default/admin/products/list.html.tmpl
index 13f12780a..a9951dd74 100644
--- a/template/en/default/admin/products/list.html.tmpl
+++ b/template/en/default/admin/products/list.html.tmpl
@@ -26,7 +26,7 @@
[% IF classification %]
[% classification_url_part = BLOCK %]&amp;classification=
- [%- classification.name FILTER url_quote %]
+ [%- classification.name FILTER uri %]
[%- END %]
[% classification_title = BLOCK %]
in classification '[% classification.name FILTER html %]'
diff --git a/template/en/default/admin/products/updated.html.tmpl b/template/en/default/admin/products/updated.html.tmpl
index 4140bab62..d93022a6e 100644
--- a/template/en/default/admin/products/updated.html.tmpl
+++ b/template/en/default/admin/products/updated.html.tmpl
@@ -45,7 +45,7 @@
<p>
Updated product name from '[% changes.name.0 FILTER html %]' to
'<a href="editproducts.cgi?action=edit&amp;product=
- [%- product.name FILTER url_quote %]">[% product.name FILTER html %]</a>'.
+ [%- product.name FILTER uri %]">[% product.name FILTER html %]</a>'.
</p>
[% END %]
@@ -86,7 +86,7 @@
[%+ display_value('bug_status', 'UNCONFIRMED') FILTER html %] status.
Note that any
<a href="buglist.cgi?product=
- [%- product.name FILTER url_quote %]&amp;bug_status=UNCONFIRMED">
+ [%- product.name FILTER uri %]&amp;bug_status=UNCONFIRMED">
[%- terms.bugs %] that currently have the
[%+ display_value('bug_status', 'UNCONFIRMED') FILTER html %] status</a>
will remain in that status until they are edited.
diff --git a/template/en/default/admin/sanitycheck/messages.html.tmpl b/template/en/default/admin/sanitycheck/messages.html.tmpl
index 5c2b2feb1..af0f9e572 100644
--- a/template/en/default/admin/sanitycheck/messages.html.tmpl
+++ b/template/en/default/admin/sanitycheck/messages.html.tmpl
@@ -34,7 +34,7 @@
[% errortext FILTER html %]: [% INCLUDE bug_list badbugs = badbugs %]
[% ELSIF san_tag == "bug_check_repair" %]
- <a href="sanitycheck.cgi?[% param FILTER url_quote %]=1">[% text FILTER html %]</a>.
+ <a href="sanitycheck.cgi?[% param FILTER uri %]=1">[% text FILTER html %]</a>.
[% ELSIF san_tag == "bug_check_creation_date" %]
Checking for [% terms.bugs %] with no creation date (which makes them invisible).
@@ -299,12 +299,12 @@
# which itself calls this template again, generating a recursion error.
# I doubt having a tooltip with the bug status and summary is so
# important here anyway, as you can click the "(as buglist)" link. %]
- <a href="show_bug.cgi?id=[% bug_id FILTER url_quote %]">[% bug_id FILTER html %]</a>
+ <a href="show_bug.cgi?id=[% bug_id FILTER uri %]">[% bug_id FILTER html %]</a>
[% ", " IF !loop.last %]
[% END %]
- (<a href="buglist.cgi?bug_id=[% badbugs.join(",") FILTER url_quote %]">as [% terms.bug %] list</a>).
+ (<a href="buglist.cgi?bug_id=[% badbugs.join(",") FILTER uri %]">as [% terms.bug %] list</a>).
[% END %]
[% BLOCK bug_link %]
- <a href="show_bug.cgi?id=[% bug_id FILTER url_quote %]">[% terms.bug %] [%+ bug_id FILTER html %]</a>
+ <a href="show_bug.cgi?id=[% bug_id FILTER uri %]">[% terms.bug %] [%+ bug_id FILTER html %]</a>
[% END %]
diff --git a/template/en/default/admin/table.html.tmpl b/template/en/default/admin/table.html.tmpl
index ce5e985cb..706e7d75a 100644
--- a/template/en/default/admin/table.html.tmpl
+++ b/template/en/default/admin/table.html.tmpl
@@ -144,7 +144,7 @@
[% WHILE link_uri.search('%%(.+?)%%')%]
[% FOREACH m = link_uri.match('%%(.+?)%%') %]
[% IF row.$m %]
- [% replacement_value = FILTER url_quote; row.$m; END %]
+ [% replacement_value = FILTER uri; row.$m; END %]
[% ELSE %]
[% replacement_value = "" %]
[% END %]
diff --git a/template/en/default/admin/users/confirm-delete.html.tmpl b/template/en/default/admin/users/confirm-delete.html.tmpl
index 4711376b0..1e7077eaf 100644
--- a/template/en/default/admin/users/confirm-delete.html.tmpl
+++ b/template/en/default/admin/users/confirm-delete.html.tmpl
@@ -112,7 +112,7 @@
<li>
[% otheruser.login FILTER html %]
<a href="buglist.cgi?field0-0-0=attachments.submitter&type0-0-0=equals&value0-0-0=
- [%- otheruser.login FILTER url_quote %]">has submitted
+ [%- otheruser.login FILTER uri %]">has submitted
[% IF attachments == 1 %]
one attachment
[% ELSE %]
@@ -132,7 +132,7 @@
<li>
[% otheruser.login FILTER html %]
<a href="buglist.cgi?emailreporter1=1&amp;emailtype1=exact&amp;email1=
- [%- otheruser.login FILTER url_quote %]">has reported
+ [%- otheruser.login FILTER uri %]">has reported
[% IF reporter == 1 %]
one [% terms.bug %]
[% ELSE %]
@@ -170,7 +170,7 @@
<li>
[% otheruser.login FILTER html %] has
<a href="buglist.cgi?field0-0-0=setters.login_name&amp;type0-0-0=equals&amp;value0-0-0=
- [%- otheruser.login FILTER url_quote %]">set
+ [%- otheruser.login FILTER uri %]">set
or requested
[% IF flags.setter == 1 %]
a flag
@@ -191,7 +191,7 @@
<li>
[% otheruser.login FILTER html %] has
<a href="buglist.cgi?emaillongdesc1=1&amp;emailtype1=exact&amp;email1=
- [%- otheruser.login FILTER url_quote %]">commented
+ [%- otheruser.login FILTER uri %]">commented
[% IF longdescs == 1 %]
once on [% terms.abug %]
[% ELSE %]
@@ -236,7 +236,7 @@
<li>
[% otheruser.login FILTER html %]
<a href="buglist.cgi?emailassigned_to1=1&amp;emailqa_contact1=1&amp;emailtype1=exact&amp;email1=
- [%- otheruser.login FILTER url_quote %]">is
+ [%- otheruser.login FILTER uri %]">is
the assignee or the QA contact of
[% IF assignee_or_qa == 1 %]
one [% terms.bug %]
@@ -251,7 +251,7 @@
<li>
[% otheruser.login FILTER html %]
<a href="buglist.cgi?emailcc1=1&amp;emailtype1=exact&amp;email1=
- [%- otheruser.login FILTER url_quote %]">is
+ [%- otheruser.login FILTER uri %]">is
on the CC list of
[% IF cc == 1 %]
[%+ terms.abug %]
@@ -282,7 +282,7 @@
<li>
[% otheruser.login FILTER html %] has been
<a href="buglist.cgi?field0-0-0=requestees.login_name&amp;type0-0-0=equals&amp;value0-0-0=
- [%- otheruser.login FILTER url_quote %]">asked
+ [%- otheruser.login FILTER uri %]">asked
to set
[% IF flags.requestee == 1 %]
a flag
diff --git a/template/en/default/admin/users/listselectvars.html.tmpl b/template/en/default/admin/users/listselectvars.html.tmpl
index a6eae5791..a2be91d7a 100644
--- a/template/en/default/admin/users/listselectvars.html.tmpl
+++ b/template/en/default/admin/users/listselectvars.html.tmpl
@@ -20,8 +20,8 @@
[% BLOCK listselectionurlparams %]
[% FOREACH field = listselectionvalues.keys %]&amp;
- [% field FILTER url_quote %]=
- [% listselectionvalues.$field FILTER url_quote %]
+ [% field FILTER uri %]=
+ [% listselectionvalues.$field FILTER uri %]
[% END %]
[% END %]
diff --git a/template/en/default/admin/users/responsibilities.html.tmpl b/template/en/default/admin/users/responsibilities.html.tmpl
index 5c9c3f317..1e11f8000 100644
--- a/template/en/default/admin/users/responsibilities.html.tmpl
+++ b/template/en/default/admin/users/responsibilities.html.tmpl
@@ -36,8 +36,8 @@
<td>
[% IF user.in_group("editcomponents", component.product_id) %]
<a href="editcomponents.cgi?action=edit&amp;product=
- [% item.product.name FILTER url_quote %]&amp;component=
- [% component.name FILTER url_quote %]">
+ [% item.product.name FILTER uri %]&amp;component=
+ [% component.name FILTER uri %]">
[% END %]
[% component.name FILTER html %]
[% IF user.in_group("editcomponents", component.product_id) %]
diff --git a/template/en/default/admin/users/userdata.html.tmpl b/template/en/default/admin/users/userdata.html.tmpl
index f23aa1b85..d81529b48 100644
--- a/template/en/default/admin/users/userdata.html.tmpl
+++ b/template/en/default/admin/users/userdata.html.tmpl
@@ -30,7 +30,7 @@
[% IF !otheruser.in_group('bz_sudo_protect') %]
<br />
<a href="relogin.cgi?action=prepare-sudo&amp;target_login=
- [%- otheruser.login FILTER url_quote %]">Impersonate this user</a>
+ [%- otheruser.login FILTER uri %]">Impersonate this user</a>
[% END %]
[% END %]
[% ELSE %]
diff --git a/template/en/default/admin/versions/confirm-delete.html.tmpl b/template/en/default/admin/versions/confirm-delete.html.tmpl
index 88ffceb31..39091d5fc 100644
--- a/template/en/default/admin/versions/confirm-delete.html.tmpl
+++ b/template/en/default/admin/versions/confirm-delete.html.tmpl
@@ -52,8 +52,8 @@
[% IF version.bug_count %]
<a title="List of [% terms.bugs %] targetted at version '
[%- version.name FILTER html %]'"
- href="buglist.cgi?version=[% version.name FILTER url_quote %]&amp;product=
- [%- product.name FILTER url_quote %]">
+ href="buglist.cgi?version=[% version.name FILTER uri %]&amp;product=
+ [%- product.name FILTER uri %]">
[%- version.bug_count FILTER none %]</a>
[% ELSE %]
None
diff --git a/template/en/default/admin/versions/footer.html.tmpl b/template/en/default/admin/versions/footer.html.tmpl
index 8d96a12e9..ae26e5744 100644
--- a/template/en/default/admin/versions/footer.html.tmpl
+++ b/template/en/default/admin/versions/footer.html.tmpl
@@ -38,7 +38,7 @@
[% UNLESS no_add_version_link %]
<a title="Add a version to product '[% product.name FILTER html %]'"
href="editversions.cgi?action=add&amp;product=
- [%- product.name FILTER url_quote %]">Add</a> a version.
+ [%- product.name FILTER uri %]">Add</a> a version.
[% END %]
[% IF version.name && !no_edit_version_link %]
@@ -46,20 +46,20 @@
title="Edit Version '[% version.name FILTER html %]' of product '
[%- product.name FILTER html %]'"
href="editversions.cgi?action=edit&amp;product=
- [%- product.name FILTER url_quote %]&amp;version=
- [%- version.name FILTER url_quote %]">
+ [%- product.name FILTER uri %]&amp;version=
+ [%- version.name FILTER uri %]">
'[% version.name FILTER html %]'</a>.
[% END %]
[% UNLESS no_edit_other_versions_link %]
Edit other versions of product <a
href="editversions.cgi?product=
- [%- product.name FILTER url_quote %]">'[% product.name FILTER html %]'</a>.
+ [%- product.name FILTER uri %]">'[% product.name FILTER html %]'</a>.
[% END %]
Edit product <a
href="editproducts.cgi?action=edit&amp;product=
- [%- product.name FILTER url_quote %]">'[% product.name FILTER html %]'</a>.
+ [%- product.name FILTER uri %]">'[% product.name FILTER html %]'</a>.
</p>
diff --git a/template/en/default/admin/versions/list.html.tmpl b/template/en/default/admin/versions/list.html.tmpl
index 401ee519b..ae21bbf5c 100644
--- a/template/en/default/admin/versions/list.html.tmpl
+++ b/template/en/default/admin/versions/list.html.tmpl
@@ -33,11 +33,11 @@
%]
[% edit_contentlink = BLOCK %]editversions.cgi?action=edit&amp;product=
- [%- product.name FILTER url_quote %]&amp;version=%%name%%[% END %]
+ [%- product.name FILTER uri %]&amp;version=%%name%%[% END %]
[% delete_contentlink = BLOCK %]editversions.cgi?action=del&amp;product=
- [%- product.name FILTER url_quote %]&amp;version=%%name%%[% END %]
+ [%- product.name FILTER uri %]&amp;version=%%name%%[% END %]
[% bug_count_contentlink = BLOCK %]buglist.cgi?version=%%name%%&amp;product=
- [%- product.name FILTER url_quote %][% END %]
+ [%- product.name FILTER uri %][% END %]
[% columns = [
@@ -77,7 +77,7 @@
[% IF ! showbugcounts %]
- <p><a href="editversions.cgi?product=[% product.name FILTER url_quote %]&amp;showbugcounts=1">
+ <p><a href="editversions.cgi?product=[% product.name FILTER uri %]&amp;showbugcounts=1">
Redisplay table with [% terms.bug %] counts (slower)</a></p>
[% END %]