Rev 1570 |
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="/mk-debugdata" >
<debug>
<xsl:apply-templates />
</debug>
</xsl:template>
<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='19']">
<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>