File applications/examples/views/generic.xml artifact 8aecf60dfa part of check-in b33aaf3ac3
{{ ### # response._vars contains the dictionary returned by thecontroller action ### try: from gluon.serializers import xml response.write(xml(response._vars), escape=False) response.headers['Content-Type'] = 'text/xml' except (TypeError, ValueError): raise HTTP(405, 'XML serialization error') except ImportError: raise HTTP(405, 'XML not available') except: raise HTTP(405, 'XML error') }}