Fixed #333 -- Added DEFAULT_MIME_TYPE setting, and set it to 'text/html; charset=utf-8' by default
git-svn-id: http://code.djangoproject.com/svn/django/trunk@670 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
39a907a051
commit
36fc73a45b
|
@ -32,6 +32,10 @@ LANGUAGE_CODE = 'en-us'
|
|||
# notifications and other various e-mails.
|
||||
MANAGERS = ADMINS
|
||||
|
||||
# Default MIME type to use for all HttpResponse objects, if a MIME type
|
||||
# isn't manually specified. This is directly used as the Content-Type header.
|
||||
DEFAULT_MIME_TYPE = 'text/html; charset=utf-8'
|
||||
|
||||
# E-mail address that error messages come from.
|
||||
SERVER_EMAIL = 'root@localhost'
|
||||
|
||||
|
|
|
@ -2,8 +2,7 @@ from Cookie import SimpleCookie
|
|||
from pprint import pformat
|
||||
from urllib import urlencode
|
||||
import datastructures
|
||||
|
||||
DEFAULT_MIME_TYPE = 'text/html'
|
||||
from django.conf.settings import DEFAULT_MIME_TYPE
|
||||
|
||||
class HttpRequest(object): # needs to be new-style class because subclasses define "property"s
|
||||
"A basic HTTP request"
|
||||
|
|
|
@ -48,7 +48,7 @@ def get_query_string(original_params, new_params={}, remove=[]):
|
|||
def index(request):
|
||||
t = template_loader.get_template('index')
|
||||
c = Context(request, {'title': 'Site administration'})
|
||||
return HttpResponse(t.render(c), mimetype='text/html; charset=utf-8')
|
||||
return HttpResponse(t.render(c))
|
||||
|
||||
def change_list(request, app_label, module_name):
|
||||
from django.core import paginator
|
||||
|
@ -491,7 +491,7 @@ def change_list(request, app_label, module_name):
|
|||
'title': (is_popup and 'Select %s' % opts.verbose_name or 'Select %s to change' % opts.verbose_name),
|
||||
'is_popup': is_popup,
|
||||
})
|
||||
return HttpResponse(t.render(c), mimetype='text/html; charset=utf-8')
|
||||
return HttpResponse(t.render(c))
|
||||
|
||||
def _get_flattened_data(field, val):
|
||||
"""
|
||||
|
@ -788,7 +788,7 @@ def add_stage(request, app_label, module_name, show_delete=False, form_url='', p
|
|||
return HttpResponseRedirect(post_url_continue % pk_value)
|
||||
if request.POST.has_key("_popup"):
|
||||
return HttpResponse('<script type="text/javascript">opener.dismissAddAnotherPopup(window, %s, "%s");</script>' % \
|
||||
(pk_value, repr(new_object).replace('"', '\\"')), mimetype='text/html; charset=utf-8')
|
||||
(pk_value, repr(new_object).replace('"', '\\"')))
|
||||
elif request.POST.has_key("_addanother"):
|
||||
request.user.add_message("%s You may add another %s below." % (msg, opts.verbose_name))
|
||||
return HttpResponseRedirect(request.path)
|
||||
|
@ -851,7 +851,7 @@ def add_stage(request, app_label, module_name, show_delete=False, form_url='', p
|
|||
raw_template = _get_template(opts, app_label, add=True, show_delete=show_delete, form_url=form_url)
|
||||
# return HttpResponse(raw_template, mimetype='text/plain')
|
||||
t = template_loader.get_template_from_string(raw_template)
|
||||
return HttpResponse(t.render(c), mimetype='text/html; charset=utf-8')
|
||||
return HttpResponse(t.render(c))
|
||||
|
||||
def change_stage(request, app_label, module_name, object_id):
|
||||
mod, opts = _get_mod_opts(app_label, module_name)
|
||||
|
@ -976,7 +976,7 @@ def change_stage(request, app_label, module_name, object_id):
|
|||
raw_template = _get_template(opts, app_label, change=True)
|
||||
# return HttpResponse(raw_template, mimetype='text/plain')
|
||||
t = template_loader.get_template_from_string(raw_template)
|
||||
return HttpResponse(t.render(c), mimetype='text/html; charset=utf-8')
|
||||
return HttpResponse(t.render(c))
|
||||
|
||||
def _nest_help(obj, depth, val):
|
||||
current = obj
|
||||
|
@ -1092,7 +1092,7 @@ def delete_stage(request, app_label, module_name, object_id):
|
|||
"deleted_objects": deleted_objects,
|
||||
"perms_lacking": perms_needed,
|
||||
})
|
||||
return HttpResponse(t.render(c), mimetype='text/html; charset=utf-8')
|
||||
return HttpResponse(t.render(c))
|
||||
|
||||
def history(request, app_label, module_name, object_id):
|
||||
mod, opts = _get_mod_opts(app_label, module_name)
|
||||
|
@ -1110,4 +1110,4 @@ def history(request, app_label, module_name, object_id):
|
|||
'module_name': capfirst(opts.verbose_name_plural),
|
||||
'object': obj,
|
||||
})
|
||||
return HttpResponse(t.render(c), mimetype='text/html; charset=utf-8')
|
||||
return HttpResponse(t.render(c))
|
||||
|
|
Loading…
Reference in New Issue