1234567891011121314151617181920212223 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: ps
- (C) Copyright IBM Corp. 2014
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:md1="http://developer.cognos.com/schemas/metadataService/3"
- xmlns:bus="http://developer.cognos.com/schemas/bibus/3/"
- xmlns:xtsext="xalan://com.cognos.xts.ext.XTSExt"
- exclude-result-prefixes="xsl md1 bus">
- <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
- <!-- main entry point -->
- <xsl:template match="/">
- <xsl:value-of select="xtsext:base64decode(md1:runSpecificationResponse/bus:result/details/item/data, false)" disable-output-escaping="yes"/>
- </xsl:template>
- </xsl:stylesheet>
|