parser

Написать ответ на текущее сообщение

 

 
   команды управления поиском

Ответ

Vint 18.07.2008 11:47

Вынести проверку наружу:
<xsl:variable name="sort-order">
	<xsl:choose>
		<xsl:when test="="@lang = 'en'">
			<xsl:text>descending</xsl:text>
		</xsl:when>
		<xsl:otherwise>
			<xsl:text>ascending</xsl:text>
		</xsl:otherwise>
	</xsl:choose>
</xsl:variable>

<xsl:call-template name="printLocaleAddress">
	<xsl:with-param name="path" select="." />
	<xsl:with-param name="locale" select="@lang" />
	<xsl:with-param name="sort-order" select="$sort-order" />
</xsl:call-template>