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=6798>. 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=6798 xsl:number returns incorrect value when namespace is present ------- Additional Comments From [EMAIL PROTECTED] 2002-03-01 22:55 ------- I just looked at this in Xalan-C++, and it's a bit more subtle. There are several problems, at least with the C++ code. The first is related to the fact that the node in the source document is in the default namespace. Since that's the case, there's no prefix on the name of the node, so we look for element nodes with that node name, but without any namespace. The other, at least in the case of the C++ code, is that we're trying to resolve prefixes against the stylesheet, rather than against the source document.
