1234567891011121314151617181920212223242526272829303132333435 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: cpscrn
- (C) Copyright IBM Corp. 2005, 2019
- 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">
- <xsl:variable name="contextPath" select="/root/settings/contextPath"/>
- <xsl:variable name="gateway" select="/root/settings/gateway"/>
- <xsl:variable name="applicationGateway" select="/root/settings/applicationGateway"/>
- <xsl:variable name="helpPath" select="/root/settings/helpPath"/>
- <xsl:variable name="helpSupportedLangs" select="/root/settings/helpSupportedLangs"/>
- <xsl:variable name="helpDefaultBook" select="/root/settings/helpDefaultBook"/>
- <xsl:variable name="debug" select="/root/settings/debug"/>
- <xsl:variable name="debugFile" select="/root/settings/debugFile"/>
- <xsl:variable name="debugIELiteFile" select="/root/settings/debugIELiteFile"/>
- <xsl:variable name="debugIELiteLevel" select="/root/settings/debugIELiteLevel"/>
- <xsl:variable name="debugObjects" select="/root/settings/debugObjects"/>
- <xsl:variable name="productLocale" select="/root/settings/productLocale"/>
- <xsl:variable name="skin" select="/root/settings/skin"/>
- <xsl:variable name="is-ui-rtl" select="/root/settings/isRTL = 'true'"/>
- <xsl:variable name="responsePattern" select="/root/settings/responsePattern"/>
- <xsl:variable name="cookieSecure" select="/root/settings/cookieSecure"/>
-
- <xsl:attribute-set name="btn">
- <xsl:attribute name="class">frag-btn-normal</xsl:attribute>
- <xsl:attribute name="onmouseover">toolbarButtonMouseOver(this)</xsl:attribute>
- <xsl:attribute name="onmouseout">toolbarButtonMouseOut(this)</xsl:attribute>
- </xsl:attribute-set>
- </xsl:stylesheet>
|