summaryrefslogtreecommitdiffstats
path: root/extensions/BMO/template/en/default/pages
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2012-01-18 06:33:37 +0100
committerByron Jones <bjones@mozilla.com>2012-01-18 06:33:37 +0100
commit7740abe8308ae64d68f939995a40a7b9c4d5146f (patch)
treeb27fc8d4eee26138809ddd80b538f75f1bc91182 /extensions/BMO/template/en/default/pages
parente61f9a53a852c5badff6a1436cada646646dea2b (diff)
downloadbugzilla-7740abe8308ae64d68f939995a40a7b9c4d5146f.tar.gz
bugzilla-7740abe8308ae64d68f939995a40a7b9c4d5146f.tar.xz
revert accidental commit
https://bugzilla.mozilla.org/show_bug.cgi?id=716109
Diffstat (limited to 'extensions/BMO/template/en/default/pages')
-rw-r--r--extensions/BMO/template/en/default/pages/release_tracking_report.html.tmpl98
1 files changed, 0 insertions, 98 deletions
diff --git a/extensions/BMO/template/en/default/pages/release_tracking_report.html.tmpl b/extensions/BMO/template/en/default/pages/release_tracking_report.html.tmpl
deleted file mode 100644
index 5e64c6b5e..000000000
--- a/extensions/BMO/template/en/default/pages/release_tracking_report.html.tmpl
+++ /dev/null
@@ -1,98 +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.
- #%]
-
-[% INCLUDE global/header.html.tmpl
- title = "Release Tracking Report"
- style_urls = [ "extensions/BMO/web/styles/reports.css" ]
- javascript_urls = [ "extensions/BMO/web/js/release_tracking_report.js" ]
-%]
-
-<noscript>
-<h1>JavaScript is required to use this report.</h1>
-</noscript>
-
-<script>
-var flags_data = [% flags_json FILTER none %];
-var products_data = [% products_json FILTER none %];
-var fields_data = [% fields_json FILTER none %];
-var default_query = '[% default_query FILTER js %]';
-</script>
-
-<form action="page.cgi" method="get" onSubmit="return onFormSubmit()">
-<input type="hidden" name="id" value="release_tracking_report.html">
-<input type="hidden" name="q" id="q" value="">
-<table>
-
-<tr>
- <th>Approval:</th>
- <td>
- Show bugs where
- <select id="flag" onChange="onFlagChange()">
- [% FOREACH flag_name = flag_names %]
- <option value="[% flag_name FILTER html %]">[% flag_name FILTER html %]</option>
- [% END %]
- </select>
-
- was changed to (and is currently)
- <select id="flag_value">
- <option value="?">?</option>
- <option value="-">-</option>
- <option value="+">+</option>
- </select>
-
- between
- <select id="range" onChange="serialiseForm()">
- [% FOREACH range = ranges %]
- <option value="[% range.value FILTER html %]">
- [% range.label FILTER html %]
- </option>
- [% END %]
- </select>
- </td>
-</tr>
-
-<tr>
- <th>Status:</th>
- <td>
- for the product
- <select id="product" onChange="onProductChange()">
- </select>
- </td>
-</tr>
-
-<tr>
- <td>&nbsp;</td>
- <td>
- <select id="op" onChange="serialiseForm()">
- <option value="and">All selected tracking fields (AND)</option>
- <option value="or">Any selected tracking fields (OR)</option>
- </select>
- [
- <a href="javascript:void(0)" onClick="selectAllFields()">All</a> |
- <a href="javascript:void(0)" onClick="selectNoFields()">None</a>
- ]
- [
- <a href="javascript:void(0)" onClick="invertFields()">Invert</a>
- ]
- <br>
- <span id="tracking_span">
- </span>
- </td>
-</tr>
-
-<tr>
- <td>&nbsp;</td>
- <td colspan="2">
- <input type="submit" value="Search">
- <input type="submit" value="Reset" onClick="onFormReset(); return false">
- </td>
-</tr>
-</table>
-</form>
-
-[% INCLUDE global/footer.html.tmpl %]