From 146ff555acbb6fdcf78f620d2299747a090ae3d0 Mon Sep 17 00:00:00 2001 From: "gerv%gerv.net" <> Date: Sat, 27 Apr 2002 03:03:07 +0000 Subject: Bug 138995 - split up search.html.tmpl. Patch by gerv; 2xr=myk. --- .../en/default/search/boolean-charts.html.tmpl | 118 +++ template/en/default/search/form.html.tmpl | 670 +++++++++++++++++ template/en/default/search/knob.html.tmpl | 95 +++ .../en/default/search/search-advanced.html.tmpl | 831 +-------------------- template/en/default/search/search.html.tmpl | 831 +-------------------- 5 files changed, 899 insertions(+), 1646 deletions(-) create mode 100644 template/en/default/search/boolean-charts.html.tmpl create mode 100644 template/en/default/search/form.html.tmpl create mode 100644 template/en/default/search/knob.html.tmpl (limited to 'template/en') diff --git a/template/en/default/search/boolean-charts.html.tmpl b/template/en/default/search/boolean-charts.html.tmpl new file mode 100644 index 000000000..2d25f91f0 --- /dev/null +++ b/template/en/default/search/boolean-charts.html.tmpl @@ -0,0 +1,118 @@ + +[%# 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 Netscape Communications + # Corporation. Portions created by Netscape are + # Copyright (C) 1998 Netscape Communications Corporation. All + # Rights Reserved. + # + # Contributor(s): Gervase Markham + #%] + +[% types = [ + { name => "noop", description => "---" }, + { name => "equals", description => "is equal to" }, + { name => "notequals", description => "is not equal to" }, + { name => "substring", description => "contains the string" }, + { name => "casesubstring", description => "contains the string (exact case)" }, + { name => "notsubstring", description => "does not contain the string" }, + { name => "allwordssubstr", description => "contains all of the strings" }, + { name => "anywordssubstr", description => "contains any of the strings" }, + { name => "regexp", description => "contains regexp" }, + { name => "notregexp", description => "does not contain regexp" }, + { name => "lessthan", description => "is less than" }, + { name => "greaterthan", description => "is greater than" }, + { name => "anywords", description => "contains any of the words" }, + { name => "allwords", description => "contains all of the words" }, + { name => "nowords", description => "contains none of the words" }, + { name => "changedbefore", description => "changed before" }, + { name => "changedafter", description => "changed after" }, + { name => "changedfrom", description => "changed from" }, + { name => "changedto", description => "changed to" }, + { name => "changedby", description => "changed by" } ] %] + +

+ + + Advanced Querying Using Boolean Charts: + +

+ +[%# Whoever wrote the original version of boolean charts had a seriously twisted mind %] + +[% jsmagic = "onclick=\"document.forms[0].action='query.cgi#chart'; document.forms[0].method='POST'; return 1;\"" %] + +[% FOREACH chart = default.charts %] + [% chartnum = loop.count - 1 %] + + [% FOREACH row = chart %] + [% rownum = loop.count - 1 %] + + [% FOREACH col = row %] + [% colnum = loop.count - 1 %] + + + [% IF NOT col == row.last %] + + [% ELSE %] + + [% END %] + + [% END %] + + + [% IF NOT row == chart.last %] + + + + [% ELSE %] + + + + [% END %] + + [% END %] +
+ + + + + + + Or + + [% newor = colnum + 1 %] + +
And
+ [% newand = rownum + 1; newchart = chartnum + 1 %] + +       + +       +
+
+[% END %] diff --git a/template/en/default/search/form.html.tmpl b/template/en/default/search/form.html.tmpl new file mode 100644 index 000000000..916039743 --- /dev/null +++ b/template/en/default/search/form.html.tmpl @@ -0,0 +1,670 @@ + +[%# 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 Netscape Communications + # Corporation. Portions created by Netscape are + # Copyright (C) 1998 Netscape Communications Corporation. All + # Rights Reserved. + # + # Contributor(s): Chris Lahey [javascript fixes] + # Christian Reis [javascript rewrite] + # Gervase Markham + #%] + + [%# Note: use Template comments and not JS ones here, to avoid bloating + what we actually send to the browser %] + + + +[% query_variants = [ + { value => "allwordssubstr", description => "contains all of the words/strings" }, + { value => "anywordssubstr", description => "contains any of the words/strings" }, + { value => "substring", description => "contains the string" }, + { value => "casesubstring", description => "contains the string (exact case)" }, + { value => "allwords", description => "contains all of the words" }, + { value => "anywords", description => "contains any of the words" }, + { value => "regexp", description => "matches the regexp" }, + { value => "notregexp", description => "doesn’t match the regexp" } ] %] + +[%# *** Summary *** %] + + + + + + + + + +[%# *** Product Component Version Target *** %] + + + + + +[%# *** Comment URL Whiteboard Keywords *** %] + + [% FOREACH field = [ + { name => "long_desc", description => "A comment" }, + { name => "bug_file_loc", description => "The URL" }, + { name => "status_whiteboard", description => "Whiteboard" } ] %] + + [% UNLESS field.name == 'status_whiteboard' AND NOT Param('usestatuswhiteboard') %] + + + + + + + [% END %] + [% END %] + + [% IF have_keywords %] + + + + + + [% END %] +
Summary: + + + + + +
+ + + + + + + [% IF (Param("usetargetmilestone")) %] + + [% END %] + + + + + [%# Can't use the select block here because of onChange and the fact that + 'component' is a toolkit reserved word - we use 'component_' instead. %] + + + + + [% PROCESS select sel = { name => 'version', size => 5 } %] + + [% IF Param('usetargetmilestone') && target_milestone.size > 0 %] + [% PROCESS select sel = { name => 'target_milestone', size => 5 } %] + [% END %] + +
Product:Component:Version:Target:
+ + + +
+
[% field.description %]: + + +
Keywords: + + + +
+ +
+ +[%# *** Status Resolution Severity Priority Hardware OS *** %] + + + + + + + + + + + + + [% PROCESS select sel = { name => 'bug_status', size => 7 } %] + [% PROCESS select sel = { name => 'resolution', size => 7 } %] + [% PROCESS select sel = { name => 'bug_severity', size => 7 } %] + [% PROCESS select sel = { name => 'priority', size => 7 } %] + [% PROCESS select sel = { name => 'rep_platform', size => 7 } %] + [% PROCESS select sel = { name => 'op_sys', size => 7 } %] + +
Status:Resolution:Severity:Priority:Hardware:OS:
+ +

+ +[%# *** Email Numbering Votes *** %] + + + + + +[%# *** Bug Changes *** %] + + + +
+
+ + + Email and Numbering + + + + + + + [% FOREACH n = [1, 2] %] + + [% END %] + +
+ + + + + + + + + + + + + [% IF Param('useqacontact') %] + + + + [% END %] + + + + + + + + + + + + +
+ Any of: +
+ + +
+ + +
+ + +
+ + +
+ + +
+ +
+ +
+ + +
+
+ + + + + + + + + + + + + +
+ + bugs numbered: + + +
(comma-separated list)
+ Only bugs with at least: + + votes +
+ + +
+
+
+ Bug Changes + + +
+
Only bugs changed in the last
+
days
+
+ +
+
Only bugs where any of the fields
+
+ +
+ +
were changed between
+
+ + and +
(YYYY-MM-DD) +
+
to this value: (optional)
+
+ +
+
+ + +
+
+ +[%# Note: the

tag is unclosed at the end of this template %] + +[%############################################################################%] +[%# Block for SELECT fields #%] +[%############################################################################%] + +[% BLOCK select %] + + + +[% END %] diff --git a/template/en/default/search/knob.html.tmpl b/template/en/default/search/knob.html.tmpl new file mode 100644 index 000000000..beda930b3 --- /dev/null +++ b/template/en/default/search/knob.html.tmpl @@ -0,0 +1,95 @@ + +[%# 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 Netscape Communications + # Corporation. Portions created by Netscape are + # Copyright (C) 1998 Netscape Communications Corporation. All + # Rights Reserved. + # + # Contributor(s): Gervase Markham + #%] + + + + + +
+ + [% IF NOT userid %] + + [% ELSE %] +
+ Run this query +
+ + [% IF namedqueries.size > 0 %] +

+ + + + + + + + + + + +
+ + Load my remembered query: + + +
+ + Run my remembered query: +
+ + Forget my remembered query: +
+

+ [% END %] + + + Remember this as my default query +
+ + Remember this query, and name it: + +
      + and put it in my page footer +
+ [% END %] +
+
+ Sort results by: + + + + [% IF userdefaultquery %] +

+ + Set my default query back to the system default +

+ [% END %] +
+
diff --git a/template/en/default/search/search-advanced.html.tmpl b/template/en/default/search/search-advanced.html.tmpl index ec93e8592..b64470937 100644 --- a/template/en/default/search/search-advanced.html.tmpl +++ b/template/en/default/search/search-advanced.html.tmpl @@ -16,9 +16,7 @@ # Copyright (C) 1998 Netscape Communications Corporation. All # Rights Reserved. # - # Contributor(s): Chris Lahey [javascript fixes] - # Christian Reis [javascript rewrite] - # Gervase Markham + # Contributor(s): Gervase Markham #%] [% PROCESS global/header.html.tmpl @@ -26,833 +24,20 @@ extra = " onLoad=\"selectProduct(document.forms['queryform']);\"" %] -[%# Note: use Template comments and not JS ones here, to avoid bloating - what we actually send to the browser %] +[% button_name = "Search" %] - - -[% query_variants = [ - { value => "allwordssubstr", description => "contains all of the words/strings" }, - { value => "anywordssubstr", description => "contains any of the words/strings" }, - { value => "substring", description => "contains the string" }, - { value => "casesubstring", description => "contains the string (exact case)" }, - { value => "allwords", description => "contains all of the words" }, - { value => "anywords", description => "contains any of the words" }, - { value => "regexp", description => "matches the regexp" }, - { value => "notregexp", description => "doesn’t match the regexp" } ] %] - - - -[%# *** Summary *** %] - - - - - - - - - -[%# *** Product Component Version Target *** %] - - - - - -[%# *** Comment URL Whiteboard Keywords *** %] - - [% FOREACH field = [ - { name => "long_desc", description => "A comment" }, - { name => "bug_file_loc", description => "The URL" }, - { name => "status_whiteboard", description => "Whiteboard" } ] %] - - [% UNLESS field.name == 'status_whiteboard' AND NOT Param('usestatuswhiteboard') %] - - - - - - - [% END %] - [% END %] - - [% IF have_keywords %] - - - - - - [% END %] -
Summary: - - - - - -
- - - - - - - [% IF (Param("usetargetmilestone")) %] - - [% END %] - - - - - [%# Can't use the select block here because of onChange and the fact that - 'component' is a toolkit reserved word - we use 'component_' instead. %] - - - - - [% PROCESS select sel = { name => 'version', size => 5 } %] - - [% IF Param('usetargetmilestone') && target_milestone.size > 0 %] - [% PROCESS select sel = { name => 'target_milestone', size => 5 } %] - [% END %] - -
Product:Component:Version:Target:
- - - -
-
[% field.description %]: - - -
Keywords: - - - -
+[% PROCESS search/knob.html.tmpl %]
-[%# *** Status Resolution Severity Priority Hardware OS *** %] - - - - - - - - - - - - - [% PROCESS select sel = { name => 'bug_status', size => 7 } %] - [% PROCESS select sel = { name => 'resolution', size => 7 } %] - [% PROCESS select sel = { name => 'bug_severity', size => 7 } %] - [% PROCESS select sel = { name => 'priority', size => 7 } %] - [% PROCESS select sel = { name => 'rep_platform', size => 7 } %] - [% PROCESS select sel = { name => 'op_sys', size => 7 } %] - -
Status:Resolution:Severity:Priority:Hardware:OS:
+[% PROCESS "search/boolean-charts.html.tmpl" %]

+ Give me a clue about how to use this form. +

-[%# *** Email Numbering Votes *** %] - - - - - -[%# *** Bug Changes *** %] - - - - -[%# *** Action Selection *** %] - - - - -
-
- - - Email and Numbering - - - - - - - [% FOREACH n = [1, 2] %] - - [% END %] - -
- - - - - - - - - - - - - [% IF Param('useqacontact') %] - - - - [% END %] - - - - - - - - - - - - -
- Any of: -
- - -
- - -
- - -
- - -
- - -
- -
- -
- - -
-
- - - - - - - - - - - - - -
- - bugs numbered: - - -
(comma-separated list)
- Only bugs with at least: - - votes -
- - -
-
-
- Bug Changes - - -
-
Only bugs changed in the last
-
days
-
- -
-
Only bugs where any of the fields
-
- -
- -
were changed between
-
- - and -
(YYYY-MM-DD) -
-
to this value: (optional)
-
- -
-
- - -
-
- - [% IF NOT userid %] - - [% ELSE %] -
- Run this query -
- - [% IF namedqueries.size > 0 %] -

- - - - - - - - - - - -
- - Load my remembered query: - - -
- - Run my remembered query: -
- - Forget my remembered query: -
-

- [% END %] - - - Remember this as my default query -
- - Remember this query, and name it: - -
      - and put it in my page footer -
- [% END %] -
-
- Sort results by: - - - - [% IF userdefaultquery %] -

- - Set my default query back to the system default -

- [% END %] -
-
- -[%# *** Boolean Charts *** %] - -
- -[% types = [ - { name => "noop", description => "---" }, - { name => "equals", description => "is equal to" }, - { name => "notequals", description => "is not equal to" }, - { name => "substring", description => "contains the string" }, - { name => "casesubstring", description => "contains the string (exact case)" }, - { name => "notsubstring", description => "does not contain the string" }, - { name => "allwordssubstr", description => "contains all of the strings" }, - { name => "anywordssubstr", description => "contains any of the strings" }, - { name => "regexp", description => "contains regexp" }, - { name => "notregexp", description => "does not contain regexp" }, - { name => "lessthan", description => "is less than" }, - { name => "greaterthan", description => "is greater than" }, - { name => "anywords", description => "contains any of the words" }, - { name => "allwords", description => "contains all of the words" }, - { name => "nowords", description => "contains none of the words" }, - { name => "changedbefore", description => "changed before" }, - { name => "changedafter", description => "changed after" }, - { name => "changedfrom", description => "changed from" }, - { name => "changedto", description => "changed to" }, - { name => "changedby", description => "changed by" } ] %] - -

- - - Advanced Querying Using Boolean Charts: - -

- -[%# Whoever wrote the original version of boolean charts had a seriously twisted mind %] - -[% jsmagic = "onclick=\"document.forms[0].action='query.cgi#chart'; document.forms[0].method='POST'; return 1;\"" %] - -[% FOREACH chart = default.charts %] - [% chartnum = loop.count - 1 %] - - [% FOREACH row = chart %] - [% rownum = loop.count - 1 %] - - [% FOREACH col = row %] - [% colnum = loop.count - 1 %] - - - [% IF NOT col == row.last %] - - [% ELSE %] - - [% END %] - - [% END %] - - - [% IF NOT row == chart.last %] - - - - [% ELSE %] - - - - [% END %] - - [% END %] -
- - - - - - - Or - - [% newor = colnum + 1 %] - -
And
- [% newand = rownum + 1; newchart = chartnum + 1 %] - -       - -       -
-
-[% END %] - -

Give me a clue about how to use this form.

- - + [% PROCESS global/footer.html.tmpl %] - -[%############################################################################%] -[%# Block for SELECT fields #%] -[%############################################################################%] - -[% BLOCK select %] - - - -[% END %] diff --git a/template/en/default/search/search.html.tmpl b/template/en/default/search/search.html.tmpl index ec93e8592..b64470937 100644 --- a/template/en/default/search/search.html.tmpl +++ b/template/en/default/search/search.html.tmpl @@ -16,9 +16,7 @@ # Copyright (C) 1998 Netscape Communications Corporation. All # Rights Reserved. # - # Contributor(s): Chris Lahey [javascript fixes] - # Christian Reis [javascript rewrite] - # Gervase Markham + # Contributor(s): Gervase Markham #%] [% PROCESS global/header.html.tmpl @@ -26,833 +24,20 @@ extra = " onLoad=\"selectProduct(document.forms['queryform']);\"" %] -[%# Note: use Template comments and not JS ones here, to avoid bloating - what we actually send to the browser %] +[% button_name = "Search" %] - - -[% query_variants = [ - { value => "allwordssubstr", description => "contains all of the words/strings" }, - { value => "anywordssubstr", description => "contains any of the words/strings" }, - { value => "substring", description => "contains the string" }, - { value => "casesubstring", description => "contains the string (exact case)" }, - { value => "allwords", description => "contains all of the words" }, - { value => "anywords", description => "contains any of the words" }, - { value => "regexp", description => "matches the regexp" }, - { value => "notregexp", description => "doesn’t match the regexp" } ] %] - -
- -[%# *** Summary *** %] - - - - - - - - - -[%# *** Product Component Version Target *** %] - - - - - -[%# *** Comment URL Whiteboard Keywords *** %] - - [% FOREACH field = [ - { name => "long_desc", description => "A comment" }, - { name => "bug_file_loc", description => "The URL" }, - { name => "status_whiteboard", description => "Whiteboard" } ] %] - - [% UNLESS field.name == 'status_whiteboard' AND NOT Param('usestatuswhiteboard') %] - - - - - - - [% END %] - [% END %] - - [% IF have_keywords %] - - - - - - [% END %] -
Summary: - - - - - -
- - - - - - - [% IF (Param("usetargetmilestone")) %] - - [% END %] - - - - - [%# Can't use the select block here because of onChange and the fact that - 'component' is a toolkit reserved word - we use 'component_' instead. %] - - - - - [% PROCESS select sel = { name => 'version', size => 5 } %] - - [% IF Param('usetargetmilestone') && target_milestone.size > 0 %] - [% PROCESS select sel = { name => 'target_milestone', size => 5 } %] - [% END %] - -
Product:Component:Version:Target:
- - - -
-
[% field.description %]: - - -
Keywords: - - - -
+[% PROCESS search/knob.html.tmpl %]
-[%# *** Status Resolution Severity Priority Hardware OS *** %] - - - - - - - - - - - - - [% PROCESS select sel = { name => 'bug_status', size => 7 } %] - [% PROCESS select sel = { name => 'resolution', size => 7 } %] - [% PROCESS select sel = { name => 'bug_severity', size => 7 } %] - [% PROCESS select sel = { name => 'priority', size => 7 } %] - [% PROCESS select sel = { name => 'rep_platform', size => 7 } %] - [% PROCESS select sel = { name => 'op_sys', size => 7 } %] - -
Status:Resolution:Severity:Priority:Hardware:OS:
+[% PROCESS "search/boolean-charts.html.tmpl" %]

+ Give me a clue about how to use this form. +

-[%# *** Email Numbering Votes *** %] - - - - - -[%# *** Bug Changes *** %] - - - - -[%# *** Action Selection *** %] - - - - -
-
- - - Email and Numbering - - - - - - - [% FOREACH n = [1, 2] %] - - [% END %] - -
- - - - - - - - - - - - - [% IF Param('useqacontact') %] - - - - [% END %] - - - - - - - - - - - - -
- Any of: -
- - -
- - -
- - -
- - -
- - -
- -
- -
- - -
-
- - - - - - - - - - - - - -
- - bugs numbered: - - -
(comma-separated list)
- Only bugs with at least: - - votes -
- - -
-
-
- Bug Changes - - -
-
Only bugs changed in the last
-
days
-
- -
-
Only bugs where any of the fields
-
- -
- -
were changed between
-
- - and -
(YYYY-MM-DD) -
-
to this value: (optional)
-
- -
-
- - -
-
- - [% IF NOT userid %] - - [% ELSE %] -
- Run this query -
- - [% IF namedqueries.size > 0 %] -

- - - - - - - - - - - -
- - Load my remembered query: - - -
- - Run my remembered query: -
- - Forget my remembered query: -
-

- [% END %] - - - Remember this as my default query -
- - Remember this query, and name it: - -
      - and put it in my page footer -
- [% END %] -
-
- Sort results by: - - - - [% IF userdefaultquery %] -

- - Set my default query back to the system default -

- [% END %] -
-
- -[%# *** Boolean Charts *** %] - -
- -[% types = [ - { name => "noop", description => "---" }, - { name => "equals", description => "is equal to" }, - { name => "notequals", description => "is not equal to" }, - { name => "substring", description => "contains the string" }, - { name => "casesubstring", description => "contains the string (exact case)" }, - { name => "notsubstring", description => "does not contain the string" }, - { name => "allwordssubstr", description => "contains all of the strings" }, - { name => "anywordssubstr", description => "contains any of the strings" }, - { name => "regexp", description => "contains regexp" }, - { name => "notregexp", description => "does not contain regexp" }, - { name => "lessthan", description => "is less than" }, - { name => "greaterthan", description => "is greater than" }, - { name => "anywords", description => "contains any of the words" }, - { name => "allwords", description => "contains all of the words" }, - { name => "nowords", description => "contains none of the words" }, - { name => "changedbefore", description => "changed before" }, - { name => "changedafter", description => "changed after" }, - { name => "changedfrom", description => "changed from" }, - { name => "changedto", description => "changed to" }, - { name => "changedby", description => "changed by" } ] %] - -

- - - Advanced Querying Using Boolean Charts: - -

- -[%# Whoever wrote the original version of boolean charts had a seriously twisted mind %] - -[% jsmagic = "onclick=\"document.forms[0].action='query.cgi#chart'; document.forms[0].method='POST'; return 1;\"" %] - -[% FOREACH chart = default.charts %] - [% chartnum = loop.count - 1 %] - - [% FOREACH row = chart %] - [% rownum = loop.count - 1 %] - - [% FOREACH col = row %] - [% colnum = loop.count - 1 %] - - - [% IF NOT col == row.last %] - - [% ELSE %] - - [% END %] - - [% END %] - - - [% IF NOT row == chart.last %] - - - - [% ELSE %] - - - - [% END %] - - [% END %] -
- - - - - - - Or - - [% newor = colnum + 1 %] - -
And
- [% newand = rownum + 1; newchart = chartnum + 1 %] - -       - -       -
-
-[% END %] - -

Give me a clue about how to use this form.

- -
+ [% PROCESS global/footer.html.tmpl %] - -[%############################################################################%] -[%# Block for SELECT fields #%] -[%############################################################################%] - -[% BLOCK select %] - - - -[% END %] -- cgit v1.2.3-24-g4f1b