blob: 93d9b0f97ff92b917d94f5b6ba6e103ad0d90e45 (
plain) (
tree)
|
|
<?xml version="1.0" encoding="ISO-8859-2"?>
<?xml-stylesheet href="." type="application/x-xsl"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="no" encoding="ISO-8859-2"/>
<xsl:preserve-space elements="*"/>
<!--
Transforms hes12-33.xml (hes05-33.dtd) to cs_los12.xml (losfile.dtd ver. 1.15)
-->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="YEAR | MONTH | DAY">
</xsl:template>
<xsl:template match="S">
<xsl:copy>
<xsl:apply-templates
select="@b|@ch|@v|@r2|@ch2|@v2|@r3|@ch3|@v3|@r4|@ch4|@v4|@n|@tr|node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
|