1234567891011121314151617181920212223 |
- <?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:xts="http://developer.cognos.com/schemas/xts/"
- xmlns:xtsext="xalan://com.cognos.xts.ext.XTSExt" >
- <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
- <xsl:template match="/">
- <xsl:variable name="dispatchers" select="entries/jmxProxyHostDispatchers/*"/>
- <xsl:for-each select="entries/*[local-name()='order']/param">
- <xsl:variable name="idx" select="number(.)"/>
- <xsl:copy-of select="$dispatchers[$idx]"/>
- </xsl:for-each>
- </xsl:template>
- </xsl:stylesheet>
|