diff -r fd6dcb852688 -r b908d671624e app/soc/views/models/org_app.py --- a/app/soc/views/models/org_app.py Thu Feb 26 08:48:02 2009 +0000 +++ b/app/soc/views/models/org_app.py Thu Feb 26 09:02:51 2009 +0000 @@ -208,15 +208,7 @@ context = {'json': json} template = 'soc/json.html' - response = responses.respond(request, template, context) - - # if the browser supports HTTP/1.1 - # post-check and pre-check and no-store for IE7 - response['Cache-Control'] = 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0' - # if the browser supports HTTP/1.0 - response['Pragma'] = 'no-cache' - - return response + return responses.respond(request, template, context) view = View()