teichmann@4565: <?xml version="1.0" encoding="UTF-8"?>
teichmann@4565: <xsl:stylesheet
teichmann@4565:   version="1.0"
teichmann@4565:   xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
teichmann@4565: 
teichmann@4565:   <xsl:output method="text"/>
teichmann@4565: 
teichmann@4565:   <xsl:param name="base-url">https://flys-intern.intevation.de/Flys-3.0/OnlineHilfe</xsl:param>
teichmann@4565:   <xsl:param name="module">Fixierungsanalyse</xsl:param>
teichmann@4565: 
teichmann@4565:   <xsl:template match="//state">
teichmann@4565:       <xsl:value-of select="@helpText"/>=<xsl:value-of
teichmann@4565:               select="concat($base-url, '/', $module, '#', @helpText)"/>
teichmann@4565:       <xsl:text>&#10;</xsl:text>
teichmann@4565:   </xsl:template>
teichmann@4565: 
teichmann@4565:   <xsl:template match="text()"/>
teichmann@4565: 
teichmann@4565: </xsl:stylesheet>