From 89eccc9b74482b8c636a02d3a6bcf3ec2947eb7b Mon Sep 17 00:00:00 2001 From: "terry%netscape.com" <> Date: Sat, 21 Nov 1998 03:18:33 +0000 Subject: Backed out Andrew's patch -- turns out it was doing quoting sublty wrong. --- query.cgi | 135 ++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 65 insertions(+), 70 deletions(-) (limited to 'query.cgi') diff --git a/query.cgi b/query.cgi index ccac365de..b24dee0f3 100755 --- a/query.cgi +++ b/query.cgi @@ -99,8 +99,8 @@ print "Set-Cookie: BUGLIST= Content-type: text/html\n\n"; GetVersionTable(); -my $who = GeneratePeopleInput("assigned_to", 45, $default{"assigned_to"}); -my $reporter = GeneratePeopleInput("reporter", 45, $default{"reporter"}); +my $who = GeneratePeopleInput("assigned_to", $default{"assigned_to"}); +my $reporter = GeneratePeopleInput("reporter", $default{"reporter"}); # Muck the "legal product" list so that the default one is always first (and @@ -118,102 +118,97 @@ PutHeader("Bugzilla Query Page", "Query Page"); push @::legal_resolution, "---"; # Oy, what a hack. print " -
+ - - - - - + + + + + - - - - -
Status:Resolution:Platform:Priority:Severity:Status:Resolution:Platform:Priority:Severity:
- +

+

- +

+

- +

+

- +

+

- +

+

- - -
- Assigned To: - $who +
Assigned To:$who +

-

- Reporter: - $reporter +
Reporter:$reporter
-Changed in the last days. +Changed in the last days.

- - - + + + - - -
Program:Version:Component:Program:Version:Component:
-

+

+ - +

+

- +

+

- +
- - - - + + + + - - - - + + + +
Summary:SubstringRegexpSummary:SubstringRegexp
Description:SubstringRegexpDescription:SubstringRegexp

@@ -221,27 +216,27 @@ print "
- Run this query + Run this query
"; if ($namelist ne "") { print " - - -
Load the remembered query: + + + - + - +
Load the remembered query:
Run the remembered query: Run the remembered query:
Forget the remembered query: Forget the remembered query:
" } print " - Remember this as the default query + Remember this as the default query
- Remember this query, and name it: - + Remember this query, and name it: +
Sort By: @@ -252,7 +247,7 @@ print " - +
Give me a clue about how to use this form. @@ -262,14 +257,14 @@ print " if (defined $::COOKIE{"Bugzilla_login"}) { if ($::COOKIE{"Bugzilla_login"} eq Param("maintainer")) { - print "Edit Bugzilla operating parameters
\n"; - print "Edit Bugzilla component owners
\n"; + print "Edit Bugzilla operating parameters
\n"; + print "Edit Bugzilla component owners
\n"; } - print "Log in as someone besides $::COOKIE{'Bugzilla_login'}
\n"; + print "Log in as someone besides $::COOKIE{'Bugzilla_login'}
\n"; } -print "Change your password.
\n"; -print "Enter a new bug.
\n"; -print "Bug reports.
\n"; +print "Change your password.
\n"; +print "Create a new bug.
\n"; +print "Bug reports
\n"; -- cgit v1.2.3-24-g4f1b