12345678910111213141516171819202122232425262728293031323334353637 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: rspecupgrade
- (C) Copyright IBM Corp. 2005, 2010
- US Government Users Restricted Rights - Use, duplication or disclosure
- restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <!-- COPYRIGHT_DATA { 'YEAR':[2005, 2009], 'RELEASE':['colorado_wave1'], 'VISIBLE':'YES', 'COMPONENT':'rspecupgrade' }-->
- <!--All lines above the COPYRIGHT_DATA line will be replaced when copyright notices are generated. -->
- <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:baltic="http://developer.cognos.com/schemas/report/1/" xmlns="http://developer.cognos.com/schemas/report/2.0/" xmlns:date="http://exslt.org/dates-and-times" xmlns:exsl="http://exslt.org/common" xmlns:xalan="http://xml.apache.org/xalan" xmlns:java="http://xml.apache.org/xalan/java" extension-element-prefixes="xalan date exsl" exclude-result-prefixes="xalan java baltic date exsl">
- <xsl:template match="baltic:fieldSet">
- <fieldSet>
- <xsl:call-template name="fieldFrameTemplate"/>
- </fieldSet>
- </xsl:template>
- <xsl:template name="fieldFrameTemplate">
- <xsl:call-template name="addStyle"/>
- <xsl:if test="count(@id) = 1">
- <xsl:attribute name="name"><xsl:value-of select="@id"/></xsl:attribute>
- </xsl:if>
- <xsl:if test="count(@showCaption) = 1">
- <xsl:attribute name="showCaption"><xsl:value-of select="@showCaption"/></xsl:attribute>
- </xsl:if>
- <xsl:call-template name="layoutContainerGroupTemplate"/>
- <xsl:call-template name="simpleLayoutGroupTemplate"/>
- <xsl:apply-templates select="baltic:caption"/>
- </xsl:template>
- <xsl:template match="baltic:caption">
- <fieldSetCaption>
- <xsl:call-template name="layoutContainerTemplate"/>
- </fieldSetCaption>
- </xsl:template>
- </xsl:stylesheet>
|