1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?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:xtsext="xalan://com.cognos.xts.ext.XTSExt"
- xmlns:cm="http://developer.cognos.com/schemas/xts-cm/1/"
- xmlns:cps="http://developer.cognos.com/schemas/cps/asm/objects/1/"
- xmlns:xos="http://developer.cognos.com/schemas/xts/output/"
- xmlns:xts="http://developer.cognos.com/schemas/xts/"
- exclude-result-prefixes="xsl cm xts cps xos xtsext">
-
- <xsl:output method="xml" encoding="UTF-8" version="1.0" indent="no"/>
-
- <xsl:template match="/root">
- <xts:sequence>
- <xts:append>
- <xsl:choose>
- <!-- If we are editing an existing page then read the layout -->
- <xsl:when test="/root/cm:queryResponse/cm:queryReply[1]/cm:pagelet/cm:layout">
- <xsl:value-of select="/root/cm:queryResponse/cm:queryReply[1]/cm:pagelet/cm:layout" disable-output-escaping="yes"/>
- </xsl:when>
-
- <xsl:otherwise>
- <xts:transform src="portal/mypages/transform/gen_pagelet_layout.xslt" processor="XSLT">
- <xsl:copy-of select="/root/env"/>
- </xts:transform>
- </xsl:otherwise>
- </xsl:choose>
- </xts:append>
- </xts:sequence>
- </xsl:template>
- </xsl:stylesheet>
|