forked from 0x2620/pandora
16 lines
423 B
Python
16 lines
423 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# vi:si:et:sw=4:sts=4:ts=4
|
||
|
|
||
|
from django.http import HttpResponse
|
||
|
from django.utils import simplejson
|
||
|
from django.conf import settings
|
||
|
|
||
|
|
||
|
def render_to_json_response(dictionary, content_type="text/json"):
|
||
|
indent=None
|
||
|
if settings.DEBUG:
|
||
|
content_type = "text/javascript"
|
||
|
indent = 2
|
||
|
return HttpResponse(simplejson.dumps(dictionary, indent=indent), content_type=content_type)
|
||
|
|