Mercurial > dive4elements > river
view etl/doc/havel.xsl @ 7383:36a194156f15
Datacage: Added dc:min-number(list) and dc:max-number(list) to extract the numerical
minimum/maximum from a list of numbers.
Example:
dc:min-number(dc:find-all('\d{4}', '1919 1291 1299 3029'))
returns
1291
author | Sascha L. Teichmann <teichmann@intevation.de> |
---|---|
date | Fri, 18 Oct 2013 18:36:18 +0200 |
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>