Django

Code

Changeset 1161

Show
Ignore:
Timestamp:
11/10/05 18:25:03 (3 years ago)
Author:
adrian
Message:

Updated middleware.txt to note that response middleware is applied in reverse

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/middleware.txt

    r948 r1161  
    2828    ) 
    2929 
    30 Django applies middleware in the order it's defined in ``MIDDLEWARE_CLASSES``. 
     30Django applies middleware in the order it's defined in ``MIDDLEWARE_CLASSES``, 
     31except in the case of response middleware, which is applied in reverse order. 
    3132 
    3233A Django installation doesn't require any middleware -- e.g.,