render.xsl 963 B

12345678910111213141516171819202122232425262728293031
  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. <fault>
  15. <xml>
  16. <xsl:copy-of select="SOAPFault/*"/>
  17. </xml>
  18. <html>
  19. <xsl:text/><xsl:value-of select="'&lt;![CDATA['" disable-output-escaping="yes"/><xsl:text/>
  20. <xsl:value-of select="html" disable-output-escaping="yes"/>
  21. <xsl:text/><xsl:value-of select="']]&gt;'" disable-output-escaping="yes"/><xsl:text/>
  22. </html>
  23. </fault>
  24. </xsl:template>
  25. </xsl:stylesheet>