Re: Firefox 3 and URL

2008-08-04 Thread Alexandre Mazouz
it? Thanks, Alexandre -- View this message in context: http://www.nabble.com/Firefox-3-and-URL-tp18212745p18809075.html Sent from the Cocoon - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL

Re: Firefox 3 and URL

2008-08-04 Thread Andy Stevens
2008/8/4 Alexandre Mazouz [EMAIL PROTECTED]: Okay, My problem is now fixed. Instead of using HEAD request, i have used GET request : this.xmlHttp.open(GET, resourceName, false); this.xmlHttp.send(null); I think that Firefox 2.0 and Firefox 3.0 have different behaviour of how to handle

Re: Firefox 3 and URL

2008-08-04 Thread Alexandre Mazouz
] -- View this message in context: http://www.nabble.com/Firefox-3-and-URL-tp18212745p18810281.html Sent from the Cocoon - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Firefox 3 and URL

2008-07-02 Thread Alexandre Mazouz
://www.nabble.com/Firefox-3-and-URL-tp18212745p18233410.html Sent from the Cocoon - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Firefox 3 and URL

2008-07-02 Thread Luca Morandini
Alexandre Mazouz wrote: I want to redefine the standard getElementsByTagName with your getElementsByTagNameNoNS. Do you know where can i make it? Sorry, but I haven't understood what you meant: could you please rephrase ? Luca Morandini www.lucamorandini.it

Re: Firefox 3 and URL

2008-07-02 Thread Alexandre Mazouz
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/Firefox-3-and-URL-tp18212745p18236206.html Sent from the Cocoon - Users mailing list archive at Nabble.com

Re: Firefox 3 and URL

2008-07-02 Thread Luca Morandini
Alexandre Mazouz wrote: Sorry, i have : xElt.getElementsByTagName(...); xElt is a XMLElement. i want to use your function instead of getElementsByTagName but i don't know how can i make it. Hmm... as I see it, there is only one way: change every instance of

Re: Firefox 3 and URL

2008-07-02 Thread Joerg Heinicke
In Javascript you can use prototype to redeclare functions of an object. I wonder if it works though with core libraries or if they aren't locked. Joerg On 02.07.2008 08:48, Luca Morandini wrote: i have : xElt.getElementsByTagName(...); xElt is a XMLElement. i want to use your function

Re: Firefox 3 and URL

2008-07-02 Thread Alexandre Mazouz
, e-mail: [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/Firefox-3-and-URL-tp18212745p18237341.html Sent from the Cocoon - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL

Firefox 3 and URL

2008-07-01 Thread Alexandre Mazouz
? Thanks, Alexandre -- View this message in context: http://www.nabble.com/Firefox-3-and-URL-tp18212745p18212745.html Sent from the Cocoon - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED

RE: Firefox 3 and URL

2008-07-01 Thread Jasha Joachimsthal
How do you create your URI's? Is it a browser selector in the sitemap, a parameter in XSLT, some javascript? Van: Alexandre Mazouz [mailto:[EMAIL PROTECTED] Verzonden: di 1-7-2008 11:47 Aan: users@cocoon.apache.org Onderwerp: Firefox 3 and URL Hello, I'm

RE: Firefox 3 and URL

2008-07-01 Thread Alexandre Mazouz
] Verzonden: di 1-7-2008 11:47 Aan: users@cocoon.apache.org Onderwerp: Firefox 3 and URL Hello, I'm using Cocoon 2.1.7/Jetty. My web application works on every browser with every version except Firefox 3.0. Firebug helps me to find the problem : -Firefox 2 : GET http

Re: Firefox 3 and URL

2008-07-01 Thread Jeroen Reijn
-2008 11:47 Aan: users@cocoon.apache.org Onderwerp: Firefox 3 and URL Hello, I'm using Cocoon 2.1.7/Jetty. My web application works on every browser with every version except Firefox 3.0. Firebug helps me to find the problem : -Firefox 2 : GET http://erules.bureauveritas.com/dy/browse/imo

Re: Firefox 3 and URL

2008-07-01 Thread Alexandre Mazouz
your URI's? Is it a browser selector in the sitemap, a parameter in XSLT, some javascript? Van: Alexandre Mazouz [mailto:[EMAIL PROTECTED] Verzonden: di 1-7-2008 11:47 Aan: users@cocoon.apache.org Onderwerp: Firefox 3 and URL Hello, I'm using

Re: Firefox 3 and URL

2008-07-01 Thread Jeroen Reijn
@cocoon.apache.org Onderwerp: Firefox 3 and URL Hello, I'm using Cocoon 2.1.7/Jetty. My web application works on every browser with every version except Firefox 3.0. Firebug helps me to find the problem : -Firefox 2 : GET http://erules.bureauveritas.com/dy/browse/imo/codes/fss/fss_2001/toc/n0001.xml

Re: Firefox 3 and URL

2008-07-01 Thread David Legg
Have you checked that the DOCTYPE being returned by Cocoon is identical between Firefox 2 and 3? I just wondered if when you use Firefox 3 Cocoon serves a page in quirks mode or application/xml+xhtml or something else which would make getElementsByTagName() behave differently. David Legg

Re: Firefox 3 and URL

2008-07-01 Thread Luca Morandini
Alexandre Mazouz wrote: Okay, it seems that getElementsByTagName() has different behavior in FireFox 2.0 and Firefox 3.0. why? i don't know may be to give us more bug to fix. The handling of namespaces has changed form FF2 to FF3, here's a code fragment than handles both IE and FF (it