render.xsl 691 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: ps
  5. (C) Copyright IBM Corp. 2005, 2011
  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"
  9. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  10. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  11. xmlns:bus="http://developer.cognos.com/schemas/bibus/3/" >
  12. <xsl:output method="xml" encoding="UTF-8" indent="no"/>
  13. <xsl:template match="*">
  14. <xsl:copy>
  15. <xsl:copy-of select="@*"/>
  16. <xsl:apply-templates/>
  17. </xsl:copy>
  18. </xsl:template>
  19. </xsl:stylesheet>