[XML-SIG] SAX Events to DOM Tree

2005-02-18 Thread Neil Benn
Hello, I have a couple of questions : I'm looking for some code which takes SAX Events and converts them to a DOM Tree, the sax events don;t have a namespace decleration - however I'm lost, from this page (http://pyxml.sourceforge.net/topics/howto/node10.html) I can see : dom.ext.re

[XML-SIG] Trouble installing PyXML

2005-02-18 Thread Michael Prilla
Hi, I'm getting several errors while installing PyXML. I tried different versions of PyXML (0.8.1, 0.8.3, 0.8.4) to verify the problem but the errors are always the same. The first problems arise when I start 'setup.py' by 'python setup.py build' and it gives back: File "sysconfig.py", line 172

Re: [XML-SIG] SAX Events to DOM Tree

2005-02-18 Thread Brian Quinlan
Neil Benn wrote: Hello, I have a couple of questions : I'm looking for some code which takes SAX Events and converts them to a DOM Tree, the sax events don;t have a namespace decleration - however I'm lost, from this page (http://pyxml.sourceforge.net/topics/howto/node10.html) I can

[XML-SIG] XML stuff

2005-02-18 Thread Neil Benn
Hello, Thanks for the response Brian: ---1 Cool - although I tested it straight off, binding to a Reader emitting start/end doc, start/end elements and no characters (both making a character call with an empty string and not making a character call at all). Anyways, I get a traceback :

Re: [XML-SIG] XML stuff

2005-02-18 Thread Brian Quinlan
Neil Benn wrote: For the XMLGenerator, there is not a flag in XMLGenerator that I can find - it doesn't appear in the dir and something like that would be in the dir as I would need to access it. I ge teh point about the insignifcant white space and that is why a pretty print should be an o

Re: [XML-SIG] SAX Events to DOM Tree

2005-02-18 Thread Uche Ogbuji
On Fri, 2005-02-18 at 13:20 +0100, Neil Benn wrote: > Hello, > > I have a couple of questions : > > I'm looking for some code which takes SAX Events and converts > them to a DOM Tree See http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/298343 Available with updates in Ama