RSUpgradeFieldSet.xsl 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: rspecupgrade
  5. (C) Copyright IBM Corp. 2005, 2010
  6. US Government Users Restricted Rights - Use, duplication or disclosure
  7. restricted by GSA ADP Schedule Contract with IBM Corp.
  8. -->
  9. <!-- COPYRIGHT_DATA { 'YEAR':[2005, 2009], 'RELEASE':['colorado_wave1'], 'VISIBLE':'YES', 'COMPONENT':'rspecupgrade' }-->
  10. <!--All lines above the COPYRIGHT_DATA line will be replaced when copyright notices are generated. -->
  11. <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">
  12. <xsl:template match="baltic:fieldSet">
  13. <fieldSet>
  14. <xsl:call-template name="fieldFrameTemplate"/>
  15. </fieldSet>
  16. </xsl:template>
  17. <xsl:template name="fieldFrameTemplate">
  18. <xsl:call-template name="addStyle"/>
  19. <xsl:if test="count(@id) = 1">
  20. <xsl:attribute name="name"><xsl:value-of select="@id"/></xsl:attribute>
  21. </xsl:if>
  22. <xsl:if test="count(@showCaption) = 1">
  23. <xsl:attribute name="showCaption"><xsl:value-of select="@showCaption"/></xsl:attribute>
  24. </xsl:if>
  25. <xsl:call-template name="layoutContainerGroupTemplate"/>
  26. <xsl:call-template name="simpleLayoutGroupTemplate"/>
  27. <xsl:apply-templates select="baltic:caption"/>
  28. </xsl:template>
  29. <xsl:template match="baltic:caption">
  30. <fieldSetCaption>
  31. <xsl:call-template name="layoutContainerTemplate"/>
  32. </fieldSetCaption>
  33. </xsl:template>
  34. </xsl:stylesheet>