xsl-list
[Top] [All Lists]

Re: Trying to find out which XSLT processor is in Firefox, to get at node-set() function

2005-10-13 13:13:53
Of course as soon as I hit "Send" I realized how to get the answer ... I created and browsed the following file:

<?xml version="1.0" encoding="iso-8859-1"?>
<?xml-stylesheet href="processor.xsl" type="text/xsl"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
                version="1.0">

<xsl:template match="/">
  <html>
    <body>
      <p>
        <xsl:value-of select="system-property('xsl:vendor')"/>
      </p>
      <p>
        <samp>
          <a href="{system-property('xsl:vendor-url')}">
            <xsl:value-of select="system-property('xsl:vendor-url')"/>
          </a>
        </samp>
      </p>
    </body>
  </html>
</xsl:template>

</xsl:stylesheet>

... and I got:

Transformiix

http://www.mozilla.org/projects/xslt/

Though, unfortunately, I haven't found a list of extension functions.

. . . . . . . . . Ken

At 2005-10-13 16:03 -0400, I wrote:
Hi everyone,

Today I'm trying to use the XSLT processor inside Firefox and I don't know which XSLT processor is being used to know which node-set extension to use (if one is, indeed, available). This is the extension function outside of XSLT 1.0 that converts a result tree fragment into a node set suitable for XPath processing.

I've tried the following without success:

   {http://exslt.org/common}node-set()
   {urn:schemas-microsoft-com:xslt}node-set()
   {http://xml.apache.org/xalan}nodeset()
   {http://www.jclark.com/xt}node-set()

Can anyone point me to the XSLT extensions that are available in Firefox?

Thanks for any help anyone can be!

. . . . . . . Ken


--
World-wide on-site corporate, govt. & user group XML/XSL training.
G. Ken Holman                 mailto:gkholman(_at_)CraneSoftwrights(_dot_)com
Crane Softwrights Ltd.          http://www.CraneSoftwrights.com/s/
Box 266, Kars, Ontario CANADA K0A-2E0    +1(613)489-0999 (F:-0995)
Male Cancer Awareness Aug'05  http://www.CraneSoftwrights.com/s/bc
Legal business disclaimers:  http://www.CraneSoftwrights.com/legal


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--