Rev 1570 | Details | Compare with Previous | 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"/> |
||
1633 | - | 4 | <xsl:template match="/mk-debugdata" > |
5 | <debug> |
||
6 | <xsl:apply-templates /> |
||
7 | </debug> |
||
8 | </xsl:template> |
||
9 | |||
1570 | - | 10 | <xsl:template match="*"><xsl:apply-templates /></xsl:template> |
11 | |||
12 | <xsl:template match="dataset"> |
||
13 | <xsl:copy> |
||
14 | <xsl:apply-templates select="@*"/> |
||
15 | <xsl:apply-templates /> |
||
16 | </xsl:copy> |
||
17 | <xsl:text> |
||
18 | </xsl:text> |
||
19 | </xsl:template> |
||
20 | |||
21 | <xsl:template match="text()"></xsl:template> |
||
22 | |||
1633 | - | 23 | <xsl:template match="data[@offset='19']"> |
1570 | - | 24 | <xsl:copy><xsl:apply-templates select="@*"/></xsl:copy> |
25 | <!-- <xsl:apply-templates select=''/> --> |
||
26 | <xsl:text> |
||
27 | </xsl:text> |
||
28 | </xsl:template> |
||
29 | |||
30 | <xsl:template match="data"></xsl:template> |
||
31 | |||
32 | <xsl:template match="attribute::*"> |
||
33 | <xsl:copy> |
||
34 | </xsl:copy> |
||
35 | </xsl:template> |
||
36 | </xsl:stylesheet> |