~ubuntu-branches/ubuntu/oneiric/bugzilla/oneiric

« back to all changes in this revision

Viewing changes to template/en/default/pages/quicksearchhack.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
 
  # Contributor(s): N.N.
15
 
  #                 Marc Schumann <wurblzap@gmail.com>
16
 
  #%]
17
 
 
18
 
[% PROCESS global/variables.none.tmpl %]
19
 
 
20
 
[% INCLUDE global/header.html.tmpl
21
 
   title  = "$terms.Bugzilla QuickSearch (for Hackers)",
22
 
   style  = 'th {text-align: left}'
23
 
   onload = 'document.forms[\'f\'].quicksearch.focus()'
24
 
 %]
25
 
 
26
 
<p>
27
 
  Type in one or more words (or word fragments) to search for:
28
 
</p>
29
 
 
30
 
<form name="f" action="buglist.cgi" method="get"
31
 
      onsubmit="if (this.quicksearch.value == '')
32
 
                { alert('Please enter one or more search terms first.');
33
 
                  return false; } return true;">
34
 
  <input type="text" size="40" name="quicksearch">
35
 
  <input type="submit" value="Find" id="find">
36
 
  <input type="submit" name="load" value="Load Search Form" id="load">
37
 
</form>
38
 
 
39
 
<p>
40
 
  This is a case-insensitive &ldquo;all words as substrings&rdquo; search;
41
 
  words are separated by spaces.
42
 
  By default, the following fields are relevant: Summary, Keywords,
43
 
  Product, Component, Status Whiteboard.
44
 
  If a word looks like a part of a URL, that field is included in the search,
45
 
  too.
46
 
</p>
47
 
<p>
48
 
  The generic format for a &ldquo;word&rdquo; is
49
 
  <tt>field1,&hellip;,fieldN:value1,&hellip;,valueM</tt>.
50
 
  A [% terms.bug %] qualifies if at least one of the values occurs as a
51
 
  substring in at least one of the fields.
52
 
  For example, <tt>assignee,reporter,qa:ibm,sun</tt> will give you
53
 
  [%+ terms.bugs %] where the assignee, reporter, or qa contact has a login
54
 
  that contains <tt>ibm</tt> or <tt>sun</tt>.
55
 
  If only <tt>value1,&hellip;,valueM</tt> is given, the prefix (roughly) defaults to
56
 
  <tt>summary,keywords,product,component,statuswhiteboard:</tt> as noted above.
57
 
  You can use <tt>-<i>word</i></tt> to express the logical negation of
58
 
  <tt><i>word</i></tt>.
59
 
</p>
60
 
<p>
61
 
  Here is a complete listing of available fields (the Shortcut column is just
62
 
  for access speed):
63
 
</p>
64
 
 
65
 
<table border="1">
66
 
<thead>
67
 
<tr>
68
 
  <th>Searched by default</th>
69
 
  <th>Shortcut</th>
70
 
  <th>Field Name</th>
71
 
  <th>Aliases</th>
72
 
  <th>Description</th>
73
 
</tr>
74
 
</thead>
75
 
 
76
 
<!-- Status, Resolution, Platform, OS, Priority, Severity -->
77
 
 
78
 
<tr>
79
 
  <td>&nbsp;</td>
80
 
  <td rowspan="2">
81
 
    <tt>UNCO,NEW,&hellip;,CLOS,<br>FIX,DUP,&hellip;<i>(as first word)</i></tt>
82
 
  </td>
83
 
  <td><tt>status</tt></td>
84
 
  <td>&nbsp;</td>
85
 
  <td>
86
 
    <a href="page.cgi?id=fields.html#status">Status</a>
87
 
    <i>(&ldquo;bug_status&rdquo;)</i>
88
 
  </td>
89
 
</tr>
90
 
<tr>
91
 
  <td>&nbsp;</td>
92
 
  <td><tt>resolution</tt></td>
