view artifacts/contrib/inline-dc-attribute.xsl @ 8443:df65f24af5bc

(issue1762) Use getValue to obtain dateRange values The getToValue was always the initial value regardless of what has been entered in the form. According to the documentation both getToValue and getFromValue should return the "initial value" of the form field. But wether this means the value before validation corrections or the value the field is initialized with (which is also not true in both cases as the field is set only after creation) It returned the real value for the from date but not for the to date. With an explicit getValue we workaround this issue.
author Andre Heinecke <andre.heinecke@intevation.de>
date Wed, 22 Oct 2014 17:33:43 +0200
parents 5aa05a7a34b7
children
line wrap: on
line source
<?xml version="1.0" encoding="UTF-8"?>
<!--
    inline-dc-attribute.xsl
    =======================
    Transforms datacage templates from:

        <foo>
          <dc:element name="bar" value="${baz}"/>
          <dc:element name="bla" value="${blub}-${urgs}"/>
        </foo>

    to:

        <foo bar="{$bar} bla="{$blub}-{$urgs}/>
-->
<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:dc="http://www.intevation.org/2011/Datacage">

  <xsl:output method="xml" encoding="UTF-8" indent="yes"/>

  <xsl:template name="string-replace-all">
    <xsl:param name="text"/>
    <xsl:param name="replace"/>
    <xsl:param name="by"/>
    <xsl:choose>
      <xsl:when test="contains($text, $replace)">
        <xsl:value-of select="substring-before($text,$replace)"/>
        <xsl:value-of select="$by"/>
        <xsl:call-template name="string-replace-all">
          <xsl:with-param name="text" select="substring-after($text,$replace)"/>
          <xsl:with-param name="replace" select="$replace"/>
          <xsl:with-param name="by" select="$by"/>
        </xsl:call-template>
      </xsl:when>
      <xsl:otherwise>
        <xsl:value-of select="$text"/>
      </xsl:otherwise>
    </xsl:choose>
  </xsl:template>

  <xsl:template
    match="node()[count(dc:attribute) &gt; 0 and namespace-uri() != 'http://www.intevation.org/2011/Datacage']">
    <xsl:copy>
      <xsl:for-each select="./dc:attribute">
        <xsl:attribute name="{@name}">
          <xsl:call-template name="string-replace-all">
            <xsl:with-param name="text" select="@value"/>
            <xsl:with-param name="replace">${</xsl:with-param>
            <xsl:with-param name="by">{$</xsl:with-param>
          </xsl:call-template>
        </xsl:attribute>
      </xsl:for-each>
      <xsl:apply-templates select="@*|node()" mode="ignore-text"/>
    </xsl:copy>
  </xsl:template>

  <xsl:template match="dc:attribute|text()" mode="ignore-text"/>
  <xsl:template match="@*|node()" mode="ignore-text">
    <xsl:copy>
      <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
  </xsl:template>

  <xsl:template match="@*|node()">
    <xsl:copy>
      <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
  </xsl:template>

</xsl:stylesheet>

http://dive4elements.wald.intevation.org