In XSLT, what is the difference between the "current node" and the "context node"? You can find both terms used here: http://www.w3.org/TR/xslt.
When would you use one or the other? How do you refer to each?
|
In XSLT, what is the difference between the "current node" and the "context node"? You can find both terms used here: http://www.w3.org/TR/xslt. When would you use one or the other? How do you refer to each? |
||||
|
|
|
The current node is whatever the template is currently operating on. Normally this happens to also be the context node, but the context node has special meaning within a nested XPath expression (the part in square brackets). There, it refers to whatever node is currently being tested for a match. Hence, the context node changes within the XPath expression, but not the current node. The context node can be abbreviated with a dot ( Since a dot gives you the context node, in a nested XPath expression the user needs a way to refer back to the current node, the one being processed by the current template. You can do this via the Distinguishing these two is useful in some cases. For instance, suppose you have some XML like this:
Now suppose you want to convert it to LaTeX like this:
The trick is the tell whether a footnote has already been used or not. If this is the first time you've encountered the footnote, you want to write a
Here we are comparing the context-node So in short, the context node leaves you inside the XPath predicate; the current node reaches outside the predicate, back to the node being processed by the current template. |
|||||||||||||
|