blob: 080887abbdb20541c75e3d59ebece0185dc350b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
[%# The contents of this file are subject to the Mozilla Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is the Bugzilla Bug Tracking System.
#
# The Initial Developer of the Original Code is the Mozilla Foundation
# Portions created by the Initial Developers are Copyright (C) 2011 the
# Initial Developer. All Rights Reserved.
#
# Contributor(s):
# Dave Lawrence <dkl@mozilla.com>
#%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/header.html.tmpl
title = "Search " _ terms.Bugs _ " using Google"
%]
[% WRAPPER search/tabs.html.tmpl %]
<p>
Use the <a href="http://www.google.com">Google</a> search engine to search
for [% terms.Bugzilla +%] [%+ terms.bugs %]. Find the [% terms.bugs %] you are
looking for by entering words that best describe it.
</p>
<p>
For example, if the [% terms.bug %] you are looking for is a browser crash when
you go to a secure web site with an embedded Flash animation, you might search
for "crash secure SSL flash".
</p>
<p>
<span style="color:red;">*</span>
Google only indexes publicly viewable [% terms.bugs %] and all may not be represented.
<p>
<form method="get" action="http://www.google.com/search">
<input type="hidden" name="sitesearch" value="bugzilla.mozilla.org">
<nobr>
<input type="text" name="q" size="60" maxlength="255" value="">
<input type="submit" value="Search">
</nobr>
</form>
[% END %]
[% PROCESS global/footer.html.tmpl %]
|