stripComments.xslt 776 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: cogadmin
  5. (C) Copyright IBM Corp. 2014
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  9. xmlns:xts="http://developer.cognos.com/schemas/xts/"
  10. exclude-result-prefixes="xts">
  11. <xsl:strip-space elements="*"/>
  12. <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
  13. <xsl:template match="node()|@*">
  14. <xsl:copy>
  15. <xsl:apply-templates select="@*"/>
  16. <xsl:apply-templates/>
  17. </xsl:copy>
  18. </xsl:template>
  19. <xsl:template match="comment()"/>
  20. </xsl:stylesheet>