More experimentation with the dependency logging features of cpp and xsltproc.
[mgear/mgear.git] / experiments / dep-logging / foo.xsl
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet version="1.0"
3         xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4         xmlns:exslt="http://exslt.org/common"
5 >
6         <xsl:template match="/">
7                 <information>
8                         <xsl:copy-of select="document('bar.xml')"/>
9                         <xsl:copy-of select="document('bzing.xml')"/>
10                 </information>
11         </xsl:template>
12         
13 </xsl:stylesheet>