Re: Does Firefox support exslt?
James Fuller <[email protected]>
| Newsgroups | gmane.text.xml.xslt.extensions |
|---|---|
| Organization | Webcomposite |
| Message-ID | <[email protected]> |
Daniel Fréchette wrote: > Hello, > > I've been trying for many hours to get *str:tokenize* to work in > *Firefox*. It simply does not work. Maybe I'm doing something wrong or > maybe FF lacks support for node sets. I don't know and in deep need of > help. > > I have posted on this subject in a Mozilla forum > (http://forums.mozillazine.org/viewtopic.php?t=345311) but with little > success. You will find all the details at this location. to my knowledge firefox doesnt support EXSLT, though there is a bug put into it. this means you need to use the XSLT 1.0 stylesheet version of str:tokenize. http://www.exslt.org/str/functions/tokenize/index.html here is a link to the stylesheet that you import http://www.exslt.org/str/functions/tokenize/str.tokenize.template.xsl then to use the XSLT 1.0 version of str:tokenize invoke using call-template as follows <xsl:call-template name="*str:tokenize*"> <xsl:with-param name="string" select="string" /> <xsl:with-param name="delimiters" select="string" />? </xsl:call-template> cheers, Jim Fuller