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
056f4049
Commit
056f4049
authored
May 22, 2009
by
lpsolit%gmail.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Back out bug 441496: it breaks Safari and Google Chrome
parent
5c8a0d34
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
7 deletions
+4
-7
buglist.cgi
buglist.cgi
+4
-7
No files found.
buglist.cgi
View file @
056f4049
...
...
@@ -149,20 +149,17 @@ my $format = $template->get_format("list/list", scalar $cgi->param('format'),
# to the URL.
#
# Server push is a Netscape 3+ hack incompatible with MSIE, Lynx, and others.
# Safari 2.0.2 (Webkit 416.11) and above support it.
# Even Communicator 4.51 has bugs with it, especially during page reload.
# http://www.browsercaps.org used as source of compatible browsers.
# Safari (WebKit) does not support it, despite a UA that says otherwise (bug 188712)
# MSIE 5+ supports it on Mac (but not on Windows) (bug 190370)
#
my
$webkitversion
=
""
;
if
(
$ENV
{
'HTTP_USER_AGENT'
}
=~
/WebKit\/(\d+)/
)
{
$webkitversion
=
$1
;
}
my
$serverpush
=
$format
->
{
'extension'
}
eq
"html"
&&
exists
$ENV
{
'HTTP_USER_AGENT'
}
&&
$ENV
{
'HTTP_USER_AGENT'
}
=~
/Mozilla.[3-9]/
&&
((
$ENV
{
'HTTP_USER_AGENT'
}
!~
/[Cc]ompatible/
)
||
(
$ENV
{
'HTTP_USER_AGENT'
}
=~
/MSIE 5.*Mac_PowerPC/
))
&&
(
!
$webkitversion
||
$webkitversion
>=
416
)
&&
$ENV
{
'HTTP_USER_AGENT'
}
!~
/WebKit/
&&
!
$agent
&&
!
defined
(
$cgi
->
param
(
'serverpush'
))
||
$cgi
->
param
(
'serverpush'
);
...
...
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