~ubuntu-branches/ubuntu/edgy/bugzilla/edgy

« back to all changes in this revision

Viewing changes to template/en/default/search/search-report-table.html.tmpl

  • Committer: Bazaar Package Importer
  • Author(s): Alexis Sukrieh
  • Date: 2005-10-03 16:51:01 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051003165101-38n0y5qofd68vole
Tags: 2.18.4-1
* New upstream minor release
  + Fixed a security issue: It was possible to bypass the "user
    visibility groups" restrictions if user-matching was turned on
    in "substring" mode.
  + Fixed a security issue: config.cgi exposed information to users who
    weren't logged in, even when "requirelogin" was turned on in Bugzilla.
  (closes: #331206)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
[%# 1.0@bugzilla.org %]
 
2
[%# The contents of this file are subject to the Mozilla Public
 
3
  # License Version 1.1 (the "License"); you may not use this file
 
4
  # except in compliance with the License. You may obtain a copy of
 
5
  # the License at http://www.mozilla.org/MPL/
 
6
  #
 
7
  # Software distributed under the License is distributed on an "AS
 
8
  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 
9
  # implied. See the License for the specific language governing
 
10
  # rights and limitations under the License.
 
11
  #
 
12
  # The Original Code is the Bugzilla Bug Tracking System.
 
13
  #
 
14
  # The Initial Developer of the Original Code is Netscape Communications
 
15
  # Corporation. Portions created by Netscape are
 
16
  # Copyright (C) 1998 Netscape Communications Corporation. All
 
17
  # Rights Reserved.
 
18
  #
 
19
  # Contributor(s): Gervase Markham <gerv@gerv.net>
 
20
  #%]
 
21
 
 
22
[%# INTERFACE:
 
23
  # This template has no interface. However, to use it, you need to fulfill
 
24
  # the interfaces of the templates it contains.
 
25
  #%]
 
26
 
 
27
[% PROCESS global/variables.none.tmpl %]
 
28
 
 
29
[% PROCESS global/header.html.tmpl
 
30
  title = "Generate Tabular Report"
 
31
  onload = "selectProduct(document.forms['reportform']);"
 
32
%]
 
33
 
 
34
[% PROCESS "search/search-report-select.html.tmpl" %]
 
35
 
 
36
<p>
 
37
  Choose one or more fields as your axes, and then refine your set of 
 
38
  [% terms.bugs %] using the rest of the form.
 
39
</p>
 
40
 
 
41
[% button_name = "Generate Report" %]
 
42
 
 
43
<form method="get" action="report.cgi" name="reportform">
 
44
 
 
45
<table align="center">
 
46
  <tr>
 
47
    <td>
 
48
    </td>
 
49
    <td align="center">
 
50
      <b>Horizontal Axis:</b>
 
51
      [% PROCESS select name = 'x_axis_field' %]
 
52
    </td>
 
53
  </tr>
 
54
 
 
55
  <tr>
 
56
    <td valign="middle" align="center">
 
57
      <b>Vertical Axis:</b><br>
 
58
      [% PROCESS select name = 'y_axis_field' %]
 
59
    </td>
 
60
    <td width="150" height="150">
 
61
      <table border="1" width="100%" height="100%">
 
62
        <tr>
 
63
          <td align="center" valign="middle">
 
64
            <b>Multiple Tables:</b><br>
 
65
            [% PROCESS select name = 'z_axis_field' %]
 
66
          </td>
 
67
        </tr>
 
68
      </table>
 
69
    </td>
 
70
  </tr>
 
71
</table>
 
72
 
 
73
<hr>
 
74
 
 
75
[% PROCESS search/form.html.tmpl %]
 
76
 
 
77
<br>
 
78
<input type="submit" value="[% button_name FILTER html %]">
 
79
<input type="hidden" name="format" value="table">
 
80
<input type="hidden" name="action" value="wrap">
 
81
<hr>
 
82
 
 
83
[% PROCESS "search/boolean-charts.html.tmpl" %]
 
84
 
 
85
</form>
 
86
 
 
87
[% PROCESS global/footer.html.tmpl %]