Author: cheche
Date: Wed Jun 9 14:50:44 2004
New Revision: 20963
Modified:
forrest/trunk/src/core/context/resources/stylesheets/copyover.xsl
Log:
Copy the comments as well on the copyover stylesheet.
Modified: forrest/trunk/src/core/context/resources/stylesheets/copyover.xsl
==============================================================================
--- forrest/trunk/src/core/context/resources/stylesheets/copyover.xsl (original)
+++ forrest/trunk/src/core/context/resources/stylesheets/copyover.xsl Wed Jun 9 14:50:44
2004
@@ -19,9 +19,9 @@
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
- <xsl:template match="@*|*|text()|processing-instruction()">
+ <xsl:template match="@*|*|text()|processing-instruction()|comment()">
<xsl:copy>
- <xsl:apply-templates select="@*|*|text()|processing-instruction()"/>
+ <xsl:apply-templates select="@*|*|text()|processing-instruction()|comment()"/>
</xsl:copy>
</xsl:template>
|