index
:
delta/python-packages/django.git
1.8
15667
16682
24046
24215
24525
26176
3.2-man-page
4.0/make-zoneinfo-default-timezone-implementation-squashed
alex-patch-1
attic/boulder-oracle-sprint
attic/full-history
attic/generic-auth
attic/gis
attic/i18n
attic/magic-removal
attic/multi-auth
attic/multiple-db-support
attic/new-admin
attic/newforms-admin
attic/per-object-permissions
attic/queryset-refactor
attic/schema-evolution
attic/schema-evolution-ng
attic/search-api
attic/sqlalchemy
attic/unicode
c/29988-allow-f-strings
c/32409-async-tests-cannot-call-orm
c/append-slash-opt-out
c/replace-utcnow
c/use-bpo-extlink
dep0005
dep5
fix-cache-test
fix/remove-stray-file
issue/31570
link-to-code-of-conduct
main
make-zoneinfo-default-timezone-implementation
master
remove-unnecesary-if-wrap
selenium-updates
sir-sigurd-patch-1
soc2009/admin-ui
soc2009/http-wsgi-improvements
soc2009/i18n-improvements
soc2009/model-validation
soc2009/multidb
soc2009/test-improvements
soc2010/app-loading
soc2010/query-refactor
soc2010/test-refactor
stable/0.90.x
stable/0.91.x
stable/0.95.x
stable/0.96.x
stable/1.0.x
stable/1.1.x
stable/1.10.x
stable/1.11.x
stable/1.2.x
stable/1.3.x
stable/1.4.x
stable/1.5.x
stable/1.6.x
stable/1.7.x
stable/1.8.x
stable/1.9.x
stable/2.0.x
stable/2.1.x
stable/2.2.x
stable/3.0.x
stable/3.1.x
stable/3.2.x
stable/4.0.x
stable/4.1.x
stable/4.2.x
swap-closing-quote-period-in-admin-i18nable-literal
ticket-25055
ticket-31342
update-next-docs-version
github.com: django/django.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
middleware
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fixed #6228: Changed common middleware to respect request-specific urlconf. T...
Karen Tracey
2010-03-07
1
-4
/
+5
*
Removed an 'assert False' I stupidly committed in [12165]
Adrian Holovaty
2010-01-10
1
-2
/
+0
*
Fixed #6094 -- Middleware exceptions are now caught by the core handler. Than...
Adrian Holovaty
2010-01-10
1
-0
/
+2
*
Fixed #8049 -- Fixed inconsistency in admin site is_active checks. Thanks for...
Adrian Holovaty
2010-01-10
1
-1
/
+2
*
Fixed #6991 -- Removed some redundant user.is_authenticated() calls in variou...
Adrian Holovaty
2010-01-09
1
-1
/
+1
*
Misc clarifications in csrf middleware comments
Luke Plant
2009-10-27
1
-6
/
+9
*
Slight change to CSRF error messages to make debugging easier.
Luke Plant
2009-10-27
1
-2
/
+6
*
Removed unused import.
Luke Plant
2009-10-27
1
-4
/
+0
*
Moved contrib.csrf.* to core code.
Luke Plant
2009-10-27
1
-0
/
+262
*
BACKWARDS-INCOMPATIBLE CHANGE: Removed SetRemoteAddrFromForwardedFor middleware.
Jacob Kaplan-Moss
2009-07-29
1
-20
/
+16
*
Fixed #10630 -- Be even more conservative in GZipMiddleware for IE.
Malcolm Tredinnick
2009-04-12
1
-3
/
+2
*
Fixed #9199 -- We were erroneously only prepending "www" to the domain if we
Malcolm Tredinnick
2008-10-07
1
-23
/
+35
*
Fixed #9221 -- Small optimisation to caching middleware handling.
Malcolm Tredinnick
2008-09-30
1
-2
/
+3
*
Fixed #7379: fixed a subtle corner case involving URL encoding in `CommonMidd...
Jacob Kaplan-Moss
2008-08-27
1
-1
/
+1
*
Fixed #8381 -- Fixed a problem with appending slashes in the common middleware
Malcolm Tredinnick
2008-08-21
1
-2
/
+2
*
Fixed a typo and added a bit more ReST markup to cache middleware docstring.
Gary Wilson Jr
2008-08-15
1
-10
/
+10
*
Split CacheMiddleware up into two parts -- an update-cache and a fetch-from-c...
Jacob Kaplan-Moss
2008-08-09
1
-57
/
+115
*
Fixed #8121 -- Don't override the Content-Language HTTP header in the locale
Malcolm Tredinnick
2008-08-09
1
-1
/
+2
*
Fixed #7919 -- md5 and sha modules are deprecated since Python 2.5, use hashl...
Gary Wilson Jr
2008-08-02
1
-3
/
+3
*
Fixed #7046 -- set the response status code correctly in ConditionalGetMiddle...
Malcolm Tredinnick
2008-06-30
1
-2
/
+2
*
Fixed #7228 -- Fixed our ETag header creation to meet the HTTP spec, by quoti...
Adrian Holovaty
2008-06-16
1
-1
/
+1
*
Fixed #6480 -- Added application/pdf the list of content types we don't compr...
Malcolm Tredinnick
2008-02-04
1
-6
/
+6
*
Fixed #3228 -- Added new APPEND_SLASH handling behaviour in the common middle...
Malcolm Tredinnick
2007-12-02
1
-15
/
+43
*
Fixed #5813 -- Taught the CacheMiddleware to respect any max-age HTTP header
Malcolm Tredinnick
2007-11-29
1
-5
/
+18
*
Made some stylistic changes in `GZipMiddleware` and added some notes about IE...
Gary Wilson Jr
2007-11-19
1
-7
/
+11
*
Fixed #5898 -- Changed a few response processing paths to make things harder ...
Malcolm Tredinnick
2007-11-11
1
-11
/
+7
*
Removed unused variable.
Gary Wilson Jr
2007-10-31
1
-1
/
+0
*
Fixed #5816 -- Fixed a regression from [6333] that generates incorrect cookie...
Gary Wilson Jr
2007-10-31
1
-2
/
+2
*
Fixed #5762 -- Quoted the portions that make up the URL when appending
Malcolm Tredinnick
2007-10-20
1
-4
/
+6
*
Fixed #5313 -- Only avoid compressing Javascript when the user agent says it'...
Malcolm Tredinnick
2007-10-20
1
-3
/
+4
*
Fixed #3872, which turns out to not have been a bug in the first place, by re...
Jacob Kaplan-Moss
2007-09-20
1
-4
/
+3
*
Fixed #3872 -- Fixed incorrect handling of HTTP_X_FORWARDED_FOR in SetRemoteA...
Adrian Holovaty
2007-09-16
1
-2
/
+3
*
Added a get_host() method to HttpRequest. There is still an http.get_host() v...
Malcolm Tredinnick
2007-09-15
1
-2
/
+2
*
Added more dict-like methods to HttpResponse as part of the response.headers ...
Jacob Kaplan-Moss
2007-09-14
1
-1
/
+1
*
Fixed #4994 -- Send back set-cookie headers in "not modified" responses. Well...
Malcolm Tredinnick
2007-08-12
1
-0
/
+2
*
Fixed #4946 -- Added some small improvements to Gzip middleware. Thanks, coli...
Malcolm Tredinnick
2007-08-12
1
-0
/
+5
*
Fixed #4199 -- Changed date formatting in HTTP expires header to be spec
Malcolm Tredinnick
2007-07-16
1
-3
/
+2
*
Fixed #4484 -- Fixed APPEND_SLASH handling to handle an empty path value.
Malcolm Tredinnick
2007-07-13
1
-1
/
+1
*
Changed ETag computation to first check if an ETag header already exists in the
Malcolm Tredinnick
2007-06-17
1
-2
/
+6
*
Fixed #3206 -- Fixed typo in [5407]. This time with bonus testing. Thanks,
Malcolm Tredinnick
2007-06-02
1
-1
/
+1
*
Fixed #3206 -- Changed ETag comparison to only return 304 when the normal
Malcolm Tredinnick
2007-06-01
1
-1
/
+1
*
Fixed #4040 -- Changed uses of has_key() to "in". Slight performance
Malcolm Tredinnick
2007-04-26
1
-1
/
+1
*
Added client IP address to the e-mail that is sent when an internal
Luke Plant
2007-04-20
1
-1
/
+3
*
Fixed #3808 -- Fixed some typos in comments. Thanks, Collin Grady
Adrian Holovaty
2007-03-25
1
-1
/
+1
*
Fixed #3052: GZIP middleware now correctly reports Content-Length. Thanks, s...
Jacob Kaplan-Moss
2006-11-22
1
-0
/
+1
*
Improved detection of whether a URL is internal or not for the purpose
Luke Plant
2006-09-26
1
-1
/
+7
*
Altered [3778] change to match our coding/text style (django.middleware.common)
Adrian Holovaty
2006-09-25
1
-2
/
+2
*
Fixed #2747 -- Make X-Headers work for staff members. Admins with dyanmic IP
Malcolm Tredinnick
2006-09-22
1
-4
/
+5
*
Fixed #2602 -- Include User Agent in broken link emails. Thanks, Ian Holsman.
Malcolm Tredinnick
2006-09-22
1
-1
/
+2
*
Fixed #2541 -- Added helpful error message for CacheMiddleware in the case of...
Adrian Holovaty
2006-08-18
1
-0
/
+3
[next]