Changes between Version 63 and Version 64 of VersionOneFeatures


Ignore:
Timestamp:
Mar 8, 2007, 1:51:30 AM (17 years ago)
Author:
Malcolm Tredinnick
Comment:

Added middleware ordering.

Legend:

Unmodified
Added
Removed
Modified
  • VersionOneFeatures

    v63 v64  
    1919|| windows installers              || ?           || No           || not started                       ||    ||
    2020|| [#DecimalField DecimalField]    || adurdin     || Yes          || needs testing                      || #2365, #200, #2519, #3238, #3324  ||
     21|| [#Middlewareordering middleware ordering] || ?           || No         || not started                       || #730, #749 ||
    2122
    2223
     
    9293
    9394See also [http://groups.google.com/group/django-developers/browse_thread/thread/852e0115b2535be9/dc496ed3a5d5429e#dc496ed3a5d5429e this thread].
     95
     96=== Middleware ordering ===
     97
     98We are not treating the middleware hierarchy as a stack, in the sense that if one piece of middleware short-circuits the response construction, we go right to the bottom of the pile before processing the request. We need to decide what behaviour we really want here and record it. Both the referenced tickets have good points in them and since this might slightly change request/response behaviour, it's a pre-1.0 decision if possible.
Back to Top