diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-07-05 01:25:05 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-07-05 01:25:05 +0000 |
| commit | 7c35eee103df3b6f971ef77aa8394c898bf77687 (patch) | |
| tree | 1b3d024414d33264e1c77a2108fb0e130c3b742e | |
| parent | e7427cb22f21a520b117b84b02e44fbaf628ce3e (diff) | |
Form encoding should be changed only via HttpRequest, not on GET and POST
directly.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5614 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | docs/unicode.txt | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/docs/unicode.txt b/docs/unicode.txt index e0d7ab94e1..1ab255970c 100644 --- a/docs/unicode.txt +++ b/docs/unicode.txt @@ -345,9 +345,7 @@ client. By default, the ``DEFAULT_CHARSET`` setting is used as the assumed encoding for form data. If you need to change this for a particular form, you can set -the ``encoding`` attribute on the ``GET`` and ``POST`` data structures. For -convenience, changing the ``encoding`` property on an ``HttpRequest`` instance -does this for you. For example:: +the ``encoding`` attribute on an ``HttpRequest`` instance. For example:: def some_view(request): # We know that the data must be encoded as KOI8-R (for some reason). |
