123456789101112131415161718192021222324252627282930313233 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: ps
- (C) Copyright IBM Corp. 2005, 2011
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <!--
- Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
- Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
- -->
- <!--
- Transforms the the results of an Upfront getTeTemplate command which returns a theme properties file.
- Theme Properties are provider-specific files that specify what Upf templates to use for what actions.
- They are usually named in the following format [provider]_themeproperties.xml. e.g. iwr_themeproperties.xml
- -->
- <xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:xts="http://developer.cognos.com/schemas/xts/"
- xmlns:up="http://developer.cognos.com/schemas/upfront/"
- xmlns:cogx="http://developer.cognos.com/schemas/cogx/"
- xmlns:xtsext="xalan://com.cognos.xts.ext.XTSExt">
- <xsl:output method="xml" version="1.0" encoding="UTF-8" omit-xml-declaration="yes"/>
-
- <!-- We are only interested in the "template" part, so throw away everything else -->
- <xsl:template match="cogx:envelope/cogx:result/up:Result/up:template">
- <xsl:value-of select="." disable-output-escaping="yes"/>
- </xsl:template>
- </xsl:stylesheet>
|