12345678910111213141516171819202122232425262728293031 |
- <?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 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
- xmlns="http://developer.cognos.com/schemas/report/1/"
- xmlns:baltic="http://developer.cognos.com/schemas/report/1/"
- exclude-result-prefixes="baltic" >
-
- <xsl:template match="baltic:XMLAttributes">
- <xsl:apply-templates select="child::node()"/>
- </xsl:template>
- <!-- - - - - - - - - - - - - - - - - - - - - - - - -->
- <!-- Copy all nodes and attributes by default. -->
- <!-- - - - - - - - - - - - - - - - - - - - - - - - -->
- <xsl:template match="@*|node()">
- <xsl:copy>
- <xsl:apply-templates select="@*|node()"/>
- </xsl:copy>
- </xsl:template>
-
- </xsl:stylesheet>
|