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