Home | Trees | Indices | Help |
---|
|
1 from django.http import HttpResponse 2 from django.utils import simplejson 3 from django.shortcuts import render_to_response 4 from django.template import RequestContext 5 from django.views.decorators.cache import cache_page, cache_control 6 from models import *7 8 @cache_page(60 * 60 * 8) 9 @cache_control(must_revalidate=False, max_age=60 * 60 * 8) 10 -def get_json(request):20 24
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Tue Oct 30 11:31:05 2012 | http://epydoc.sourceforge.net |