Subversion Repositories Projects

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
        <xsl:template match="*"><xsl:apply-templates /></xsl:template>

        <xsl:template match="dataset">
        <xsl:copy>
        <xsl:apply-templates select="@*"/>
        <xsl:apply-templates />
        </xsl:copy>
        <xsl:text>
        </xsl:text>
        </xsl:template>

        <xsl:template match="text()"></xsl:template>
       
        <xsl:template match="data[@offset='20' or @offset='21' or @offset='22' or @offset='23' or @offset='24' or @offset='25' or @offset='26' or @offset='27' or @offset='28' or @offset='29' or @offset='30']">
                <xsl:copy><xsl:apply-templates select="@*"/></xsl:copy>
                <!-- <xsl:apply-templates select=''/> -->
                <xsl:text>
                </xsl:text>
        </xsl:template>

        <xsl:template match="data"></xsl:template>
       
        <xsl:template match="attribute::*">
                <xsl:copy>
                </xsl:copy>
        </xsl:template>
</xsl:stylesheet>