Oops, I forgot to mention an additional patch I submitted dealing with the
preceding axis iterator - in particular an off-by-one error in the
implementation of setStartNode(int):

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=1407

Also in this iterator I've noticed a typo that would lead to reset()
functioning incorrectly:

--- DOMImpl.java        2001/06/12 13:22:05     1.11
+++ DOMImpl.java        2001/07/03 22:13:47
@@ -1039,7 +1039,7 @@
        // redefine NodeIteratorBase's reset
        public NodeIterator reset() {
            _node = ROOTNODE;
-           _spStart = _sp;
+           _sp = _spStart;
            return resetPosition();
        }

> -----Original Message-----
> From: John Howard [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, July 10, 2001 3:29 PM
> To: '[EMAIL PROTECTED]'
> Subject: RE: Notice for 2.2.0 G/A
> 
> 
> Has anyone had a look at the patches I've submitted? They 
> resolve problems
> we've found in xsltc using the xsl we're developing:
> 
> http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2343
> http://nagoya.apache.org/bugzilla/show_bug.cgi?id=1407
> 
> I'm also continuing to track down the following problem (and 
> enjoying it
> very much!):
> 
> http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2468
> 

Reply via email to