This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Evaluating a temporary NodeSet with Xalan


Hi there,

I've tried to run the code given underneath with a Xalan Processor, but
haven't succeeded. I finally succeded by using a rather unknown processor
jd.xslt. Due to performance reasons, I would prefer to run my code (which is
a little more complex than the given example) on a Xalan Processor as
jd.xslt was developped by a single person rather than a company.

So, is there a running Xalan-implementation that works fine with XSLT 1.1
specifications on the market?

Sincerely,

Florian Mansmann
innovations GmbH


Here example code out of
Michael Kay: XSLT 2nd Edition - Programmer's Reference

<xsl:variable name="rainbow">
	<color>red</color>
	<color>orange</color>
	<color>yellow</color>
	<color>green</color>
	<color>blue</color>
	<color>indigo</color>
	<color>violet</color>
</xsl:variable>

<xsl:for-each select="$rainbow/color">
	<xsl:document href="{.}.xml">
	...
	</xsl:document>
</xsl:for-each>


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]