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
80e66f43
Commit
80e66f43
authored
Sep 24, 1999
by
terry%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch by holger@holger.om.org (Holger Schurig) -- several cleanups.
parent
8829ae5f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
CGI.pl
CGI.pl
+2
-4
buglist.cgi
buglist.cgi
+1
-2
query.cgi
query.cgi
+1
-1
reports.cgi
reports.cgi
+3
-0
No files found.
CGI.pl
View file @
80e66f43
...
...
@@ -29,11 +29,9 @@ require 'globals.pl';
sub
GeneratePersonInput
{
my
(
$field
,
$required
,
$def_value
,
$extraJavaScript
)
=
(
@_
);
if
(
!
defined
$extraJavaScript
)
{
$extraJavaScript
=
""
;
}
$extraJavaScript
||=
""
;
if
(
$extraJavaScript
ne
""
)
{
$extraJavaScript
=
"onChange=\"
$extraJavaScript
\""
;
$extraJavaScript
=
"onChange=\"
$extraJavaScript
\""
;
}
return
"<INPUT NAME=\"$field\" SIZE=32 $extraJavaScript VALUE=\"$def_value\">"
;
}
...
...
buglist.cgi
View file @
80e66f43
...
...
@@ -546,14 +546,13 @@ while (@row = FetchSQLData()) {
next
;
}
my
$value
=
shift
@row
;
my
$nowrap
=
""
;
if
(
$::needquote
{
$c
})
{
$value
=
html_quote
(
$value
);
}
else
{
$value
=
"<nobr>$value</nobr>"
;
}
pnl
"<td
$nowrap
>$value"
;
pnl
"<td>$value"
;
}
if
(
$dotweak
)
{
my
$value
=
shift
@row
;
...
...
query.cgi
View file @
80e66f43
...
...
@@ -57,7 +57,7 @@ if (!defined $::buffer || $::buffer eq "") {
$::buffer
=
$::COOKIE
{
"DEFAULTQUERY"
};
}
my
%
default
;
use
vars
qw(%default)
;
my
%
type
;
foreach
my
$name
(
"bug_status"
,
"resolution"
,
"assigned_to"
,
"rep_platform"
,
...
...
reports.cgi
View file @
80e66f43
...
...
@@ -261,6 +261,9 @@ FIN
# start painting report #
#########################
$bugs_status
{
'NEW'
}
||=
'0'
;
$bugs_status
{
'ASSIGNED'
}
||=
'0'
;
$bugs_status
{
'REOPENED'
}
||=
'0'
;
print
<<FIN;
<h1>$quip</h1>
<table border=1 cellpadding=5>
...
...
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