93
 
  <td>&nbsp;</td>
94
 
  <td><a href="page.cgi?id=fields.html#resolution">Resolution</a></td>
95
 
</tr>
96
 
<tr>
97
 
  <td>&nbsp;</td>
98
 
  <td><i>as-is</i></td>
99
 
  <td><tt>platform</tt></td>
100
 
  <td>&nbsp;</td>
101
 
  <td>
102
 
    <a href="page.cgi?id=fields.html#rep_platform">Platform</a>
103
 
    <i>(&ldquo;rep_platform&rdquo;)</i>
104
 
  </td>
105
 
</tr>
106
 
<tr>
107
 
  <td>&nbsp;</td>
108
 
  <td>&nbsp;</td>
109
 
  <td><tt>os</tt></td>
110
 
  <td><tt>opsys</tt></td>
111
 
  <td>
112
 
    <a href="page.cgi?id=fields.html#op_sys">OS</a>
113
 
    <i>(&ldquo;op_sys&rdquo;)</i>
114
 
  </td>
115
 
</tr>
116
 
<tr>
117
 
  <td>&nbsp;</td>
118
 
  <td><tt>p1,p2</tt> <i>or</i> <tt>p1-2</tt></td>
119
 
  <td><tt>priority</tt></td>
120
 
  <td><tt>pri</tt></td>
121
 
  <td><a href="page.cgi?id=fields.html#priority">Priority</a></td>
122
 
</tr>
123
 
<tr>
124
 
  <td>&nbsp;</td>
125
 
  <td><tt>blo,cri,&hellip;,enh</tt></td>
126
 
  <td><tt>severity</tt></td>
127
 
  <td><tt>sev</tt></td>
128
 
  <td>
129
 
    <a href="page.cgi?id=fields.html#bug_severity">Severity</a>
130
 
    <i>(&ldquo;bug_severity&rdquo;)</i>
131
 
  </td>
132
 
</tr>
133
 
 
134
 
<!-- People: AssignedTo, Reporter, QA Contact, CC, Added comment -->
135
 
<!-- Added comment is missing!!!! -->
136
 
 
137
 
<tr>
138
 
  <td>&nbsp;</td>
139
 
  <td><b>@</b><i>assignee</i></td>
140
 
  <td><tt>assignedto</tt></td>
141
 
  <td><tt>assignee</tt></td>
142
 
  <td>
143
 
    <a href="page.cgi?id=fields.html#assigned_to">Assignee</a>
144
 
    <i>(&ldquo;assigned_to&rdquo;)</i>
145
 
  </td>
146
 
</tr>
147
 
<tr>
148
 
  <td>&nbsp;</td>
149
 
  <td>&nbsp;</td>
150
 
  <td><tt>reporter</tt></td>
151
 
  <td><tt>rep</tt></td>
152
 
  <td>Reporter (login)</td>
153
 
</tr>
154
 
<tr>
155
 
  <td>&nbsp;</td>
156
 
  <td>&nbsp;</td>
157
 
  <td><tt>qa</tt></td>
158
 
  <td><tt>qacontact</tt></td>
159
 
  <td>QA Contact (login) <i>(&ldquo;qa_contact&rdquo;)</i></td>
160
 
</tr>
161
 
<tr>
162
 
  <td>&nbsp;</td>
163
 
  <td>&nbsp;</td>
164
 
  <td><tt>cc</tt></td>
165
 
  <td>&nbsp;</td>
166
 
  <td>CC (login)</td>
167
 
</tr>
168
 
 
169
 
<!-- Product, Version, Component, Target Milestone -->
170
 
 
171
 
<tr>
172
 
  <td><i>yes</i></td>
173
 
  <td rowspan="2"><b>:</b><i>area</i></td>
174
 
  <td><tt>product</tt></td>
175
 
  <td><tt>prod</tt></td>
176
 
  <td>Product (enum)</td>
177
 
</tr>
178
 
<tr>
179
 
  <td><i>yes</i></td>
180
 
  <td><tt>component</tt></td>
181
 
  <td><tt>comp</tt></td>
182
 
  <td><a href="describecomponents.cgi">Component</a></td>
183
 
</tr>
184
 
<tr>
185
 
  <td>&nbsp;</td>
186
 
  <td>&nbsp;</td>
187
 
  <td><tt>version</tt></td>
188
 
  <td><tt>ver</tt></td>
189
 
  <td>Version (enum)</td>
190
 
</tr>
191
 
<tr>
192
 
  <td>&nbsp;</td>
193
 
  <td>&nbsp;</td>
194
 
  <td><tt>milestone</tt></td>
195
 
  <td><tt>target, targetmilestone</tt></td>
196
 
  <td>Target Milestone <i>(&ldquo;target_milestone&rdquo;)</i></td>
197
 
</tr>
198
 
 
199
 
<!-- Summary, Description, URL, Status whiteboard, Keywords -->
200
 
 
201
 
<tr>
202
 
  <td><i>yes</i></td>
203
 
  <td>&nbsp;</td>
204
 
  <td><tt>summary</tt></td>
205
 
  <td><tt>shortdesc</tt></td>
206
 
  <td>
207
 
    [% terms.Bug %] Summary (short text)
208
 
    <i>(&ldquo;short_desc&rdquo;)</i>
209
 
  </td>
210
 
</tr>
211
 
<tr>
212
 
  <td>&nbsp;</td>
213
 
  <td>&nbsp;</td>
214
 
  <td><tt>description</tt></td>
215
 
  <td><tt>desc, longdesc<!--, comment--></tt></td>
216
 
  <!-- reserve "comment" for "added comment" login search?! -->
217
 
  <td>[% terms.Bug %] Description / Comments (long text)</td>
218
 
</tr>
219
 
<tr>
220
 
  <td><i>depends</i></td>
221
 
  <td>&nbsp;</td>
222
 
  <td><tt>url</tt></td>
223
 
  <td>&nbsp;</td>
224
 
  <td>URL <i>(&ldquo;bug_file_loc&rdquo;)</i></td>
225
 
</tr>
226
 
<tr>
227
 
  <td><i>yes</i></td>
228
 
  <td>&nbsp;</td>
229
 
  <td><tt>statuswhiteboard</tt></td>
230
 
  <td><tt>sw, whiteboard</tt></td>
231
 
  <td>Status Whiteboard <i>(&ldquo;status_whiteboard&rdquo;)</i></td>
232
 
</tr>
233
 
<tr>
234
 
  <td><i>yes</i></td>
235
 
  <td><b>!</b><i>keyword</i></td>
236
 
  <td><tt>keywords</tt></td>
237
 
  <td><tt>kw</tt></td>
238
 
  <td><a href="describekeywords.cgi">Keywords</a></td>
239
 
</tr>
240
 
 
241
 
<!-- Attachments -->
242
 
 
243
 
<tr>
244
 
  <td>&nbsp;</td>
245
 
  <td>&nbsp;</td>
246
 
  <td><tt>attachmentdesc</tt></td>
247
 
  <td><tt>attachdesc</tt></td>
248
 
  <td>
249
 
    Attachment Description
250
 
    <i>(&ldquo;attachments.description&rdquo;)</i>
251
 
  </td>
252
 
</tr>
253
 
<tr>
254
 
  <td>&nbsp;</td>
255
 
  <td>&nbsp;</td>
256
 
  <td><tt>attachmentdata</tt></td>
257
 
  <td><tt>attachdata</tt></td>
258
 
  <td>Attachment Data <i>(&ldquo;attach_data.thedata&rdquo;)</i></td>
259
 
</tr>
260
 
<tr>
261
 
  <td>&nbsp;</td>
