This is an acquisition-like wrapper that provides parent access for
DOM sans circular references!
Methods
|
|
|
|
__getattr__
|
__getattr__ ( self, name )
|
|
__init__
|
__init__ (
self,
aq_self,
aq_parent,
)
|
|
_getDOMIndex
|
_getDOMIndex (
self,
children,
getattr=getattr,
)
|
|
_get_DOMIndex
|
_get_DOMIndex (
self,
children,
getattr=getattr,
)
|
|
_get_NextSibling
|
_get_NextSibling (
self,
type=type,
st=type( '' ),
)
|
|
_get_OwnerDocument
|
_get_OwnerDocument ( self )
|
|
_get_ParentNode
|
_get_ParentNode ( self )
|
|
_get_PreviousSibling
|
_get_PreviousSibling (
self,
type=type,
st=type( '' ),
getattr=getattr,
None=None,
)
|
|
getNextSibling
|
getNextSibling (
self,
type=type,
st=type( '' ),
)
The node immediately preceding this node. If
there is no such node, this returns None.
|
|
getOwnerDocument
|
getOwnerDocument ( self )
The Document object associated with this node, if any.
|
|
getParentNode
|
getParentNode ( self )
The parent of this node. All nodes except Document
DocumentFragment and Attr may have a parent
|
|
getPreviousSibling
|
getPreviousSibling (
self,
type=type,
st=type( '' ),
getattr=getattr,
None=None,
)
The node immediately preceding this node. If
there is no such node, this returns None.
|
|