index
:
django.git
fix-31295
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
middleware
/
cache.py
Age
Commit message (
Expand
)
Author
2015-05-13
Removed unnecessary arguments in .get method calls
Piotr Jakimiak
2015-02-06
Sorted imports with isort; refs #23860.
Tim Graham
2015-02-01
Removed UpdateCacheMiddleware._session_accessed()
Tim Graham
2014-04-21
Prevented leaking the CSRF token through caching.
Aymeric Augustin
2014-03-30
Corrected many style guide violations that the newest version of flake8 catches
Alex Gaynor
2014-03-21
Removed settings.CACHE_MIDDLEWARE_ANONYMOUS_ONLY per deprecation timeline.
Tim Graham
2014-03-08
Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warnings
Claude Paroz
2013-11-23
Fixed #21012 -- New API to access cache backends.
Curtis Maloney
2013-11-02
Fixed all E261 warnings
coagulant
2013-11-02
More attacking E302 violators
Alex Gaynor
2013-10-10
Used "is" for comparisons with None.
Tim Graham
2013-06-29
Advanced deprecation warnings for Django 1.7.
Aymeric Augustin
2013-05-18
Fixed #15201: Marked CACHE_MIDDLEWARE_ANONYMOUS_ONLY as deprecated
Łukasz Langa
2012-12-24
Prevented caching of streaming responses.
Aymeric Augustin
2012-12-01
Fixed #19347 -- Removed unused variable definition in FetchFromCacheMiddleware
Claude Paroz
2011-03-02
Fixed #4992 -- Respect the GET request query string when creating cache keys....
Jannis Leidel
2011-02-17
Fixed #15260 -- Ensured that CACHE_MIDDLEWARE_ANONYMOUS_ONLY is effective wit...
Carl Meyer
2011-02-01
Fixed #13283 -- Corrected CACHE_MIDDLEWARE_ANONYMOUS_ONLY's bad habit of sett...
Carl Meyer
2011-01-24
Fixed #15012 -- Added post-rendering callbacks to TemplateResponse so that de...
Russell Keith-Magee
2011-01-24
Fixed #15144 -- Corrected some problems with the Cache middleware when used w...
Russell Keith-Magee
2010-12-22
Beefed up the tests for multi-cache handling of the cache middleware and view...
Russell Keith-Magee
2010-12-21
Fixed #11675 -- Added support for the PyLibMC cache library. In order to supp...
Russell Keith-Magee
2010-10-29
Fixed #14560 -- Enable HEAD requests to be cached properly. Thanks, codemonkey!
Honza Král
2008-09-30
Fixed #9221 -- Small optimisation to caching middleware handling.
Malcolm Tredinnick
2008-08-15
Fixed a typo and added a bit more ReST markup to cache middleware docstring.
Gary Wilson Jr
2008-08-09
Split CacheMiddleware up into two parts -- an update-cache and a fetch-from-c...
Jacob Kaplan-Moss
2007-11-29
Fixed #5813 -- Taught the CacheMiddleware to respect any max-age HTTP header
Malcolm Tredinnick
2007-03-25
Fixed #3808 -- Fixed some typos in comments. Thanks, Collin Grady
Adrian Holovaty
2006-08-18
Fixed #2541 -- Added helpful error message for CacheMiddleware in the case of...
Adrian Holovaty
2006-07-21
Second half of little cleanup tweaks suggested by pyflakes.
Jacob Kaplan-Moss
2006-07-21
Fixed #2392 -- Fixed CACHE_MIDDLEWARE_ANONYMOUS_ONLY to use attribute access ...
Adrian Holovaty
2006-07-20
Small style fixes to docs from [3395]
Adrian Holovaty
2006-07-20
Oops, fixed small typo in [3395]
Jacob Kaplan-Moss
2006-07-20
Added a CACHE_MIDDLEWARE_ANONYMOUS_ONLY setting which makes the cache ignore ...
Jacob Kaplan-Moss
2006-06-20
Converted request.META['REQUEST_METHOD'] calls to request.method, throughout ...
Adrian Holovaty
2006-06-08
Fixed #2109 -- Convert old-style classes to new-style classes throughout Djan...
Adrian Holovaty
2006-05-02
MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly backwards-incompa...
Adrian Holovaty
2005-10-19
Fixed #647 -- Fixed cache middleware not to expect _cache_update_cache, in ca...
Adrian Holovaty
2005-10-10
Fixed #599 -- locmem cache now uses deepcopy() to prevent aliasing. Thanks, Hugo
Adrian Holovaty
2005-10-09
Fixed #580 -- Added mega support for generating Vary headers, including some ...
Adrian Holovaty
2005-10-06
Fixed #333 and #440 -- Split DEFAULT_MIME_TYPE setting into DEFAULT_CONTENT_T...
Adrian Holovaty
2005-07-18
Added django.middleware.cache, which lets you cache an entire Django-powered ...
Adrian Holovaty