decodeSpecification.xslt 1.0 KB

123456789101112131415161718192021222324252627282930313233
  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"
  9. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  10. xmlns:nav="http://developer.cognos.com/schemas/cps/navigation/1/"
  11. exclude-result-prefixes="xsl nav">
  12. <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
  13. <xsl:template match="/root">
  14. <xsl:apply-templates/>
  15. </xsl:template>
  16. <xsl:template match="nav:specification">
  17. <xsl:copy>
  18. <xsl:copy-of select="@*"/>
  19. <xsl:value-of select="." disable-output-escaping="yes"/>
  20. </xsl:copy>
  21. </xsl:template>
  22. <xsl:template match="*">
  23. <xsl:copy>
  24. <xsl:copy-of select="@*"/>
  25. <xsl:apply-templates/>
  26. </xsl:copy>
  27. </xsl:template>
  28. </xsl:stylesheet>