summaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@mozilla.com>2014-04-10 16:36:12 +0200
committerDavid Lawrence <dkl@mozilla.com>2014-04-10 16:36:12 +0200
commitb1833c067980d4b21a0d434d443e20b46cc74d8b (patch)
treea6e42d07f3be64dcd366bd607032c6af3db00bce /template
parent94fd1545568688d8e2627c14dab6192942b6ed37 (diff)
downloadbugzilla-b1833c067980d4b21a0d434d443e20b46cc74d8b.tar.gz
bugzilla-b1833c067980d4b21a0d434d443e20b46cc74d8b.tar.xz
Backout of Bug 990982 - backport bug 539894 to bmo (Use <optgroup/> to group products into classifications in the product drop-down on show_bug.cgi)
- Missed file that needed to be deleted.
Diffstat (limited to 'template')
-rw-r--r--template/en/default/global/product-select.html.tmpl85
1 files changed, 0 insertions, 85 deletions
diff --git a/template/en/default/global/product-select.html.tmpl b/template/en/default/global/product-select.html.tmpl
deleted file mode 100644
index fb07b7cd4..000000000
--- a/template/en/default/global/product-select.html.tmpl
+++ /dev/null
@@ -1,85 +0,0 @@
-[%# 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.
- #%]
-
-[%# INTERFACE:
- # name: mandatory; field name
- # id: optional; field id
- # value: optional; default field value/selection
- # classes: optional; an array of classes to be added
- # onchange: optional; onchange attribute value
- # disabled: optional; if true, the field is disabled
- # accesskey: optional; accesskey attribute value
- # add: optional; prepend menu option for value specified to start of select
- # dontchange: optional; prepend menu option for "dontchange" to start of select
- # multiple: optional; do multiselect box, value is size (height) of box
- # title: optional; extra information to display as a tooltip
- # products: optional; an array of custom product names
- # isselect: optional; whether the product list should be displayed as a <select>
- # or as just the plain text of its value.
- # valueattribute: optional; the product attribute to be used for <option value="">,
- # defaults to product name
- #%]
-
-[% IF !isselect.defined %]
- [% isselect = 1 %]
-[% END %]
-[% DEFAULT valueattribute = "name" %]
-[% IF isselect %]
- <select name="[% name FILTER html %]"
- [% IF id %] id="[% id FILTER html %]" [% END %]
- [% IF classes %] class="[% classes.join(' ') FILTER html %]" [% END %]
- [% IF onchange %] onchange="[% onchange FILTER html %]" [% END %]
- [% IF disabled %] disabled="[% disabled FILTER html %]" [% END %]
- [% IF accesskey %] accesskey="[% accesskey FILTER html %]" [% END %]
- [% IF multiple %] multiple="multiple" size="[% multiple FILTER html %]" [% END %]
- [% IF title %] title="[% title FILTER html %]" [% END %]
- >
- [% IF add %]
- <option value="">[% add FILTER html %]</option>
- [% END %]
- [% IF dontchange %]
- <option value="[% dontchange FILTER html %]">[% dontchange FILTER html %]</option>
- [% END %]
-
- [% IF Param('useclassification') %]
- [% product_ids = {} %]
- [% IF products %]
- [% FOREACH p = products %]
- [% key = p.id -%]
- [% product_ids.$key = p.id -%]
- [% END %]
- [% END %]
- [% FOREACH c = user.get_selectable_classifications %]
- [% class_products = [] %]
- [% FOREACH p = user.get_selectable_products(c.id) %]
- [% NEXT IF (products && !product_ids.exists(p.id)) %]
- [% class_products.push(p) %]
- [% END %]
- [% NEXT UNLESS class_products.size > 0 %]
- <optgroup label="[% c.name FILTER html %]">
- [% FOREACH p = class_products %]
- <option value="[% p.$valueattribute FILTER html %]"
- [% " selected" IF (cgi.param(name) == p.name) || (value == p.name) %]>
- [% p.name FILTER html %]
- </option>
- [% END %]
- </optgroup>
- [% END %]
- [% ELSE %]
- [% products = user.get_selectable_products UNLESS products %]
- [% FOREACH p = products %]
- <option value="[% p.$valueattribute FILTER html %]"
- [% " selected" IF (cgi.param(name) == p.name) || (value == p.name) %]>
- [% p.name FILTER html %]
- </option>
- [% END %]
- [% END %]
- </select>
-[% ELSE %]
- [% value.join(', ') FILTER html %]
-[% END %]