Mercurial > dive4elements > gnv-client
comparison gnv/src/main/webapp/WEB-INF/config/templates/describe-ui.xsl @ 291:b48172dc24ed
Added demo wkt linestrings via xslt and javascript.
gnv/trunk@453 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Thu, 17 Dec 2009 15:41:26 +0000 |
parents | 3be414dc974a |
children | 1b8fd2635ce4 |
comparison
equal
deleted
inserted
replaced
290:ca10f0ea153a | 291:b48172dc24ed |
---|---|
38 | 38 |
39 <xsl:template match="*[local-name() = 'input']"> | 39 <xsl:template match="*[local-name() = 'input']"> |
40 <xsl:variable name="inputValue" select="*[local-name() = 'value']"/> | 40 <xsl:variable name="inputValue" select="*[local-name() = 'value']"/> |
41 <xsl:variable name="inputName" select="@ref"/> | 41 <xsl:variable name="inputName" select="@ref"/> |
42 | 42 |
43 <xsl:if test="$inputName = 'mesh_linestring'"> | |
44 <a href="javascript:copy_demo_wkt_line();"><xsl:text>Beispiel WKT-Linestring einfügen:</xsl:text></a><br/> | |
45 </xsl:if> | |
46 | |
43 <xsl:choose> | 47 <xsl:choose> |
44 <xsl:when test="*[local-name() = 'label']!= ''"> | 48 <xsl:when test="*[local-name() = 'label']!= ''"> |
45 <xsl:value-of select="*[local-name() = 'label']"/>: | 49 <xsl:value-of select="*[local-name() = 'label']"/>: |
46 </xsl:when> | 50 </xsl:when> |
47 </xsl:choose> | 51 </xsl:choose> |
52 | |
48 <input type="text" id="{$inputName}" name="{$inputName}" value="{$inputValue}" /><br/> | 53 <input type="text" id="{$inputName}" name="{$inputName}" value="{$inputValue}" /><br/> |
49 </xsl:template> | 54 </xsl:template> |
50 | 55 |
51 <xsl:template match="*[local-name() = 'label']"> | 56 <xsl:template match="*[local-name() = 'label']"> |
52 </xsl:template> | 57 </xsl:template> |