How to use node-set function in a platform-independent way? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T00:55:11Z http://stackoverflow.com/feeds/question/92076 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/92076/how-to-use-node-set-function-in-a-platform-independent-way 3 How to use node-set function in a platform-independent way? Евгений 2008-09-18T12:29:20Z 2008-12-01T03:45:40Z <p>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?</p> http://stackoverflow.com/questions/92076/how-to-use-node-set-function-in-a-platform-independent-way/92119#92119 1 Answer by Ben for How to use node-set function in a platform-independent way? Ben 2008-09-18T12:34:03Z 2008-09-18T12:34:03Z <p>Firefox 3 implements node-set (as part of the EXSLT 2.0 namespace improvements) in it's client-side XSLT processing.</p> <p>Maybe not quite the answer you were looking for - but it could be, depending on the context of your problem. ;-)</p> http://stackoverflow.com/questions/92076/how-to-use-node-set-function-in-a-platform-independent-way/92511#92511 1 Answer by James Sulak for How to use node-set function in a platform-independent way? James Sulak 2008-09-18T13:26:47Z 2008-09-18T13:26:47Z <p>You can use the function function-avaliable() to determine which function you should use:</p> <pre><code>&lt;xsl:choose&gt; &lt;xsl:when test="function-avaliable('exslt:node-set')"&gt; &lt;xsl:apply-templates select="exslt:node-set($nodelist)" /&gt; &lt;/xsl:when&gt; &lt;xsl:when test="function-avaliable('msxsl:node-set')"&gt; &lt;xsl:apply-templates select="msxsl:node-set($nodelist)" /&gt; &lt;/xsl:when&gt; &lt;!-- etc --&gt; &lt;/xsl:choose&gt; </code></pre> <p>You can even wrap this logic in a named template and call it with the nodeset as a parameter.</p> http://stackoverflow.com/questions/92076/how-to-use-node-set-function-in-a-platform-independent-way/97424#97424 1 Answer by ykaganovich for How to use node-set function in a platform-independent way? ykaganovich 2008-09-18T21:58:34Z 2008-09-18T21:58:34Z <p><a href="http://www.exslt.org" rel="nofollow">Exslt</a> is "supposed to be" a platform-independent set of xslt extensions, but only so far as various xslt processors choose to implement them.</p> <p>There's <a href="http://www.tkachenko.com/blog/archives/000559.html" rel="nofollow">some evidence</a> that MSXML actually does support exsl:node-set(), but I don't know for sure.</p> <p>There is an <a href="http://www.xml.com/pub/a/2003/08/06/exslt.html" rel="nofollow">old article</a> discussing <a href="http://fxsl.sourceforge.net/" rel="nofollow">an implementation</a> of exslt on top of MSXML.</p> <p>Otherwise, I think function-available() is your friend :)</p> http://stackoverflow.com/questions/92076/how-to-use-node-set-function-in-a-platform-independent-way/100537#100537 0 Answer by David Skyba for How to use node-set function in a platform-independent way? David Skyba 2008-09-19T08:41:51Z 2008-09-19T08:41:51Z <p>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 <a href="http://exslt.org" rel="nofollow">http://exslt.org</a> with your stylesheet, <a href="http://exslt.org/howto.html" rel="nofollow">exslt howto</a> describes the needed steps. You can use either "Extension namespaces" way or "Named templates" way.</p> http://stackoverflow.com/questions/92076/how-to-use-node-set-function-in-a-platform-independent-way/329989#329989 1 Answer by Dimitre Novatchev for How to use node-set function in a platform-independent way? Dimitre Novatchev 2008-12-01T03:45:40Z 2008-12-01T03:45:40Z <p><strong>Yes, there is a good and universal solution</strong>.</p> <p><a href="http://exslt.org/" rel="nofollow"><strong>EXSLT</strong></a>'s function <a href="http://exslt.org/exsl/functions/node-set/index.html" rel="nofollow"><strong>common:node-set()</strong></a> can be implemented as an inline Javascript function and is thus available with any browser that supports Javascript (practically all major browsers without exception).</p> <p>This technique was first discovered by <a href="http://greenbytes.de/tech/webdav/" rel="nofollow"><strong>Julian Reschke</strong></a> and after he published it on the <a href="http://www.biglist.com/lists/xsl-list/archives/" rel="nofollow"><strong>xsl-list</strong></a>, was publicized by <a href="http://dpcarlisle.blogspot.com/" rel="nofollow"><strong>David Carlisle</strong></a>. On the <a href="http://dpcarlisle.blogspot.com/2007/05/exslt-node-set-function.html" rel="nofollow"><strong>blog of David Carlisle</strong></a> 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.</p> <p>To summarize:</p> <ol> <li>First go <a href="http://dpcarlisle.blogspot.com/2007/05/exslt-node-set-function.html" rel="nofollow"><strong>here</strong></a> and read the explanation.</li> <li>Then try the test page. In particular, verify that it works with IE (that means with MSXML)</li> <li>Finally, use the code.</li> </ol> <p>Do enjoy!</p>