Corrected backwards middleware-ordering note in flatpage documentation.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16938 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
3f3010014b
commit
672f2db24a
|
@ -102,9 +102,12 @@ does all of the work.
|
||||||
methods. Only requests which are successfully routed to a view via
|
methods. Only requests which are successfully routed to a view via
|
||||||
normal URL resolution apply view middleware.
|
normal URL resolution apply view middleware.
|
||||||
|
|
||||||
Note that the order of :setting:`MIDDLEWARE_CLASSES` matters. Generally, you can
|
Note that the order of :setting:`MIDDLEWARE_CLASSES` matters. Generally, you
|
||||||
put :class:`~django.contrib.flatpages.middleware.FlatpageFallbackMiddleware` at
|
can put
|
||||||
the end of the list, because it's a last resort.
|
:class:`~django.contrib.flatpages.middleware.FlatpageFallbackMiddleware` at the
|
||||||
|
end of the list. This means it will run first when processing the response, and
|
||||||
|
ensures that any other response-processing middlewares see the real flatpage
|
||||||
|
response rather than the 404.
|
||||||
|
|
||||||
For more on middleware, read the :doc:`middleware docs
|
For more on middleware, read the :doc:`middleware docs
|
||||||
</topics/http/middleware>`.
|
</topics/http/middleware>`.
|
||||||
|
|
Loading…
Reference in New Issue