Subject: RE: How can i transform output stream again.
From: Larry_Mason@xxxxxx
Date: Thu, 3 May 2001 12:08:38 -0500
|
By using the node-set you can re-process your "intermediate" output which
is XML thru XSLT processing again to get your final output.
This is what I do
<xsl:template match="/">
<xsl:variable name="temp">
<xsl:apply-templates/>
</xsl:variable>
<xsl:apply-templates select = "xt:node-set($temp)" mode="pass2"/>
</xsl:template>
The inner apply-templates produces the intermediate tags. The final
apply-templates processes those tags. Mode helps determine which phase
I'm in. A 2 pass transformation in 1 execution of the processor.
Cheers!
Larry
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|