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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
3faeb367
Commit
3faeb367
authored
Sep 16, 2000
by
dave%intrec.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for bug 51270: param for bodyhtml to allow sites to customize
background colors/image and link colors.
parent
c5d3b08e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
CGI.pl
CGI.pl
+1
-2
defparams.pl
defparams.pl
+5
-0
No files found.
CGI.pl
View file @
3faeb367
...
...
@@ -921,8 +921,7 @@ sub PutHeader {
print
"<HTML><HEAD>\n<TITLE>$title</TITLE>\n"
;
print
Param
(
"headerhtml"
)
.
"\n$jscript\n</HEAD>\n"
;
print
"<BODY BGCOLOR=\"#FFFFFF\" TEXT=\"#000000\"\n"
;
print
"LINK=\"#0000EE\" VLINK=\"#551A8B\" ALINK=\"#FF0000\" $extra>\n"
;
print
"<BODY "
.
Param
(
"bodyhtml"
)
.
" $extra>\n"
;
print
PerformSubsts
(
Param
(
"bannerhtml"
),
undef
);
...
...
defparams.pl
View file @
3faeb367
...
...
@@ -238,6 +238,11 @@ DefParam("headerhtml",
"l"
,
''
);
DefParam
(
"bodyhtml"
,
"Additional parameters to add to the BODY tag at the beginning of documents, eg. background image/colors, link colors, etc"
,
"l"
,
'BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000"'
);
DefParam
(
"footerhtml"
,
"HTML to add to the bottom of every page. By default it displays the blurbhtml, and %commandmenu%, a menu of useful commands. You probably really want either headerhtml or footerhtml to include %commandmenu%."
,
"l"
,
...
...
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