XML:
Code:
<field>
<property name="data" value="false"/>
<property name="space" value="false"/>
<property name="declaration" value="false"/>
</field>
Wanted result:
Code:
<field>
<property name="data" value="true"/>
<property name="space" value="false"/>
<property name="declaration" value="false"/>
</field>
With XSL I want to scan through documents, changing all the attribute values that are "false" and have a name attribute equal to "data", into "true" (so to in this instance only to change the value of the first property element).
I've been looking around but couldn't find the answer. Any suggestions to how would I complete this with XSLT?
*edited to clarify