~ubuntu-branches/debian/sid/bugzilla/sid

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Raphael Bossek
  • Date: 2008-06-27 22:34:34 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080627223434-0ib57vstn43bb4a3
Tags: 3.0.4.1-1
* Update of French, Russian and German translations. (closes: #488251)
* Added Bulgarian and Belarusian translations.

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 search/form.html.tmpl, search/knob.html.tmpl and
25
 
  # search/boolean-charts.html.tmpl.
26
 
  #%]
27
 
 
28
 
[% PROCESS global/variables.none.tmpl %]
29
 
 
30
 
[% USE Bugzilla %]
31
 
[% cgi = Bugzilla.cgi %]
32
 
 
33
 
 
34
 
[% js_data = BLOCK %]
35
 
var queryform = "queryform"
36
 
[% END %]
37
 
 
38
 
[% PROCESS global/header.html.tmpl
39
 
  title = "Search for $terms.bugs"
40
 
  onload = "doOnSelectProduct(0); initHelp();"
41
 
  javascript = js_data
42
 
  javascript_urls = [ "js/productform.js" ]
43
 
  style = "dl.bug_changes dt {
44
 
             margin-top: 15px;
45
 
           }"
46
 
%]
47
 
 
48
 
[% WRAPPER search/tabs.html.tmpl %]
49
 
 
50
 
[% button_name = "Search" %]
51
 
 
52
 
[%# The decent help requires Javascript %]
53
 
[% IF NOT cgi.param("help") %]
54
 
  [% IF cgi.user_agent("Mozilla/5") %]
55
 
    <script type="text/javascript"> <!--
56
 
      document.write("<p><a href='query.cgi?help=1&amp;format=advanced'>Give me some help<\/a> (reloads page).<\/p>");
57
 
      // -->
58
 
    </script>
59
 
  [% END %]
60
 
[% ELSE %]
61
 
  <p>
62
 
      For help, mouse over the page elements.
63
 
      <font color="red">
64
 
      [% IF cgi.user_agent("Mozilla/5") %]
65
 
        Note that if the help popups are hidden by form element scroll bars,
66
 
        this is a b<!-- word broken up to pass test 009 -->ug in your browser,
67
 
        not in [% terms.Bugzilla %].
68
 
      [% END %]
69
 
    </font>
70
 
  </p>
71
 
[% END %]
72
 
<form method="get" action="buglist.cgi" name="queryform">
73
 
 
74
 
[% PROCESS search/form.html.tmpl %]
75
 
 
76
 
[% PROCESS search/knob.html.tmpl %]
77
 
 
78
 
<hr>
79
 
 
80
 
[% PROCESS "search/boolean-charts.html.tmpl" %]
81
 
 
82
 
</form>
83
 
 
84
 
[% PROCESS "search/search-help.html.tmpl" IF cgi.param("help") %]
85
 
 
86
 
[% END %]
87
 
 
88
 
[% PROCESS global/footer.html.tmpl %]