From 7a97df190cb993056aa097befb3813100cfc286e Mon Sep 17 00:00:00 2001 From: Emil Stenstròˆm Date: Sat, 17 Nov 2012 13:14:12 +0100 Subject: Fixed #19277 -- Added LocaleMiddleware.response_redirect_class Thanks ppetrid at yawd.eu for the suggestion. --- docs/ref/middleware.txt | 6 ++++++ docs/releases/1.7.txt | 6 ++++++ 2 files changed, 12 insertions(+) (limited to 'docs') diff --git a/docs/ref/middleware.txt b/docs/ref/middleware.txt index 7aac286c2d..9799db0865 100644 --- a/docs/ref/middleware.txt +++ b/docs/ref/middleware.txt @@ -151,6 +151,12 @@ Enables language selection based on data from the request. It customizes content for each user. See the :doc:`internationalization documentation `. +.. attribute:: LocaleMiddleware.response_redirect_class + +Defaults to :class:`~django.http.HttpResponseRedirect`. Subclass +``LocaleMiddleware`` and override the attribute to customize the redirects +issued by the middleware. + Message middleware ------------------ diff --git a/docs/releases/1.7.txt b/docs/releases/1.7.txt index 8f650a1a9e..4014007bfa 100644 --- a/docs/releases/1.7.txt +++ b/docs/releases/1.7.txt @@ -267,6 +267,12 @@ Forms :func:`~django.forms.formsets.formset_factory` to allow validating a minimum number of submitted forms. +Internationalization +^^^^^^^^^^^^^^^^^^^^ + +* The :attr:`django.middleware.locale.LocaleMiddleware.response_redirect_class` + attribute allows you to customize the redirects issued by the middleware. + Management Commands ^^^^^^^^^^^^^^^^^^^ -- cgit v1.3