xsl-list
[Top] [All Lists]

RE: [xsl] XSLT merge documents into variable

2007-08-10 09:23:56
I'm not familiar with the restrictions of 1.0, but could you 
not simply do this?

<xsl:template match="/">
  <xsl:variable name="merged-docs">
     <xsl:apply-templates select="files"/>
  </xsl:variable> 

 ... Do what ever with $merged-docs from here....
</template>

In XSLT 1.0 you need the xx:node-set() extension in order to do anything
useful with $merged-docs (the infamous result-tree-fragment restriction).

Michael Kay
http://www.saxonica.com/


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--