12345678910111213141516171819202122232425262728293031323334353637 |
- <?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:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xts="http://developer.cognos.com/schemas/xts/" xmlns:xtsext="xalan://com.cognos.xts.ext.XTSExt">
- <xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes"/>
- <xsl:template match="/" mode="common">
- <script type="text/javascript">
- /*
- * Generate the localised task type text. Used in the task image alt and title attributes
- */
- function _THIS_getLocalisedTaskTooltip(presentationName) {
- //alert('_THIS_getLocalisedTaskTooltip'+presentationName);
- var tooltip='';
- if (presentationName=='Approve Task') {
- tooltip='<xts:string id="IDS_APPROVAL_TASK_TOOLTIP" encode="javascript"/>';
- }
- else if (presentationName=='Notification Task') {
- tooltip='<xts:string id="IDS_NOTIFICATION_TASK_TOOLTIP" encode="javascript"/>';
- }
- else if (presentationName=='Generic Task') {
- tooltip='<xts:string id="IDS_GENERIC_TASK_TOOLTIP" encode="javascript"/>';
- }
- else if (presentationName=='Acknowledge Task') {
- tooltip='<xts:string id="IDS_ACKNOWLEDGE_TASK_TOOLTIP" encode="javascript"/>';
- }
- return tooltip;
- }
- </script>
- </xsl:template>
- </xsl:stylesheet>
|