xsl-list
[Top] [All Lists]

Re: [xsl] sort a node across a dynamic group of files

2009-11-22 14:52:19
J. Argyl Plath wrote:

Thank you for any help you can give on this matter. I appreciate any and all 
leads. I hope I haven't left any relevant information out.

Can't you generate a toc file listing the names of all entry files you want to process e.g.

<toc>
  <file>0001.xml</file>
  <file>0002.xml</file>
  <file>0003.xml</file>
</toc>

Then you could simply process e.g.

<xsl:template match="toc">
  <xsl:for-each select="document(file)/entry">
    <xsl:sort .../>
  </xsl:for-each>
</xsl:template>


--

        Martin Honnen
        http://msmvps.com/blogs/martin_honnen/

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