1234567891011121314151617181920212223242526272829 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: AGS
- (C) Copyright IBM Corp. 2005, 2008
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xts="http://developer.cognos.com/schemas/xts/" exclude-result-prefixes="xsl xts">
- <xsl:output method="html" version="1.0" encoding="UTF-8" indent="no"/>
- <xsl:template match="/root">
- <xsl:apply-templates select="markup/*" mode="copy"/>
- <xsl:copy-of select="formFields/*"/>
- </xsl:template>
- <xsl:template match="@*|node()[local-name() != 'form']" mode="copy">
- <xsl:copy>
- <xsl:apply-templates select="@*" mode="copy"/>
- <xsl:apply-templates mode="copy"/>
- </xsl:copy>
- </xsl:template>
- <xsl:template match="text()" priority="0"/>
- </xsl:stylesheet>
|