blob: aa19355e37aa10268bf02d79a8da1d8d76402b41 [file] [log] [blame]
<?xml version="1.0"?>
<!-- $Id: load.xsl,v 1.2 2003/05/06 14:12:55 vgritsenko Exp $ -->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="ROWSET">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="ROW">
<xsl:apply-templates/>
</xsl:template>
<!-- Copy all and apply templates -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()" />
</xsl:copy>
</xsl:template>
</xsl:stylesheet>