RSUpgradeBaltic.xsl 1.5 KB

12345678910111213141516171819202122232425262728293031
  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. <!--
  12. *
  13. * Intermediate stage in upgrading from a baltic report specification
  14. * to a bering report specification.
  15. *
  16. * The input is a baltic report specification. The output is an
  17. * augmented baltic report specification that is only used as input for
  18. * further processing to get to the final bering specification.
  19. -->
  20. <xsl:stylesheet version="1.0" xmlns="http://developer.cognos.com/schemas/report/1/" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:baltic="http://developer.cognos.com/schemas/report/1/" 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">
  21. <xsl:include href="RSUpgradeBalticChart.xsl"/>
  22. <!-- Copy anything that is unmatched over to output. -->
  23. <xsl:template match="@*|node()">
  24. <xsl:copy>
  25. <xsl:apply-templates select="@*|node()"/>
  26. </xsl:copy>
  27. </xsl:template>
  28. </xsl:stylesheet>