123456789101112131415161718192021 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: ASV
- (C) Copyright IBM Corp. 2005, 2010
- 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:xtsext="xalan://com.cognos.xts.ext.XTSExt" xmlns:bus="http://developer.cognos.com/schemas/bibus/3/" exclude-result-prefixes="bus xtsext">
- <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
- <xsl:template match="/">
- <xsl:if test="/root/*[local-name()='memo']">
- <morphletResponse>
- <xsl:copy-of select="/root/*[local-name()='memo']/*[local-name()='options']"/>
- <taskName><xsl:value-of select="/root/*[local-name()='memo']/*[local-name()='defaultName']"/></taskName>
- </morphletResponse>
- </xsl:if>
- </xsl:template>
- </xsl:stylesheet>
|