I have the following XML code, that I am trying to transform using an xlst:
<setting>
<type>house</type>
<context>roof</context>
<value>blue</value>
</setting>
<setting>
<type>house</type>
<context>kitchen</context>
<value>red</value>
</setting>
<setting>
<type>house</type>
<context>floor</context>
<value>black</value>
</setting>
<setting>
<type>apartment</type>
<context>roof</context>
<value>red</value>
</setting>
I want to count whether the setting->type "apartment" has a "context->floor".
I tried to do this with:
<xsl:if test="count(setting[type='apartment'] and setting[context='floor']) < 1">
<!-- do what ever !-->
</xsl:if>
but it doesn't seem to work. I get an exception about trying turning a number into a boolean? Any suggestions?
update: i figured out that i could use:
<xsl:if test="count(setting[type='apartment' and context='floor']) < 1">