[IronPython] pyexpat for IronPython and xml.dom

2006-10-24 Thread Sanghyeon Seo
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

[IronPython] pyexpat for IronPython update

2006-08-28 Thread Sanghyeon Seo
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 __

[IronPython] pyexpat for IronPython

2005-11-16 Thread 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:/