My input.xml is as follows:
<root>
<Property>
<info>
<Name>A</Name>
<Value>1000</Value>
</info>
<info>
<Name>B</Name>
<Value>2000</Value>
</info>
<info>
<Name>C</Name>
<Value>3000</Value>
</info>
</Property>
</root>
So here when I say -
<xsl:apply-templates select="//Property/info"> How the tree will be? Can I think it as shown below?
<Property>
<info>
<Name>A</Name>
<Value>1000</Value>
</info>
<info>
<Name>B</Name>
<Value>2000</Value>
</info>
<info>
<Name>C</Name>
<Value>3000</Value>
</info>
</Property>
and when matching template can I take the Property element as root element in the tree? (I am thinking yes as I executed it and thinking that seperate tree will be created somewhere in memory - Is that true? (explanation please))
<xsl:template match="Property/info"/>
Here my actual Q is- are the templates be applied to the tree in buffer (taking it as main tree) or to the original source tree?
a) If things are calculated/applied on buffered tree, we should not be able to retrieve the root element right when I say
<xsl:copy-of select="../../*"/>
because buffered tree doesn't have root element and processor doesn't know about root element. [But how things are working actually?]
b) If templates are applied to the original source tree then
<xsl:template match="Property/info"/>
should not work right? (as we should give in this way:
<xsl:template match="root/Property/info"/>
or
<xsl:template match="//Property/info"/>
but without mentioning as above its working. How is it possible?)