フィルター属性を返す次のテンプレートがあります。
<xsl:template name="have_arch_attrib">
<xsl:variable name="condition_values"/>
<xsl:variable name="security_values"/>
<xsl:variable name="arch_values"/>
<xsl:choose>
<xsl:when test=".[@arch]"> <!-- add arch values -->
<xsl:variable name="arch_values" select=".[@arch]" />
</xsl:when>
<xsl:when test=".[@condition]"> <!-- Add condition values -->
<xsl:variable name="condition_values" select=".[@condition]" />
</xsl:when>
<xsl:when test=".[@security]"> <!-- Add condition values -->
<xsl:variable name="security_values" select=".[@security]"/>
</xsl:when>
</xsl:choose>
<xsl:attribute name="filter"><xsl:value-of select="concat($condition_values, $security_values, $arch_values)"/></xsl:attribute>
他のソリューションを見てきましたが、これにどのように適用できるかわかりませんか?
誰でも私に手がかりを与えることができますか?
ありがとう、
ラス