1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- BI and PM: qs
- (C) Copyright IBM Corp. 2001, 2017
- 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" exclude-result-prefixes="xsl">
- <!--
- These variables are required for p_include.xsl to compile.
- They aren't applied at runtime.
- The resource and skin files are loaded by <qsdlg:promptInit/>.
- -->
- <xsl:variable name="skin">corporate</xsl:variable>
- <xsl:variable name="webRoot">..</xsl:variable>
- <xsl:variable name="promptFormName">f</xsl:variable>
- <xsl:variable name="promptLocale">en-us</xsl:variable>
- <xsl:output method="xml" encoding="UTF-8" indent="no"/>
- <xsl:include href="p_include.xsl"/>
- <!--
- * - This next template is required to copy all other elements into the result.
- -->
- <xsl:template match="*">
- <xsl:copy>
- <xsl:copy-of select="@*"/>
- <xsl:apply-templates/>
- </xsl:copy>
- </xsl:template>
- </xsl:stylesheet>
|