12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- BI and PM: qs
- (C) Copyright IBM Corp. 2001, 2017
- 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">
- <xsl:output method="xml" encoding="UTF-8" indent="yes"/>
-
- <!-- Update the system version -->
- <!-- =================================================================================== -->
- <xsl:template match="/">
- <xsl:comment>
- Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
- Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
- </xsl:comment>
- <system version="3.0">
- <xsl:apply-templates select="system/child::node()"/>
- </system>
- </xsl:template>
-
-
- <!-- Remove deprecated parameters -->
- <!-- =================================================================================== -->
- <xsl:template match="param[@name='webcontent']"/>
- <xsl:template match="param[@name='contentLocale']"/>
- <xsl:template match="param[@name='timeZone']"/>
- <xsl:template match="param[@name='timeFormat']"/>
- <xsl:template match="param[@name='dateFormatShort']"/>
- <xsl:template match="param[@name='dateFormatLong']"/>
- <xsl:template match="param[@name='availableRunLocales']"/>
- <xsl:template match="param[@name='ui_objects']"/>
- <xsl:template match="param[@name='delimiters']"/>
- <xsl:template match="param[@name='CCHome']"/>
- <xsl:template match="param[@name='OEMmessages']"/>
-
-
- <!-- Copy everything else -->
- <!--
- We don't currently have any comments we want to copy over, remove them explicitly
- <xsl:template match="*|comment()">
- -->
- <xsl:template match="*">
- <xsl:copy>
- <xsl:copy-of select="@*"/>
- <xsl:apply-templates/>
- </xsl:copy>
- </xsl:template>
- </xsl:stylesheet>
|