Mercurial > genshi > mirror
view examples/turbogears/genshitest/json.py @ 423:56bbe1d94da0 trunk
Applied patch for #106 (handling of hex charrefs in HTML parser).
author | cmlenz |
---|---|
date | Tue, 20 Mar 2007 18:27:52 +0000 |
parents | 84168828b074 |
children |
line wrap: on
line source
# This module provides helper functions for the JSON part of your # view, if you are providing a JSON-based API for your app. # Here's what most rules would look like: # @jsonify.when("isinstance(obj, YourClass)") # def jsonify_yourclass(obj): # return [obj.val1, obj.val2] # # The goal is to break your objects down into simple values: # lists, dicts, numbers and strings from turbojson.jsonify import jsonify