Mercurial > dive4elements > gnv-client
view gnv/src/main/webapp/WEB-INF/config/templates/describe-ui.xsl @ 993:9b126bceb0b2
gnv/issue219: Added rendering of direct links.
gnv/trunk@1194 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Thu, 10 Jun 2010 22:01:23 +0000 |
parents | 13de46229f63 |
children | 27029f0ec7e1 |
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" xmlns="http://www.w3.org/2002/xforms" xmlns:xform="http://www.w3.org/2002/xforms" xmlns:art="http://www.intevation.de/2009/artifacts" exclude-result-prefixes="xform art"> <xsl:output method="html" version="1.0" encoding="UTF-8" omit-xml-declaration="no" /> <xsl:param name="example-linestring"/> <xsl:param name="example-polygon"/> <xsl:param name="next-url">/gnv/next.do</xsl:param> <xsl:param name="further">false</xsl:param> <xsl:param name="exception"/> <xsl:param name="gnviewer-select-button-src">./images/auswaehlen.png</xsl:param> <xsl:template match="node()"> <div id="timeseriesfilter"> <form id="fisSelectionForm" onsubmit="displayOverlay()" action="{$next-url}" method="post"> <fieldset> <xsl:if test="$exception != ''"> <div class="inputException"><xsl:value-of select="$exception"/></div> </xsl:if> <xsl:apply-templates mode="basic"/> <h2>Here i am</h2> <h2>"<xsl:value-of select="$further"/>"</h2> <xsl:if test="$further = 'true'"> <br/> <input style="margin-top: 5px;" type="image" src="{$gnviewer-select-button-src}"/> </xsl:if> </fieldset> </form> </div> </xsl:template> <!-- single select --> <xsl:template match="xform:select1" mode="basic"> <xsl:variable name="selectName" select="@ref"/> <legend><xsl:value-of select="xform:label"/></legend> <select name="{$selectName}"> <xsl:apply-templates mode="basic"/> </select> </xsl:template> <!-- multi select --> <xsl:template match="xform:select" mode="basic"> <xsl:variable name="selectName" select="@ref"/> <xsl:variable name="items" select="count(//xform:item)"/> <legend> <xsl:value-of select="xform:label"/> </legend> <xsl:choose> <xsl:when test="$items = 1"> <select name="{$selectName}" multiple="multiple" size="{$items}"> <xsl:apply-templates mode="selected"/> </select> </xsl:when> <xsl:when test="$items < 5"> <select name="{$selectName}" multiple="multiple" size="{$items}"> <xsl:apply-templates mode="basic"/> </select> </xsl:when> <xsl:otherwise> <select name="{$selectName}" multiple="multiple" size="5"> <xsl:apply-templates mode="basic"/> </select> </xsl:otherwise> </xsl:choose> </xsl:template> <!-- options for select --> <xsl:template match="xform:item" mode="basic"> <xsl:variable name="optionValue" select="xform:value"/> <xsl:choose> <xsl:when test="@selected = 'true'"> <option value="{$optionValue}" selected="selected"> <xsl:value-of select="xform:label"/> </option> </xsl:when> <xsl:otherwise> <option value="{$optionValue}"> <xsl:value-of select="xform:label"/> </option> </xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template match="xform:item" mode="selected"> <xsl:variable name="optionValue" select="xform:value"/> <option value="{$optionValue}" selected="selected"> <xsl:value-of select="xform:label"/> </option> </xsl:template> <xsl:template match="xform:group" mode="basic"> <xsl:variable name="selectcount" select="count(xform:select)"/> <legend> <xsl:value-of select="xform:label"/> </legend> <xsl:choose> <xsl:when test="$selectcount < '1'"> <table class="dynamic"> <xsl:apply-templates mode="basic"/> </table> </xsl:when> <xsl:otherwise> <table class="static"> <tr> <td><!-- nothing here --></td> <!-- take the first select node to render column labels --> <xsl:apply-templates select="xform:select[1]/xform:item" mode="matrixHeader"/> </tr> <tr> <td><!-- nothing here --></td> <xsl:apply-templates select="xform:select[1]/xform:item" mode="matrixSelectable"/> </tr> <!-- render matrix' body --> <xsl:apply-templates select="xform:select" mode="matrix" /> </table> </xsl:otherwise> </xsl:choose> </xsl:template> <!-- rendering column headers (measurements) --> <xsl:template match="xform:item" mode="matrixHeader"> <td class="matrixHeader"> <xsl:value-of select="xform:label/text()"/> </td> </xsl:template> <!-- --> <xsl:template match="xform:item" mode="matrixSelectable"> <xsl:variable name="value" select="xform:value/text()"/> <xsl:variable name="name" select="@ref"/> <td class="matrixSelectableHeader"> <input type="checkbox" name="{$name}" value="{$value}" /> </td> </xsl:template> <!-- render the first column with parameter names into matrix --> <xsl:template match="xform:select" mode="matrix"> <tr> <td><xsl:value-of select="@label" /></td> <xsl:apply-templates mode="matrix" /> </tr> </xsl:template> <!-- render checkboxes and disable checkboxes for invalid parameter measurements --> <xsl:template match="xform:item" mode="matrix"> <xsl:variable name="value" select="xform:value/text()"/> <xsl:variable name="name" select="@ref"/> <td class="matrixContent"> <xsl:choose> <xsl:when test="@disabled = 'true'"> <img src="./images/delete.png"/> </xsl:when> <xsl:otherwise> <img src="./images/tick.png"/> </xsl:otherwise> </xsl:choose> </td> </xsl:template> <xsl:template match="xform:input" mode="basic"> <xsl:variable name="inputValue" select="xform:value"/> <xsl:variable name="inputName" select="@ref"/> <xsl:variable name="label" select="xform:label"/> <!-- TODO: Remove this when we have the GIS interface. (slt) --> <xsl:choose> <xsl:when test="$inputName = 'mesh_linestring'"> <a href="javascript:copy_demo_wkt_line();"><xsl:value-of select="$example-linestring"/>:</a><br/> </xsl:when> <xsl:when test="$inputName = 'mesh_polygon'"> <a href="javascript:copy_demo_wkt_polygon();"><xsl:value-of select="$example-polygon"/>:</a><br/> </xsl:when> </xsl:choose> <tr> <xsl:choose> <xsl:when test="$label != ''"> <td class="parameter"><xsl:value-of select="$label"/>:</td> </xsl:when> </xsl:choose> <td> <input type="text" id="{$inputName}" name="{$inputName}" value="{$inputValue}" /><br/> </td> </tr> </xsl:template> <xsl:template match="xform:label" mode="basic"> <!-- do nothing here --> </xsl:template> </xsl:stylesheet>