xsl-list
[Top] [All Lists]

RE: Using Saxon 8.5 and collection() to process a directory of XML files

2005-08-05 05:50:36

I now have Saxon 8.5b processing a directory of xml files and generating the
required html files, using the following: 

<xsl:for-each select="collection(concat($xmlDir, '?select=*.xml'))">
        <xsl:result-document href="{$outputDir}/{$fileName}.html">
          ...
        </xsl:result-document>
        <xsl:for-each select="saxon:discard-document(.)" />
</xsl:for-each>

-Am I using saxon:discard-document() correctly... Seems odd?

-Is it possible to continue the processing should one of the source files
contain an error (say a parse error)?  

For example, using a compiled stylesheet and a host language you could
continue processing the good files - it would be good to recreate that here
if possible.

cheers
andrew

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