Element in our template tree.
|
|
|
|
|
genElementsByType(self,
type)
Will generate (yield) all values of a specific type in the tree
starting with us. |
source code
|
|
|
|
getFullDataName(self)
Return fully qualified name inside of data map |
source code
|
|
|
|
getRoot(self)
Get the root of this DOM tree |
source code
|
|
|
|
printDomMap(self,
level=0)
Print out a map of the dom. |
source code
|
|
|
|
toXmlDom(self,
parent,
dict)
Convert to an XML DOM object tree for use in xpath queries. |
source code
|
|
|
|
_setXmlAttribute(self,
node,
key,
value)
Set an XML attribute with handling for UnicodeDecodeError. |
source code
|
|
|
|
_getXmlAttribute(self,
node,
key)
Get an XML attribute with handling for UnicdeDecodeError. |
source code
|
|
|
|
|
|
|
|
|
|
_FixParents(self,
start=None,
parent=None)
Walk down from start and fix parent settings on children |
source code
|
|
|
|
|
|
|
nextSibling(self)
Get the next sibling or return None |
source code
|
|
|
|
previousSibling(self)
Get the prior sibling or return None |
source code
|
|
|
|
hasChildNode(self,
name)
Checks to see if origional parsed XML has a child node with the
specified name. |
source code
|
|
|
|
|
|
|
|