123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: cpscrn
- (C) Copyright IBM Corp. 2005, 2011
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <!--
- Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
- Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
- -->
- <!-- $Header: //cpscrn/main/templates/cps4/portlets/nav/portlet-impl/viewer/ready.xslt#1 $ -->
- <!-- $DateTime: 2008/10/22 11:12:04 $ -->
- <!-- $Change: 25109 $ -->
- <xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:xts="http://developer.cognos.com/schemas/xts/"
- xmlns:ui="http://developer.cognos.com/schemas/cps/logic/ui/1/"
- exclude-result-prefixes="xts ui">
- <xsl:output method="html" version="1.0" encoding="UTF-8" indent="no"/>
- <ui:property name="display-height" select="'display_height'"/>
- <xsl:template match="/">
- <table border="0" cellspacing="0" cellpadding="0" width="100%">
- <tr>
- <td class="portlet-font" align="center" valign="middle">
- <xsl:attribute name="height">
- <xsl:choose>
- <xsl:when test="$display-height!=''"><xsl:value-of select="$display-height"/></xsl:when>
- <xsl:otherwise>100</xsl:otherwise>
- </xsl:choose>
- </xsl:attribute>
- <xsl:choose>
- <xsl:when test="$ui-state-params[@name = 'channel'] != ''"><xts:string id="IDS_NAV_VEW_READY_FOR_REQUESTS"/></xsl:when>
- <xsl:otherwise>
- <xsl:choose>
- <xsl:when test="$ui-mode = 'wsrp:preview'"><xts:string id="IDS_PRO_NOC_LABEL_NO_CONTENT"/></xsl:when>
- <xsl:otherwise><xts:string id="IDS_PRO_NOC_LABEL_CLICK_EDIT"/></xsl:otherwise>
- </xsl:choose>
- </xsl:otherwise>
- </xsl:choose>
- </td>
- </tr>
- </table>
- <xsl:if test="$ui-mode = 'wsrp:preview'">
- <table border="0" cellpadding="0" cellspacing="0" valign="top" width="100%">
- <tr>
- <td class="cognos-help-link" align="center">
- <ui:help/>
- <a class="cognos-anchor" href="javascript:wsrp_rewrite_doHelp();"><xts:string id="IDS_PRO_HTM_HELP_LINK"/></a>
- </td>
- </tr>
- </table>
- </xsl:if>
- </xsl:template>
- </xsl:stylesheet>
|