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

« back to all changes in this revision

Viewing changes to template/en/default/list/change-columns.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 -->
 
1
[%# 1.0@bugzilla.org %]
2
2
[%# The contents of this file are subject to the Mozilla Public
3
3
  # License Version 1.1 (the "License"); you may not use this file
4
4
  # except in compliance with the License. You may obtain a copy of
5
5
  # the License at http://www.mozilla.org/MPL/
6
 
  # 
 
6
  #
7
7
  # Software distributed under the License is distributed on an "AS
8
8
  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
9
9
  # implied. See the License for the specific language governing
19
19
  # Contributor(s): Dave Lawrence <dkl@redhat.com>
20
20
  #%]
21
21
 
 
22
[% PROCESS global/variables.none.tmpl %]
 
23
 
22
24
[% PROCESS global/header.html.tmpl
23
25
  title = "Change Columns"
24
26
%]
25
27
 
26
 
Check which columns you wish to appear on the list, and then click
27
 
on submit.  (Cookies are required.)
28
28
<p>
29
 
<form action="colchange.cgi">
30
 
<input type="hidden" name="rememberedquery" value="[% buffer FILTER html %]">
31
 
[% FOREACH column = masterlist %]
32
 
  <input type="checkbox" id="[% column %]" name="column_[% column %]" [% "CHECKED" IF lsearch(collist, column) != -1 %]>
33
 
  <label for="[% column %]">[% desc.${column} %]</label><br>
34
 
[% END %]
35
 
</p><p>
36
 
<input id="nosplitheader" type="radio" name="splitheader" value="0" [% "CHECKED" IF ! splitheader %]>
37
 
<label for="nosplitheader">Normal headers (prettier)</label><br>
38
 
<input id="splitheader" type="radio" name="splitheader" value="1" [% "CHECKED" IF splitheader %]>
39
 
<label for="splitheader">Stagger headers (often makes list more compact)</label>
40
 
</p><p>
41
 
<input type="submit" value="Submit">
42
 
</form>
43
 
<form action="colchange.cgi">
44
 
<input type="hidden" name="rememberedquery" value="[% buffer FILTER html %]">
45
 
<input type="hidden" name="resetit" value="1">
46
 
<input type="submit" value="Reset to Bugzilla default">
47
 
</form>
 
29
  Select the columns you wish to appear in your [% terms.bug %] lists. Note that
 
30
  this feature requires cookies to work.
48
31
</p>
49
32
 
 
33
[% PROCESS "global/field-descs.none.tmpl" %]
 
34
[% field_descs.short_short_desc     = "Summary (first 60 characters)" %]
 
35
[% field_descs.short_desc           = "Full Summary" %]
 
36
[% field_descs.assigned_to_realname = "Assignee Realname" %]
 
37
[% field_descs.reporter_realname    = "Reporter Realname" %]
 
38
[% field_descs.qa_contact_realname  = "QA Contact Realname" %]
 
39
 
 
40
<form action="colchange.cgi">
 
41
  <input type="hidden" name="rememberedquery" value="[% buffer FILTER html %]">
 
42
  [% FOREACH column = masterlist %]
 
43
    <input type="checkbox" id="[% column %]" name="column_[% column %]"
 
44
      [% "checked='checked'" IF lsearch(collist, column) != -1 %]>
 
45
    <label for="[% column %]">
 
46
      [% (field_descs.${column} || column) FILTER html %]
 
47
    </label>
 
48
    <br>
 
49
  [% END %]
 
50
 
 
51
  <p>
 
52
    <input id="nosplitheader" type="radio" name="splitheader" value="0"
 
53
      [% "checked='checked'" IF NOT splitheader %]>
 
54
    <label for="nosplitheader">
 
55
      Normal headers (prettier)
 
56
    </label>
 
57
    <br>
 
58
 
 
59
    <input id="splitheader" type="radio" name="splitheader" value="1"
 
60
      [% "checked='checked'" IF splitheader %]>
 
61
    <label for="splitheader">
 
62
      Stagger headers (often makes list more compact)
 
63
    </label>
 
64
  </p>
 
65
 
 
66
  <p>
 
67
    <input type="submit" value="Change Columns">
 
68
  </p>
 
69
</form>
 
70
 
 
71
<form action="colchange.cgi">
 
72
  <input type="hidden" name="rememberedquery" value="[% buffer FILTER html %]">
 
73
  <input type="hidden" name="resetit" value="1">
 
74
  <input type="submit" value="Reset to [% terms.Bugzilla %] default">
 
75
</form>
 
76
 
50
77
[% PROCESS global/footer.html.tmpl %]
51
78