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]

RE: Evaluating a temporary NodeSet with Xalan


> 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.

Hmmm.. I don't agree with your arguments. In my experience, code developed
by one person is likely to me more reliable and faster than code developed
by a team. But you're the user, you get to choose...
>
> So, is there a running Xalan-implementation that works fine
> with XSLT 1.1
> specifications on the market?

No. But you can use the xalan:node-set() extension to access the
result-tree-fragment, and you can use Xalan's redirect extension to achieve
multiple output files.
>
> 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
>


 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]