DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=16276>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=16276 Namespace Nodes are re-declared from parent elements [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED ------- Additional Comments From [EMAIL PROTECTED] 2003-01-20 22:57 ------- The only think a NodeTester does is implement the XPath notion of a node test. So, that can be something like the name of a node, or a type of node, such as node(), comment(), etc. Predicates are evaluated after the nodes are collected, which is the only way the value of a namespace node can be tested. In this case, all we're interested in is the local name of the node, because that's the prefix to which the namespace is bound. It might be more efficient to collect all of the unique namespace nodes, then check them with the NodeTester, but the node tests are very cheap, so I don't think it's worth the effort. What do you think?