common.xslt 1.8 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: cpscrn
  5. (C) Copyright IBM Corp. 2005, 2019
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  9. <xsl:variable name="contextPath" select="/root/settings/contextPath"/>
  10. <xsl:variable name="gateway" select="/root/settings/gateway"/>
  11. <xsl:variable name="applicationGateway" select="/root/settings/applicationGateway"/>
  12. <xsl:variable name="helpPath" select="/root/settings/helpPath"/>
  13. <xsl:variable name="helpSupportedLangs" select="/root/settings/helpSupportedLangs"/>
  14. <xsl:variable name="helpDefaultBook" select="/root/settings/helpDefaultBook"/>
  15. <xsl:variable name="debug" select="/root/settings/debug"/>
  16. <xsl:variable name="debugFile" select="/root/settings/debugFile"/>
  17. <xsl:variable name="debugIELiteFile" select="/root/settings/debugIELiteFile"/>
  18. <xsl:variable name="debugIELiteLevel" select="/root/settings/debugIELiteLevel"/>
  19. <xsl:variable name="debugObjects" select="/root/settings/debugObjects"/>
  20. <xsl:variable name="productLocale" select="/root/settings/productLocale"/>
  21. <xsl:variable name="skin" select="/root/settings/skin"/>
  22. <xsl:variable name="is-ui-rtl" select="/root/settings/isRTL = 'true'"/>
  23. <xsl:variable name="responsePattern" select="/root/settings/responsePattern"/>
  24. <xsl:variable name="cookieSecure" select="/root/settings/cookieSecure"/>
  25. <xsl:attribute-set name="btn">
  26. <xsl:attribute name="class">frag-btn-normal</xsl:attribute>
  27. <xsl:attribute name="onmouseover">toolbarButtonMouseOver(this)</xsl:attribute>
  28. <xsl:attribute name="onmouseout">toolbarButtonMouseOut(this)</xsl:attribute>
  29. </xsl:attribute-set>
  30. </xsl:stylesheet>