Closed
Bug 133742
Opened 23 years ago
Closed 22 years ago
cartenomad.bouygtel.com - Denies access to mozilla/NS6
Categories
(Tech Evangelism Graveyard :: French, defect, P1)
Tech Evangelism Graveyard
French
Tracking
(Not tracked)
VERIFIED
WORKSFORME
People
(Reporter: pascalc, Assigned: tristan)
References
()
Details
(Whiteboard: [eurocontest] [deny])
http://www.cartenomad.bouygtel.com
Does not allow NS6/Mozilla to access their site.
You are redirected to :
http://www.cartenomad.bouygtel.com/sorry.asp
"Ce site est optimisé pour les navigateurs Internet Explorer à partir de la
version 4.0 et Netscape à partir de la version 4.1 (sauf 6 et suivantes) sur PC
et Mac."
There is no contact address on the site but an online form.
The contact email might be the same as the one in bug 116368
Reporter | ||
Updated•23 years ago
|
Whiteboard: [eurocontest] [deny]
Updated•23 years ago
|
Priority: -- → P1
Comment 2•23 years ago
|
||
You can pass through and see this site by unchecking javascript for navigator in
prefs panel.
Hope it helps.
Comment 3•23 years ago
|
||
There is a action.js js file on this site.
Look at this pretty code (mat, this is for you).
function checkBrowser(){
this.name = navigator.appName.toLowerCase()
this.ver=navigator.appVersion;
this.dom=document.getElementById?1:0 ;
this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;
this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom)?1:0;
this.ie4=(document.all && !this.dom)?1:0;
this.mac=navigator.userAgent.indexOf("Mac")?1:0;
this.win=navigator.userAgent.toLowerCase().indexOf("win")?1:0;
this.ie4mac=this.ie4 && this.mac>-1;
this.ie5mac=this.ie5 && this.mac>-1;
this.ns6=(navigator.userAgent.toLowerCase().indexOf("netscape6")>0) ? 1 : 0;
this.ns4=(this.name.indexOf("netscape")>-1 && !this.dom)?1:0;
this.bw=(this.ie5 || this.ie4 || this.ns4 || this.ns5) && !this.ie4mac;
this.ie=(this.ie4 || this.ie5 || this.ns6 || this.ie6);
return this
}
So, what do you think of this ?
Hope I help :-)
Comment 4•23 years ago
|
||
in action.js, they are doing this :
if the user is not using win AND is not using macintosh OR is not ie AND is not
ns4 OR is ns6 THEN deny them.
argh. they seem to do this because they are using buggy js menus that do not
work with gecko browers. I will work on this as soon as I can :)
Loads ok here. WFM.
Status: NEW → RESOLVED
Closed: 22 years ago
Resolution: --- → WORKSFORME
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
•