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
44264182
Commit
44264182
authored
Nov 11, 2002
by
timeless%mozdev.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 178178 Sidebar name should not be hardcoded to "Bugzilla"
r=bbaetz a=justdave
parent
4185f96c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
11 deletions
+14
-11
index.html.tmpl
template/en/default/index.html.tmpl
+14
-11
No files found.
template/en/default/index.html.tmpl
View file @
44264182
...
...
@@ -32,17 +32,20 @@
<script
type=
"text/javascript"
language=
"JavaScript"
>
<!--
function
addSidebar
()
{
if
((
typeof
window
.
sidebar
==
"object"
)
&&
(
typeof
window
.
sidebar
.
addPanel
==
"function"
))
{
window
.
sidebar
.
addPanel
(
"Bugzilla"
,
"[% Param('urlbase') %]sidebar.cgi"
,
""
);
}
else
{
var
rv
=
window
.
confirm
(
"This page is enhanced for use with Netscape 6. "
+
"Would you like to upgrade now?"
);
if
(
rv
)
document
.
location
.
href
=
"http://home.netscape.com/download/index.html"
;
}
}
if
((
typeof
window
.
sidebar
==
"object"
)
&&
(
typeof
window
.
sidebar
.
addPanel
==
"function"
))
{
var
sidebarname
=
window
.
location
.
host
;
if
(
!
/bug/i
.
test
(
sidebarname
))
sidebarname
=
"Bugzilla "
+
sidebarname
;
window
.
sidebar
.
addPanel
(
sidebarname
,
"[% Param('urlbase') %]sidebar.cgi"
,
""
);
}
else
{
var
rv
=
window
.
confirm
(
"This page is enhanced for use with Netscape 6. "
+
"Would you like to upgrade now?"
);
if
(
rv
)
document
.
location
.
href
=
"http://home.netscape.com/download/index.html"
;
}
}
//-->
</script>
...
...
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