123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?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="/">
- <xts:sequence>
- <xsl:choose>
- <xsl:when test="/root/env/param[@name='jmx_properties_idx']">
- <xsl:if test="/root/env/param[@name='jmxProxyHostDispatchers']">
- <xts:delete select="/root/jmxProxyHostDispatchers"/>
- </xsl:if>
- <xts:append select="/root">
- <jmxProxyHostDispatchers>
- <xts:transform src="transforms/portal/jmxProxyHostDispatchers/orderEntries.xslt" processor="XSLT">
- <entries>
- <xsl:value-of select="xtsext:web64decode(xtsext:cafaction( 'sign_unwrap', string( /root/env/param[@name='jmxProxyHostDispatchers'] )), true() )" disable-output-escaping="yes"/>
- <order>
- <xsl:copy-of select="/root/env/param[@name='jmx_properties_idx']"/>
- </order>
- </entries>
- </xts:transform>
- </jmxProxyHostDispatchers>
- </xts:append>
- </xsl:when>
- <xsl:otherwise>
- <xts:delete select="/root/jmxProxyHostDispatchers"/>
- <xts:append select="/root">
- <xsl:value-of select="xtsext:web64decode(xtsext:cafaction( 'sign_unwrap', string( /root/env/param[@name='jmxProxyHostDispatchers'] )), true() )" disable-output-escaping="yes"/>
- </xts:append>
- </xsl:otherwise>
- </xsl:choose>
- </xts:sequence>
- </xsl:template>
- </xsl:stylesheet>
|