123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: ps
- (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).
- -->
- <xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:cm="http://developer.cognos.com/schemas/xts-cm/1/"
- xmlns:pf="http://developer.cognos.com/schemas/xts/pf"
- xmlns:pm="http://developer.cognos.com/schemas/xts/pm"
- xmlns:mt="http://developer.cognos.com/schemas/xts/logicsheets/presentation/main/mt"
- xmlns:mf="http://developer.cognos.com/schemas/xts/logicsheets/presentation/main/mf"
- xmlns:xts="http://developer.cognos.com/schemas/xts/"
- xmlns:xtsext="xalan://com.cognos.xts.ext.XTSExt"
- xmlns:cf="http://developer.cognos.com/schemas/xts/logicsheets/xslt/presentation/controls/framework/"
- xmlns:cp="http://developer.cognos.com/schemas/xts/logicsheets/xslt/presentation/controls/presentation/"
- xmlns:rss="http://developer.cognos.com/schemas/xts/rss/"
- xmlns:bus="http://developer.cognos.com/schemas/bibus/3/"
- xmlns:out="dummy-uri"
- xmlns:cps="http://developer.cognos.com/schemas/cps/asm/objects/1/"
- xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
- exclude-result-prefixes="xsl cps cm pf pm mt mf xts xtsext cf cp rss out bus xts SOAP-ENV">
-
- <xsl:output method="html" version="1.0" encoding="UTF-8" indent="no" omit-xml-declaration="yes"/>
-
-
- <!-- Global vars -->
- <!-- ================================================= -->
- <mf:variables stateParams="m_ts m_folder m_folder2 m_nbid m_nbid2 m_section m_pagerfrom m_pagerto m_pg_e m_tab rui m_page backURL m_portlet" mode="main"/>
- <pf:variables/>
- <mf:main-variables/>
- <xsl:variable name="cmd-form" select="'cform'"/>
-
-
- <!-- start the output -->
- <!-- ================================================= -->
- <xsl:template match="/root">
-
- <xsl:variable name="oTitle">
- <xsl:choose>
- <xsl:when test="$pageName != ''">
- <xsl:value-of select="$pageName"/>
- </xsl:when>
- <xsl:when test="$pageNotFound != ''">
- <xts:string id="IDS_PAGE_UNAVAILABLE"/>
- </xsl:when>
- </xsl:choose>
- </xsl:variable>
-
- <head>
- <pf:meta expires="false"/>
- <title>
- <xsl:value-of select="$oTitle"/> -
- <xsl:choose>
- <xsl:when test="$displayMode = 'viewer'"><xts:string id="REPORT_VIEWER_WINDOW_TITLE"/></xsl:when>
- <xsl:otherwise><xts:string id="IDS_PORTAL"/></xsl:otherwise>
- </xsl:choose>
- </title>
- <mt:stylesheet/>
- <mf:head/>
- <pf:help context=""/>
- <pf:launch/>
- </head>
- </xsl:template>
-
- </xsl:stylesheet>
|