Changeset 456
- Timestamp:
- 02/26/03 13:56:25 (6 years ago)
- Files:
-
- trunk/RBTelepathy/RBTelepathy/Packet/Elements.py (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/RBTelepathy/RBTelepathy/Packet/Elements.py
r453 r456 24 24 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 25 25 26 from RBFoundation import XML Production26 from RBFoundation import XMLNode 27 27 import URIAddress 28 28 … … 33 33 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 34 34 35 class PacketElementBase(XML Production.xmlnode):35 class PacketElementBase(XMLNode.xmlnode): 36 36 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 37 37 #~ Constants / Variables / Etc. … … 158 158 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 159 159 160 _NodeXMLAdaptor = XML Production.NodeXMLAdaptor160 _NodeXMLAdaptor = XMLNode.NodeXMLAdaptor 161 161 class XMLAdaptor(_NodeXMLAdaptor): 162 162 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ … … 190 190 return _NodeXMLAdaptor._xmlInitComplete(self) 191 191 192 class Factory(XML Production.XMLNodeFactory):192 class Factory(XMLNode.XMLNodeFactory): 193 193 __slots__ = [] 194 194 xmladaptor = XMLAdaptor
