app/django/utils/xmlutils.py
author Mario Ferraro <fadinlight@gmail.com>
Sun, 25 Oct 2009 19:09:38 +0000
changeset 3039 14194c0b3cd1
parent 54 03e267d67478
permissions -rw-r--r--
General JavaScript utilities for melange. This script is going to be the core of Melange JS. It provides a melange namespace and general utilies for logging, loading of google api, common errors, base class for templates that reads context from a script tag attribute. It also reads general options from its script tag.

"""
Utilities for XML generation/parsing.
"""

from xml.sax.saxutils import XMLGenerator

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