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.
- -->
- <!--
- Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
- Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
- -->
- <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:pf="http://developer.cognos.com/schemas/xts/pf"
- xmlns:xtsext="xalan://com.cognos.xts.ext.XTSExt"
- xmlns:xts="http://developer.cognos.com/schemas/xts/"
- exclude-result-prefixes="xsl pf xtsext xts">
- <xsl:output method="html" encoding="utf-8" indent="no"/>
-
- <pf:variables/>
- <xsl:template match="/root">
- <xsl:for-each select="/root/env/param">
- <input type="hidden" name="{@name}" value="{.}"/>
- </xsl:for-each>
- <xsl:if test="/root/env/param[starts-with(@name,'stack_')] != '' and not(/root/env/param[@name='ps_nav_op'])">
- <input type="hidden" name="ps_nav_op" value=""/>
- </xsl:if>
- </xsl:template>
- </xsl:stylesheet>
|