params.xslt 1.5 KB

1234567891011121314151617181920212223242526272829303132
  1. <!--
  2. Licensed Materials - Property of IBM
  3. IBM Cognos Products: HTS
  4. (C) Copyright IBM Corp. 2005, 2021
  5. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  6. -->
  7. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xts="http://developer.cognos.com/schemas/xts/" xmlns:nav="http://developer.cognos.com/schemas/cps/navigation/1/" xmlns:encodingUtils="com.cognos.portal.utils.EncodingUtils">
  8. <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
  9. <xsl:template match="/">
  10. <response>
  11. <!--
  12. ################################################################
  13. This structure must adhere to the custom param fragment structure.
  14. BuildSubFrag.java is now copying this and using it as is.
  15. ################################################################
  16. -->
  17. <custom>
  18. <param name="displayText"><xts:string id="IDS_FRAG_MYINBOX_DEFAULT_TITLE"/></param>
  19. <param name="helpId">ug_cra_a</param>
  20. <param name="help_contextid">HID_TASK_INTRO</param>
  21. <param name="bannerOptions"><value>HSH</value></param>
  22. <!-- mode setting stops a link to ourselves in the my area when viewing the inbox-->
  23. <param name="mode">myinbox</param>
  24. <!-- The MyInbox requires the webRoot(../..) to find the help documents-->
  25. <param name="myInbox_webRoot"><value>../..</value></param>
  26. </custom>
  27. </response>
  28. </xsl:template>
  29. </xsl:stylesheet>