123456789101112131415161718192021 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: ps
- (C) Copyright IBM Corp. 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"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- exclude-result-prefixes="xsl xsi">
- <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
- <xsl:template match="/rolapDataSourceDetails">
- <xsl:for-each select="*[local-name()='queryResponse']/*[local-name()='queryReply']/*">
- <xsl:copy-of select="*[contains(' hidden objectClass defaultName ', concat(' ', local-name(), ' '))]"/>
- </xsl:for-each>
- </xsl:template>
- </xsl:stylesheet>
|