Closed
Bug 225084
Opened 22 years ago
Closed 21 years ago
recrutement.bnpparibas.com - Unrecognized user-agent
Categories
(Tech Evangelism Graveyard :: French, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: kiad, Unassigned)
References
()
Details
(Whiteboard: [havefix][DENY][USERAGENT])
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.5a) Gecko/20030728 Mozilla Firebird/0.6.1
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.5a) Gecko/20030728 Mozilla Firebird/0.6.1
Click on "Consulter nos offres". There is a redirection to a page asking to use
"IE > 4, NS 4.7 or 7 or Mozilla 1.0" whereas a navigator like konqueror display
the correct page, ie a form to search job offer.
Reproducible: Always
Steps to Reproduce:
1.
2.
3.
Comment 1•22 years ago
|
||
Confirming (using today's CVS build on Linux).
Status: UNCONFIRMED → NEW
Ever confirmed: true
Comment 2•22 years ago
|
||
Confirm on Mozilla 1.4 and Firebird 0.7.
Their sniffing script
(http://recrutement.bnpparibas.com/applis/recrutement/siterecrutfr.nsf/viewResJavascript/Common/$file/navigateurs.js)
come from Netscape (even if a bit old). They have added a filtering function at
the end to exclude Netscape 6 (but not 7). They announces they want to support
mozilla 1.0 so this is probably a bug and not a "wanted" feature for recent
mozilla's.
The added function does the following assumptions :
- if mozilla based : is a netscape browser
- if a netscape browser and not Netscape7 : is Netscape 6n Netscape 4.x or lower
To filter only Netscape 6 and not recent Mozilla or Gecko browser here a quick fix :
Replace the line 218 :
if ((is_nav6 && !Netscape7) || is_nav2 || is_nav3 || is_nav4 ) {
By the two lines :
var NotNetscape = (agt.indexOf('netscape')==-1) ;
if ((is_nav6 && !Netscape7 && !NotNetscape) || is_nav2 || is_nav3 || is_nav4 ) {
Summary: Unrecognized user-agent → recrutement.bnpparibas.com - Unrecognized user-agent
Whiteboard: [havefix][DENY][USERAGENT]
Comment 3•21 years ago
|
||
web site was redesigned, wfm using FF 20040604 Win2k & Linux.
Status: NEW → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
Updated•10 years ago
|
Product: Tech Evangelism → Tech Evangelism Graveyard
Yes a redesign made in a crazy way ;)
Sometimes it's simpler to just use your HR Software and post the jobs directly on your website like http://www.humansourcing.com is doing it !
You need to log in
before you can comment on or make changes to this bug.
Description
•