Mercurial > dive4elements > gnv-client
comparison gnv/src/main/webapp/WEB-INF/config/templates/describe-ui.xsl @ 12:4ebe57b170d3
Integration of moving through the Artifact-States and rendering the UI.
gnv/trunk@91 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Wed, 16 Sep 2009 07:44:26 +0000 |
parents | 3cb753564552 |
children | 2535158e2687 |
comparison
equal
deleted
inserted
replaced
11:3cb753564552 | 12:4ebe57b170d3 |
---|---|
3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | 3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
4 xmlns="http://www.w3.org/2002/xforms" | 4 xmlns="http://www.w3.org/2002/xforms" |
5 xmlns:xform="http://www.w3.org/2002/xforms" | 5 xmlns:xform="http://www.w3.org/2002/xforms" |
6 xmlns:art="http://www.intevation.de/2009/artifacts"> | 6 xmlns:art="http://www.intevation.de/2009/artifacts"> |
7 <xsl:output method="html" version="1.0" encoding="UTF-8" omit-xml-declaration="no"/> | 7 <xsl:output method="html" version="1.0" encoding="UTF-8" omit-xml-declaration="no"/> |
8 | |
9 <xsl:template match="*[local-name() = 'ui']"> | |
10 <xsl:apply-templates/> | |
11 </xsl:template> | |
8 <xsl:template match="*[local-name() = 'select']"> | 12 <xsl:template match="*[local-name() = 'select']"> |
9 <xsl:variable name="selectName" select="@ref"/> | 13 <xsl:variable name="selectName" select="@ref"/> |
10 <select name="{$selectName}"> <xsl:apply-templates/></select> | 14 <select name="{$selectName}"> <xsl:apply-templates/></select> |
11 </xsl:template> | 15 </xsl:template> |
12 <xsl:template match="*[local-name() = 'item']"> | 16 <xsl:template match="*[local-name() = 'item']"> |
13 <xsl:variable name="optionValue" select="*[local-name() = 'value']"/> | 17 <xsl:variable name="optionValue" select="*[local-name() = 'value']"/> |
14 <option value="{$optionValue}"><xsl:value-of select="*[local-name() = 'label']"></xsl:value-of></option> | 18 <option value="{$optionValue}"><xsl:value-of select="*[local-name() = 'label']"></xsl:value-of></option> |
15 </xsl:template> | 19 </xsl:template> |
20 | |
21 | |
22 <xsl:template match="*[local-name() = 'input']"> | |
23 <xsl:variable name="inputValue" select="*[local-name() = 'value']"/> | |
24 <xsl:variable name="inputName" select="*[local-name() = 'label']"/> | |
25 <xsl:value-of select="*[local-name() = 'label']"/>: <input type="text" id="{$inputName}" name="{$inputName}" value="{$inputValue}" /><br/> | |
26 </xsl:template> | |
27 | |
16 <xsl:template match="*[local-name() = 'label']"> | 28 <xsl:template match="*[local-name() = 'label']"> |
17 </xsl:template> | 29 </xsl:template> |
30 | |
18 </xsl:stylesheet> | 31 </xsl:stylesheet> |