Subversion Repositories Projects

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1570 - 1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3
<xsl:output method="xml" indent="yes"/>
4
        <xsl:template match="*"><xsl:apply-templates /></xsl:template>
5
 
6
        <xsl:template match="dataset">
7
        <xsl:copy>
8
        <xsl:apply-templates select="@*"/>
9
        <xsl:apply-templates />
10
        </xsl:copy>
11
        <xsl:text>
12
        </xsl:text>
13
        </xsl:template>
14
 
15
        <xsl:template match="text()"></xsl:template>
16
 
17
        <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']">
18
                <xsl:copy><xsl:apply-templates select="@*"/></xsl:copy>
19
                <!-- <xsl:apply-templates select=''/> -->
20
                <xsl:text>
21
                </xsl:text>
22
        </xsl:template>
23
 
24
        <xsl:template match="data"></xsl:template>
25
 
26
        <xsl:template match="attribute::*">
27
                <xsl:copy>
28
                </xsl:copy>
29
        </xsl:template>
30
</xsl:stylesheet>