1234567891011121314151617181920212223242526272829303132 |
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: HTS
- (C) Copyright IBM Corp. 2005, 2021
- 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" 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">
- <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
- <xsl:template match="/">
- <response>
- <!--
- ################################################################
- This structure must adhere to the custom param fragment structure.
- BuildSubFrag.java is now copying this and using it as is.
- ################################################################
- -->
- <custom>
- <param name="displayText"><xts:string id="IDS_FRAG_MYINBOX_DEFAULT_TITLE"/></param>
- <param name="helpId">ug_cra_a</param>
- <param name="help_contextid">HID_TASK_INTRO</param>
- <param name="bannerOptions"><value>HSH</value></param>
- <!-- mode setting stops a link to ourselves in the my area when viewing the inbox-->
- <param name="mode">myinbox</param>
- <!-- The MyInbox requires the webRoot(../..) to find the help documents-->
- <param name="myInbox_webRoot"><value>../..</value></param>
- </custom>
- </response>
- </xsl:template>
- </xsl:stylesheet>
|