Modify valparse to recurse into the RHS.

master v2.16.0
Greg Torbenson 2018-05-09 12:07:32 -04:00
parent e764141b71
commit f2e3cdf5f7
1 changed files with 13 additions and 6 deletions

View File

@ -61,6 +61,13 @@
<xsl:call-template name="lvmp:gen-val">
<xsl:with-param name="name" select="$val" />
</xsl:call-template>
<xsl:if test="$post">
<xsl:text> . </xsl:text>
<!-- TODO: escape -->
<xsl:call-template name="lvm:valparse">
<xsl:with-param name="str" select="$post" />
</xsl:call-template>
</xsl:if>
</xsl:when>
<!-- static value; no variable -->
@ -68,15 +75,15 @@
<xsl:text>'</xsl:text>
<xsl:value-of select="$str" />
<xsl:text>'</xsl:text>
<xsl:if test="$post">
<xsl:text> . '</xsl:text>
<!-- TODO: escape -->
<xsl:value-of select="$post" />
<xsl:text>'</xsl:text>
</xsl:if>
</xsl:otherwise>
</xsl:choose>
<xsl:if test="$post">
<xsl:text> . '</xsl:text>
<!-- TODO: escape -->
<xsl:value-of select="$post" />
<xsl:text>'</xsl:text>
</xsl:if>
</xsl:template>