summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2013-06-28 20:50:36 -0300
committerRamiro Morales <cramm0@gmail.com>2013-06-28 21:48:16 -0300
commit8eadbc5a03d06f5bfedfa3fad35ad0801d2ab6ff (patch)
treec9c1639a774a7dae0601dc680fe3c0a4d3648196 /docs/ref
parent6ba69c8456461aa30f415331b948f7f92dfcf211 (diff)
Removed 'mimetype' arguments from a few places, as per deprecation TL.
This includes HttpResponse and co. __init__() methods, django.shortcuts.render_to_response() and the index(), sitemap() sitemap app views.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/template-response.txt6
1 files changed, 2 insertions, 4 deletions
diff --git a/docs/ref/template-response.txt b/docs/ref/template-response.txt
index 4f34d150ed..a8fb8dfee6 100644
--- a/docs/ref/template-response.txt
+++ b/docs/ref/template-response.txt
@@ -82,8 +82,7 @@ Methods
deprecated), but since this is actually the value included in the HTTP
``Content-Type`` header, it can also include the character set
encoding, which makes it more than just a MIME type specification. If
- ``mimetype`` is specified (not ``None``), that value is used.
- Otherwise, ``content_type`` is used. If neither is given,
+ ``content_type`` is specified, then its value is used. Otherwise,
:setting:`DEFAULT_CONTENT_TYPE` is used.
@@ -175,8 +174,7 @@ Methods
deprecated), but since this is actually the value included in the HTTP
``Content-Type`` header, it can also include the character set
encoding, which makes it more than just a MIME type specification. If
- ``mimetype`` is specified (not ``None``), that value is used.
- Otherwise, ``content_type`` is used. If neither is given,
+ ``content_type`` is specified, then its value is used. Otherwise,
:setting:`DEFAULT_CONTENT_TYPE` is used.
``current_app``