Mercurial > dive4elements > river
diff flys-artifacts/contrib/extract-help.xsl @ 4565:ce6bea03156c 2.9.6
Add help anchors for fix analysis
author | Sascha L. Teichmann <teichmann@intevation.de> |
---|---|
date | Fri, 16 Nov 2012 18:23:26 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/flys-artifacts/contrib/extract-help.xsl Fri Nov 16 18:23:26 2012 +0100 @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8"?> +<xsl:stylesheet + version="1.0" + xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> + + <xsl:output method="text"/> + + <xsl:param name="base-url">https://flys-intern.intevation.de/Flys-3.0/OnlineHilfe</xsl:param> + <xsl:param name="module">Fixierungsanalyse</xsl:param> + + <xsl:template match="//state"> + <xsl:value-of select="@helpText"/>=<xsl:value-of + select="concat($base-url, '/', $module, '#', @helpText)"/> + <xsl:text> </xsl:text> + </xsl:template> + + <xsl:template match="text()"/> + +</xsl:stylesheet>