Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
abe4bd40
Commit
abe4bd40
authored
Jan 27, 2000
by
terry%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for keywords.
parent
bad296d9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
long_list.cgi
long_list.cgi
+9
-2
No files found.
long_list.cgi
View file @
abe4bd40
...
...
@@ -31,6 +31,7 @@ require "CGI.pl";
sub
sillyness
{
my
$zz
;
$zz
=
$::legal_keywords
;
$zz
=
$::usergroupset
;
$zz
=
%::
FORM
;
}
...
...
@@ -41,6 +42,8 @@ PutHeader ("Full Text Bug Listing");
ConnectToDatabase
();
quietly_check_login
();
GetVersionTable
();
my
$generic_query
=
"
select
bugs.bug_id,
...
...
@@ -59,7 +62,8 @@ select
bugs.short_desc,
bugs.target_milestone,
bugs.qa_contact,
bugs.status_whiteboard
bugs.status_whiteboard,
bugs.keywords
from bugs,profiles assign,profiles report
where assign.userid = bugs.assigned_to and report.userid = bugs.reporter and
bugs.groupset & $::usergroupset = bugs.groupset and"
;
...
...
@@ -73,7 +77,7 @@ foreach my $bug (split(/:/, $::FORM{'buglist'})) {
my
(
$id
,
$product
,
$version
,
$platform
,
$opsys
,
$status
,
$severity
,
$priority
,
$resolution
,
$assigned
,
$reporter
,
$component
,
$url
,
$shortdesc
,
$target_milestone
,
$qa_contact
,
$status_whiteboard
)
=
(
@row
);
$status_whiteboard
,
$keywords
)
=
(
@row
);
print
"<IMG SRC=\"1x1.gif\" WIDTH=1 HEIGHT=80 ALIGN=LEFT>\n"
;
print
"<TABLE WIDTH=100%>\n"
;
print
"<TD COLSPAN=4><TR><DIV ALIGN=CENTER><B><FONT =\"+3\">"
.
...
...
@@ -104,6 +108,9 @@ foreach my $bug (split(/:/, $::FORM{'buglist'})) {
print
"<TR><TD COLSPAN=6><B>URL:</B> "
;
print
"<A HREF=\""
.
$url
.
"\">"
.
html_quote
(
$url
)
.
"</A>\n"
;
print
"<TR><TD COLSPAN=6><B>Summary:</B> "
.
html_quote
(
$shortdesc
)
.
"\n"
;
if
(
@::legal_keywords
)
{
print
"<TR><TD><B>Keywords: </B>$keywords</TD></TR>\n"
;
}
if
(
Param
(
"usestatuswhiteboard"
))
{
print
"<TR><TD COLSPAN=6><B>Status Whiteboard:"
.
html_quote
(
$status_whiteboard
)
.
"\n"
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment