(no commit message)
[utils] / crawler / kiss / src / main / resources / identity.xsl
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
3  
4   <!-- =====================================================
5     By default, simply copy everything 
6     ===================================================== -->
7   <xsl:template match="@*|node()">
8     <xsl:copy>
9       <xsl:apply-templates select="@*|node()"/>
10     </xsl:copy>
11   </xsl:template>
12   
13 </xsl:stylesheet>