view gnv/src/main/webapp/WEB-INF/config/templates/describe-ui-static.xsl @ 974:a8e044224b16

Enhanced the 1-step back history to a N-step back history. gnv/trunk@1142 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Tue, 01 Jun 2010 16:11:06 +0000
parents 21ad44ccdb84
children
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="back-url"/>
    <xsl:param name="selectfis"/>
    <xsl:param name="edit"></xsl:param>
    <xsl:param name="total"><xsl:value-of select="count(*)"/></xsl:param>

    <!-- start parsing document -->
    <xsl:template match="*">
        <table class="static">
            <xsl:apply-templates />
        </table>
    </xsl:template>

    
    <!-- match multi select boxes -->
    <xsl:template match="xform:select">
        <tr>
            <th class="parameter"><xsl:value-of select="xform:label" /></th>
            <td><xsl:apply-templates select="xform:choices" /></td>
            <td class="historyback">
                <xsl:call-template name="InsertEdit">
                    <xsl:with-param name="state" select="@art:state" />
                    <xsl:with-param name="index" select="position()" />
                    <xsl:with-param name="fis" select="@art:fis" />
                </xsl:call-template>
            </td>
        </tr>
    </xsl:template>


    <xsl:template name="InsertEdit">
        <xsl:param name="state" />
        <xsl:param name="index" />
        <xsl:param name="fis" />
        <xsl:if test="$state != ''">
            <a href="{$back-url}?target={$state}">
                <img title="{$edit}" alt="{$edit}" src="images/back_button.png"/>
            </a>
        </xsl:if>
        <xsl:if test="$fis">
            <a href="{$selectfis}"><img title="{$edit}" alt="{$edit}" src="images/back_button.png"/></a>
        </xsl:if>
    </xsl:template>


    <!-- match select boxes -->
    <xsl:template match="xform:select1">
        <tr>
            <th class="parameter"><xsl:value-of select="xform:label" /></th>
            <td><xsl:apply-templates select="xform:choices" /></td>
            <td class="historyback">
                <xsl:call-template name="InsertEdit">
                    <xsl:with-param name="state" select="@art:state" />
                    <xsl:with-param name="index" select="position()" />
                    <xsl:with-param name="fis" select="@art:fis" />
                </xsl:call-template>
            </td>
        </tr>
    </xsl:template>

    
    <!-- match item list of select boxes or multi select boxes -->
    <xsl:template match="xform:choices">
        <table class="choices"><xsl:apply-templates select="xform:item" /></table>
    </xsl:template>


    <!-- match item of select boxes or multi select boxes -->
    <xsl:template match="xform:item">
        <tr>
            <td class="value"><xsl:value-of select="xform:label" /></td>
        </tr>
    </xsl:template>


    <!-- match group items -->
    <xsl:template match="xform:group">
        <tr>
            <th class="parameter"><xsl:value-of select="xform:label" /></th>
            <td>
                <table><xsl:apply-templates select="xform:input" /></table>
            </td>
            <td class="historyback">
                <xsl:call-template name="InsertEdit">
                    <xsl:with-param name="state" select="@art:state" />
                    <xsl:with-param name="index" select="position()" />
                    <xsl:with-param name="fis" select="@art:fis" />
                </xsl:call-template>
            </td>
        </tr>
    </xsl:template>


    <!-- match single group item -->
    <xsl:template match="xform:input">
        <tr>
            <td class="value"><xsl:value-of select="xform:label" />&#160;<xsl:value-of select="xform:value" /></td>
        </tr>
    </xsl:template>

</xsl:stylesheet>

http://dive4elements.wald.intevation.org