vote up 3 vote down star

I'm writing some xlst file which I want to use under linux and Windows. In this file I use node-set function which declared in different namespaces for MSXML and xsltproc ("urn:schemas-microsoft-com:xslt" and "http://exslt.org/common" respectively). Is there any platform independent way of using node-set?

flag

25% accept rate
Hi Евгений, See my answer that provides the needed info for a single universal implementation of the xxx:node-set() function. Cheers – Dimitre Novatchev Dec 1 '08 at 3:49

5 Answers

vote up 1 vote down

Firefox 3 implements node-set (as part of the EXSLT 2.0 namespace improvements) in it's client-side XSLT processing.

Maybe not quite the answer you were looking for - but it could be, depending on the context of your problem. ;-)

link|flag
vote up 1 vote down

You can use the function function-avaliable() to determine which function you should use:

<xsl:choose>
  <xsl:when test="function-avaliable('exslt:node-set')">
    <xsl:apply-templates select="exslt:node-set($nodelist)" />
  </xsl:when>
  <xsl:when test="function-avaliable('msxsl:node-set')">
    <xsl:apply-templates select="msxsl:node-set($nodelist)" />
  </xsl:when>
  <!-- etc -->
</xsl:choose>

You can even wrap this logic in a named template and call it with the nodeset as a parameter.

link|flag
vote up 1 vote down

Exslt is "supposed to be" a platform-independent set of xslt extensions, but only so far as various xslt processors choose to implement them.

There's some evidence that MSXML actually does support exsl:node-set(), but I don't know for sure.

There is an old article discussing an implementation of exslt on top of MSXML.

Otherwise, I think function-available() is your friend :)

link|flag
vote up 1 vote down

Yes, there is a good and universal solution.

EXSLT's function common:node-set() can be implemented as an inline Javascript function and is thus available with any browser that supports Javascript (practically all major browsers without exception).

This technique was first discovered by Julian Reschke and after he published it on the xsl-list, was publicized by David Carlisle. On the blog of David Carlisle there is also a link to a test page that shows if the common:node-set() function thus implemented works with the browser of your choice.

To summarize:

  1. First go here and read the explanation.
  2. Then try the test page. In particular, verify that it works with IE (that means with MSXML)
  3. Finally, use the code.

Do enjoy!

link|flag
vote up 0 vote down

If there is not a particular reason to use msxml implementation of node-set on windows you coul use exslt one everywhere, by including the implemenation downloaded from http://exslt.org with your stylesheet, exslt howto describes the needed steps. You can use either "Extension namespaces" way or "Named templates" way.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.