summaryrefslogtreecommitdiff
path: root/django/utils/xmlutils.py
blob: 6638573857368023bb219f35fa7c9e46090ff4ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
"""
Utilities for XML generation/parsing.
"""

from xml.sax.saxutils import XMLGenerator

class SimplerXMLGenerator(XMLGenerator):
    def addQuickElement(self, name, contents=None, attrs={}):
        "Convenience method for adding an element with no children"
        self.startElement(name, attrs)
        if contents is not None:
            self.characters(contents)
        self.endElement(name)