Re: [Python-Dev] minidom and DOM level 2

2007-04-13 Thread Jason Orendorff
On 4/13/07, Andrew Clover <[EMAIL PROTECTED]> wrote: > Jason Orendorff wrote: > > I don't suppose you'd be willing to update it for Python 2.5, would you? > > Can do, but at this point I'm not aware of any work having been done on > the issues listed there between the 2.3 and 2.5 releases. I've be

Re: [Python-Dev] minidom and DOM level 2

2007-04-13 Thread Andrew Clover
Jason Orendorff wrote: > I don't suppose you'd be willing to update it for Python 2.5, would you? Can do, but at this point I'm not aware of any work having been done on the issues listed there between the 2.3 and 2.5 releases. The danger is people may be used to the "wrong" minidom behaviours,

Re: [Python-Dev] minidom and DOM level 2

2007-04-07 Thread Jason Orendorff
On 4/7/07, "Martin v. Löwis" <[EMAIL PROTECTED]> wrote: > In any case, the *claim* certainly is that minidom supports > level 2 core. Any proof to the contrary indicates a bug; > patches are welcome. OK-- I'll work on this. I can fix the easy ones, anyway. -j

Re: [Python-Dev] minidom and DOM level 2

2007-04-07 Thread Martin v. Löwis
> Martin, have you looked at this? Only just now. I assume Andrew is right on these, although one would have to verify each and every one, reading the spec, reading the documentation, reading the source, testing, fixing. Very time-consuming. In any case, the *claim* certainly is that minidom supp

Re: [Python-Dev] minidom and DOM level 2

2007-04-07 Thread Jason Orendorff
On 4/7/07, Andrew Clover <[EMAIL PROTECTED]> wrote: > Jason Orendorff wrote: > > OK, I think this is worthwhile then. :) I'll read the spec and submit > > a patch. > > You're planning to implement EntityReference in minidom? That'll be fun! > :-) One of the nastier corners of DOM and XML in general

Re: [Python-Dev] minidom and DOM level 2

2007-04-07 Thread Andrew Clover
Jason Orendorff wrote: > OK, I think this is worthwhile then. :) I'll read the spec and submit > a patch. You're planning to implement EntityReference in minidom? That'll be fun! :-) One of the nastier corners of DOM and XML in general. > I'd be happy to do some diffing between the implementat

Re: [Python-Dev] minidom and DOM level 2

2007-03-23 Thread Jason Orendorff
On 3/23/07, "Martin v. Löwis" <[EMAIL PROTECTED]> wrote: > Jason Orendorff schrieb: > > The lib ref claims that minidom supports DOM Level 1. Does anyone > > know what parts of Level 2 are not implemented? I wasn't able to find > > anything offhand. > > I now looked at it closely, and the only th

Re: [Python-Dev] minidom and DOM level 2

2007-03-23 Thread Martin v. Löwis
Jason Orendorff schrieb: > The lib ref claims that minidom supports DOM Level 1. Does anyone > know what parts of Level 2 are not implemented? I wasn't able to find > anything offhand. I now looked at it closely, and the only thing missing from DOM Level 2 Core (that I could find) is the Entit

Re: [Python-Dev] minidom and DOM level 2

2007-03-22 Thread Martin v. Löwis
Jason Orendorff schrieb: > The lib ref claims that minidom supports DOM Level 1. Does anyone > know what parts of Level 2 are not implemented? Most prominently, minidom only implements the Core module of DOM level 2, none of Views, Events, Style, Traversal and Range, or HTML. Whether anything is

Re: [Python-Dev] minidom and DOM level 2

2007-03-22 Thread Brett Cannon
On 3/22/07, Jason Orendorff <[EMAIL PROTECTED]> wrote: > The lib ref claims that minidom supports DOM Level 1. Does anyone > know what parts of Level 2 are not implemented? I wasn't able to find > anything offhand. It seems to be more a matter of what's not > documented, or what's not covered by

[Python-Dev] minidom and DOM level 2

2007-03-22 Thread Jason Orendorff
The lib ref claims that minidom supports DOM Level 1. Does anyone know what parts of Level 2 are not implemented? I wasn't able to find anything offhand. It seems to be more a matter of what's not documented, or what's not covered by the regression tests. So. I'd be happy to do some diffing be