12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- 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:xts="http://developer.cognos.com/schemas/xts/"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
- <xsl:template match="/">
- <response>
- <commentsMenu id="toolbar">
- <item type="button">
- <name><xts:string id="IDS_FRAG_COMMENT_VIEWER_ADD_COMMENT"/></name>
- <image>fragments/myinbox/images/add_comment.gif</image>
- <action>_THIS_action('addComment');</action>
- </item>
- <item type="comboButton">
- <menu id="commentsMenu" fullImagePath="true" >
- <item selected="true" fullImagePath="true">
- <image alt="User Comments" pre="_THIS?frag-resource=" post="/THIS_">/fragments/myinbox/images/user_comments.gif</image>
- <name><xts:string id="IDS_FRAG_COMMENT_VIEWER_LABEL_USER_COMMENTS"/></name>
- <value>USER_COMMENTS</value>
- <action>_THIS_action($(_THIS_),'Task.Comments',0);</action>
- </item>
- <item fullImagePath="true">
- <image alt="Audit Comments" pre="_THIS?frag-resource=" post="/THIS_">/fragments/myinbox/images/audit_comments.gif</image>
- <name><xts:string id="IDS_FRAG_COMMENT_VIEWER_LABEL_AUDIT_COMMENTS"/></name>
- <value>AUDIT_COMMENTS</value>
- <action>_THIS_action($(_THIS_),'Task.Comments',1);</action>
- </item>
- <item fullImagePath="true">
- <name><xts:string id="IDS_FRAG_COMMENT_VIEWER_LABEL_ALL_COMMENTS"/></name>
- <value>ALL_COMMENTS</value>
- <action>_THIS_action($(_THIS_),'Task.Comments',2);</action>
- </item>
- </menu>
- </item>
- </commentsMenu>
- </response>
- </xsl:template>
- </xsl:stylesheet>
|