262
 
  <td>&nbsp;</td>
263
 
  <td><tt>attachmentmimetype</tt></td>
264
 
  <td><tt>attachmimetype</tt></td>
265
 
  <td>Attachment mime-type <i>(&ldquo;attachments.mimetype&rdquo;)</i></td>
266
 
</tr>
267
 
<tr>
268
 
  <td>&nbsp;</td>
269
 
  <td>&nbsp;</td>
270
 
  <td><tt>votes</tt></td>
271
 
  <td>&nbsp;</td>
272
 
  <td>
273
 
    Number of votes<br>
274
 
    (votes:<i>N</i> and votes&gt;=<i>N</i> mean "at least N votes",
275
 
    votes&gt;<i>N</i> means "more than N votes")
276
 
  </td>
277
 
</tr>
278
 
</table>
279
 
 
280
 
<p>
281
 
  Examples for some useful abbreviations:
282
 
</p>
283
 
<table border="1">
284
 
<thead>
285
 
<tr>
286
 
  <th>Syntax</th>
287
 
  <th>Semantics and Examples</th>
288
 
</tr>
289
 
</thead>
290
 
 
291
 
<!--
292
 
<tr>
293
 
  <td><i>STAT</i> <i>(as first word)</i></td>
294
 
  <td><b>status,resolution:</b> <i>STAT</i></td>
295
 
</tr>
296
 
<tr>
297
 
  <td></td>
298
 
  <td></td>
299
 
</tr>
300
 
<tr>
301
 
  <td><tt>ALL</tt> <i>(as first word)</i></td>
302
 
  <td><i>include all resolved [% terms.bugs %] in your search</i></td>
303
 
</tr>
304
 
<tr>
305
 
  <td><tt>+DUP,FIXED</tt> <i>(as first word)</i></td>
306
 
  <td><i>include DUPLICATE and FIXED [% terms.bugs %] in your search</i></td>
307
 
</tr>
308
 
-->
309
 
 
310
 
<tr>
311
 
  <td><b>:</b><i>area</i></td>
312
 
  <td><b>product,component:</b><i>area</i></td>
313
 
</tr>
314
 
<tr>
315
 
  <td><i>sev</i></td>
316
 
  <td><b>severity:</b><i>sev</i></td>
317
 
</tr>
318
 
<tr>
319
 
  <td><tt>blo,cri,maj</tt></td>
320
 
  <td><i>severe [% terms.bugs %]</i></td>
321
 
</tr>
322
 
<tr>
323
 
  <td><tt>enh</tt></td>
324
 
  <td><i>enhancement requests</i></td>
325
 
</tr>
326
 
<tr>
327
 
  <td><b>p</b><i>level</i></td>
328
 
  <td><b>priority:</b><i>level</i></td>
329
 
</tr>
330
 
<tr>
331
 
  <td><tt>p1</tt></td>
332
 
  <td><i>very high-priority [% terms.bugs %]</i></td>
333
 
</tr>
334
 
<tr>
335
 
  <td><tt>p1-2</tt></td>
336
 
  <td><i>high-priority [% terms.bugs %]</i></td>
337
 
</tr>
338
 
<tr>
339
 
  <td><b>@</b><i>assignee</i></td>
340
 
  <td><b>assignedto:</b><i>assignee</i></td>
341
 
</tr>
342
 
<tr>
343
 
  <td><b>!</b><i>keyword</i></td>
344
 
  <td><b>keywords:</b><i>keyword</i></td>
345
 
</tr>
346
 
</table>
347
 
 
348
 
<p>
349
 
  More information can be found in the
350
 
  <a href="page.cgi?id=quicksearch.html#features">&ldquo;Features&rdquo;</a>
351
 
  section on the <a href="page.cgi?id=quicksearch.html">introductory page</a>.
352
 
</p>
353
 
 
354
 
[% PROCESS global/footer.html.tmpl %]