Closed
Bug 92016
Opened 24 years ago
Closed 22 years ago
virgin.com (music) - doesn't load because of bad sniff
Categories
(Tech Evangelism Graveyard :: English Other, defect, P1)
Tech Evangelism Graveyard
English Other
Tracking
(Not tracked)
RESOLVED
FIXED
Aug
People
(Reporter: bugzilla, Assigned: susiew)
References
()
Details
(Whiteboard: [BROWER-DETECTION] [proprietary-js])
Nice of Virgin to sniff for browser. Too bad they check for two things we don't
support, and offer nothing to fall back on.
6.1 PR1 user feedback:
Primary Browser: ie55
Operating System: Win98
Language: English
Issue Summary: couldn't view web page
Component: Navigator
Doing What: Browsing web pages
Severity: SomethingDidNotWorkRight
Can Reproduce: Always
Try this URL: http://www.virgin.com/net/music/
Issue Detail:
Hello;
Browser wouldn't display this page. It appeared
to load but then wasn't shown. EI 5.5 had no
trouble with it. Neither did Opera.
Comment 1•24 years ago
|
||
All Evangelism Bugs are now in the Product Tech Evangelism. See bug 86997 for
details.
Component: Evangelism → US English
Product: Browser → Tech Evangelism
Version: other → unspecified
Updated•24 years ago
|
Priority: -- → P1
Summary: virgin.com/net/music - doesn't load because of bad sniff → virgin.com - doesn't load because of bad sniff
Updated•24 years ago
|
Whiteboard: [aok]
Assignee | ||
Comment 2•23 years ago
|
||
To find the bad link:
1. pick any channel.
2. Click any "virgen .net" link
Changing the UA string to IE does not help.
I will email the webmaster.
Comment 3•23 years ago
|
||
susiew, when you contact a site assign the bug to yourself, mark it assigned and
set the milestone for a month in the future so we can track who has been
contacted and when they need to be followed up.
Assignee: bclary → susiew
Comment 4•23 years ago
|
||
susiew contacted -> assigned/ms=april
Status: NEW → ASSIGNED
Target Milestone: --- → Apr
Assignee | ||
Comment 5•23 years ago
|
||
fixed; NEW URL: http://www.virgin.com/v2/index_cl.html
Status: ASSIGNED → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
Summary: virgin.com - doesn't load because of bad sniff → virgin.com (music) - doesn't load because of bad sniff
Assignee | ||
Comment 6•23 years ago
|
||
reopening :-(
Click "virgen.net" on
http://www.virgin.com/redirect.html?content=/channel/entertainment/index.shtml
to see the problem.
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
Assignee | ||
Comment 7•23 years ago
|
||
-->bclary
Bob could this be a redirect bug?
Assignee: susiew → bclary
Status: REOPENED → NEW
Priority: P1 → P2
Comment 8•23 years ago
|
||
nope.
http://www.virgin.com/net/internet/index.html has only IE and Nav4 forks:
<script>
var screenWidth
if (document.all){
document.write('<frameset cols="*,0" border="0" frameborder="0" framespacing="0"
marginwidth="0" marginheight="0" >')
} else if (document.layers) {
screenWidth = window.innerWidth + 10;
document.write('<frameset cols="' + screenWidth + ',*" border="0" frameborder="0"
framespacing="0" marginwidth="0" marginheight="0" >')
}
</script>
Assignee: bclary → susiew
Whiteboard: [aok] → [BROWER-DETECTION]
Comment 9•23 years ago
|
||
I haven't dug too deeply into this site but I expect that this detection issue
is commonplace. virgin.com needs to write their javascript browser dependent
code fork so that browser other than IE and Nav4 are supported.
The easiest is to use object detection as in:
if (document.getElementById)
// DOM compliant browsers (Gecko and IE5+)
else if (document.layers)
// Nav4
else if (document.all)
// IE4
else
// everything else
If they need to distinguish Mozilla and other Gecko browsers they can use
navigator.product == 'Gecko' and if they need the build date they can use
navigator.productSub to return a string containing the build date in format
'CCYYMMDD'.
For the most part, they can code IE5/Gecko identically with respect DOM HTML
methods (document.getElementById, etc) and DOM Style (HTMLElement.style.left
etc). They can even share the same code with IE4 if they handle the fact that
IE4 does not support document.getElementById and needs document.all.
The major area where they need to keep Gecko on the same code fork as Nav4 is
with respect to event handling.
Assignee | ||
Comment 10•23 years ago
|
||
Reset date to Aug.
Status: NEW → ASSIGNED
Target Milestone: Apr → Aug
Severity: critical → major
OS: Windows 2000 → All
Priority: P2 → P1
Hardware: PC → All
Whiteboard: [BROWER-DETECTION] → [BROWER-DETECTION] [proprietary-js]
Comment 11•22 years ago
|
||
f
Status: ASSIGNED → RESOLVED
Closed: 23 years ago → 22 years ago
Component: English US → English Other
Resolution: --- → FIXED
Updated•10 years ago
|
Product: Tech Evangelism → Tech Evangelism Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•