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.
- -->
- <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
-
- <xsl:template match="storeIDs">
- <xsl:variable name="storeIds" select="./storeID"/>
- <xsl:if test="count($storeIds) > 0">
- <cm:delete xmlns:cm="http://developer.cognos.com/schemas/xts-cm/1/">
- <cm:objects>
- <xsl:for-each select="$storeIds">
- <cm:dataSourceCredential>
- <cm:searchPath>storeID('<xsl:value-of select="."/>')</cm:searchPath>
- </cm:dataSourceCredential>
- </xsl:for-each>
- </cm:objects>
- </cm:delete>
- </xsl:if>
- </xsl:template>
-
- <xsl:template match="storeID">
-
- </xsl:template>
- </xsl:stylesheet>
|