|
| toXml (self, level, f) |
| Generate XML output of the node.
|
|
| __init__ (self, data) |
|
| __str__ (self) |
|
| __unicode__ (self) |
|
| appendChild (self, node) |
| Raises an error.
|
|
| hasChildNodes (self) |
|
| insertBefore (self, newChild, refChild) |
| Raises an error.
|
|
| removeChild (self, oldChild) |
| Raises an error.
|
|
| replaceChild (self, newChild, oldChild) |
| Raises an error.
|
|
| hasChildNodes (self) |
| Tells whether this element has any children; text nodes, subelements whatever.
|
|
| insertBefore (self, newChild, refChild) |
| Inserts the node newChild before the existing child node refChild.
|
|
| appendChild (self, newChild) |
| Adds the node newChild to the end of the list of children of this node.
|
|
| removeChild (self, oldChild) |
| Removes the child node indicated by oldChild from the list of children, and returns it.
|
|
Definition at line 344 of file element.py.
◆ toXml()
odf.element.CDATASection.toXml |
( |
| self, |
|
|
| level, |
|
|
| f ) |
Generate XML output of the node.
If the text contains "]]>", then escape it by going out of CDATA mode (]]>), then write the string and then go into CDATA mode again. ()
Reimplemented from odf.element.Text.
Definition at line 351 of file element.py.
◆ data
odf.element.CDATASection.data |
◆ nodeType
odf.element.CDATASection.nodeType = Node.CDATA_SECTION_NODE |
|
static |
The documentation for this class was generated from the following file: