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
17e3ebfc
Commit
17e3ebfc
authored
Aug 24, 1999
by
terry%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch suggested by dbaron@fas.harvard.edu -- kick the javascript on
loading, in case the default query has some relevant fields set.
parent
1d971ce0
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
CGI.pl
CGI.pl
+5
-2
query.cgi
query.cgi
+2
-1
No files found.
CGI.pl
View file @
17e3ebfc
...
@@ -481,7 +481,7 @@ name=PleaseMailAPassword>
...
@@ -481,7 +481,7 @@ name=PleaseMailAPassword>
sub
PutHeader
{
sub
PutHeader
{
my
(
$title
,
$h1
,
$h2
)
=
(
@_
);
my
(
$title
,
$h1
,
$h2
,
$extra
)
=
(
@_
);
if
(
!
defined
$h1
)
{
if
(
!
defined
$h1
)
{
$h1
=
$title
;
$h1
=
$title
;
...
@@ -489,11 +489,14 @@ sub PutHeader {
...
@@ -489,11 +489,14 @@ sub PutHeader {
if
(
!
defined
$h2
)
{
if
(
!
defined
$h2
)
{
$h2
=
""
;
$h2
=
""
;
}
}
if
(
!
defined
$extra
)
{
$extra
=
""
;
}
print
"<HTML><HEAD>\n<TITLE>$title</TITLE>\n"
;
print
"<HTML><HEAD>\n<TITLE>$title</TITLE>\n"
;
print
Param
(
"headerhtml"
)
.
"\n</HEAD>\n"
;
print
Param
(
"headerhtml"
)
.
"\n</HEAD>\n"
;
print
"<BODY BGCOLOR=\"#FFFFFF\" TEXT=\"#000000\"\n"
;
print
"<BODY BGCOLOR=\"#FFFFFF\" TEXT=\"#000000\"\n"
;
print
"LINK=\"#0000EE\" VLINK=\"#551A8B\" ALINK=\"#FF0000\">\n"
;
print
"LINK=\"#0000EE\" VLINK=\"#551A8B\" ALINK=\"#FF0000\"
$extra
>\n"
;
print
PerformSubsts
(
Param
(
"bannerhtml"
),
undef
);
print
PerformSubsts
(
Param
(
"bannerhtml"
),
undef
);
...
...
query.cgi
View file @
17e3ebfc
...
@@ -349,7 +349,8 @@ function selectProduct(f) {
...
@@ -349,7 +349,8 @@ function selectProduct(f) {
# set legal_product [concat $default{"product"} [lreplace $legal_product $w $w]]
# set legal_product [concat $default{"product"} [lreplace $legal_product $w $w]]
# }
# }
PutHeader
(
"Bugzilla Query Page"
,
"Query Page"
);
PutHeader
(
"Bugzilla Query Page"
,
"Query Page"
,
""
,
q{onLoad="selectProduct(document.forms[0]);"}
);
push
@::legal_resolution
,
"---"
;
# Oy, what a hack.
push
@::legal_resolution
,
"---"
;
# Oy, what a hack.
push
@::legal_target_milestone
,
"---"
;
# Oy, what a hack.
push
@::legal_target_milestone
,
"---"
;
# Oy, what a hack.
...
...
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