Search Results

2
votes
3answers
95 views

In what order do templates in an XSLT document execute, and do they match on the source XML or the buffered output?

Here is something that has always mystified me about XSLT: In what order do the templates execute, and When they execute, do they match on (a) the original source XML, or (b) …
1
vote
4answers
84 views

When the same XML element matches two XSLT templates through different XPaths, which template executes and why?

Consider this XML: <people> <person> <firstName>Deane</firstName> <lastName>Barker</lastName> </person> </people> …
0
votes
3answers
73 views

Is it correct that an XSLT will not process child nodes of the current node unless apply-templates is explicity called?

I think I know the answer to this, but I just want confirmation I'm understanding this correctly. When an XSLT template matches and executes, the children of the current node (the node …