I have made some changes to my pyexpat module for IronPython, and it
can run some simple xml.dom codes now.
https://svn.sourceforge.net/svnroot/fepy/trunk/lib/pyexpat.py
Test cases were written too. It exercises DOM Level 1 constructs
(tagName, getAttribute, childNodes, data) and DOM Level 2 name
I made some updates to pyexpat.py.
http://sparcs.kaist.ac.kr/~tinuviel/fepy/lib/
* Support for XML namespaces
It can now read NamespaceURI + LocalName instead of Name.
* Code simplification
It should be a bit easier to read now. Used StringReader instead of
MemoryStream.
Seo Sanghyeon
__
pyexpat is a built-in XML parser for CPython. As this is not available
from IronPython, I wrote a wrapper around System.Xml.XmlTextReader to
fake the interface.
http://sparcs.kaist.ac.kr/~tinuviel/devel/fepy/pyexpat.py
With this, an example from the Python Library Reference runs correctly:
http:/