Commit 73dbee34 authored by 's avatar

Reworked xmltools to use Shared.DC.xml.xmllib (1.5.1 version) so that

changes in the 1.5.2 xmllib dont break everything.
parent 71e7e45e
......@@ -89,9 +89,10 @@
in favor of a standard xml package once some issues are
worked out."""
__version__='$Revision: 1.6 $'[11:-2]
__version__='$Revision: 1.7 $'[11:-2]
import sys, os, string, xmllib
import sys, os, string
import Shared.DC.xml.xmllib
from Acquisition import Implicit
from cStringIO import StringIO
......@@ -359,9 +360,9 @@ class Comment(Node):
class XmlParser(xmllib.XMLParser):
class XmlParser(Shared.DC.xml.xmllib.XMLParser):
def __init__(self):
xmllib.XMLParser.__init__(self)
Shared.DC.xml.xmllib.XMLParser.__init__(self)
self.root=None
self.node=None
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment