12345678910111213141516171819202122232425262728293031323334 |
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: HTS
- (C) Copyright IBM Corp. 2005, 2010
- 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:xtsext="xalan://com.cognos.xts.ext.XTSExt" xmlns:nav="http://developer.cognos.com/schemas/cps/navigation/1/" xmlns:encodingUtils="com.cognos.portal.utils.EncodingUtils" exclude-result-prefixes="xts xtsext nav">
- <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
- <xsl:template match="/">
- <xsl:variable name="fpmCookie" select="xtsext:urldecode(xtsext:decodeCCSession(string(/root/cookies/cookie[@name='fpmSettings']),'|','~'))"/>
- <response>
- <!--
- ################################################################
- This structure must adhere to the custom param fragment structure.
- BuildSubFrag.java is now copying this and using it as is.
- ################################################################
- -->
- <settings>
- <xsl:value-of select="$fpmCookie" disable-output-escaping="yes"/>
- </settings>
- <custom id="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>
- </custom>
- </response>
- </xsl:template>
- </xsl:stylesheet>
|