view etl/doc/havel.xsl @ 8801:dece88059a36

(Issue1856) Exclude ACC 3.1, use 3.2.2 instead. ACC 3.2.2 closes a critical serealization weakness.
author Tom Gottfried <tom@intevation.de>
date Tue, 22 Dec 2015 11:22:06 +0100
parents b8d6aac3acf2
children
line wrap: on
line source
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

    <xsl:output method="xml"/>

    <xsl:template match="/DIPSFLYS/STATIONEN/PEGELSTATION[@GEWAESSER='Untere Havel-Wasserstraße (UHW)']">
        <PEGELSTATION>
            <xsl:attribute name="GEWAESSER">Havel</xsl:attribute>
            <xsl:apply-templates select="@*[local-name() != 'GEWAESSER']"/>
            <xsl:apply-templates select="node()"/>
        </PEGELSTATION>
    </xsl:template>

    <xsl:template match="@*|node()">
       <xsl:copy>
          <xsl:apply-templates select="@*|node()"/>
       </xsl:copy>
    </xsl:template>

</xsl:stylesheet>

http://dive4elements.wald.intevation.org