unico 2003/11/24 14:14:32
Modified: src/blocks/webdav/samples/davmap/styles collection2html.xsl
Log:
add template match for ignoring free form nodes which would otherwise echo-ed during apply-templates
Revision Changes Path
1.4 +3 -0 cocoon-2.1/src/blocks/webdav/samples/davmap/styles/collection2html.xsl
Index: collection2html.xsl
===================================================================
RCS file: /home/cvs/cocoon-2.1/src/blocks/webdav/samples/davmap/styles/collection2html.xsl,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- collection2html.xsl 1 Nov 2003 14:11:06 -0000 1.3
+++ collection2html.xsl 24 Nov 2003 22:14:32 -0000 1.4
@@ -106,4 +106,7 @@
</tr>
</xsl:template>
+ <!-- ignore everything else -->
+ <xsl:template match="node()|@*" />
+
</xsl:stylesheet>
|