summaryrefslogtreecommitdiff
path: root/django/middleware/cache.py
Commit message (Expand)AuthorAgeFilesLines
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-13/+27
* Fixed #33252 -- Made cache middlewares thread-safe.Iuri de Silvio2021-11-031-3/+8
* Refs #26601 -- Made get_response argument required and don't accept None in m...Mariusz Felisiak2021-01-141-9/+3
* Fixed #31928 -- Fixed detecting an async get_response in various middlewares.Kevin Michel2020-08-281-15/+10
* Refs #26601 -- Deprecated passing None as get_response arg to middleware clas...Claude Paroz2020-02-181-0/+9
* Fixed #30765 -- Made cache_page decorator take precedence over max-age Cache-...Flavio Curella2020-01-161-9/+14
* Fixed #28833 -- Prevented CacheMiddleware from caching responses with "Cache-...shanghui2018-02-061-0/+4
* Refs #27656 -- Updated remaining docstring verbs according to PEP 257.Anton Samarchyan2017-03-041-2/+2
* Fixed #27211 -- Made UpdateCacheMiddleware include caching headers for "304 N...Rinat Khabibiev2016-09-141-2/+2
* Fixed #26601 -- Improved middleware per DEP 0005.Florian Apolloner2016-05-171-10/+14
* Removed unnecessary arguments in .get method callsPiotr Jakimiak2015-05-131-2/+2
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-3/+5
* Removed UpdateCacheMiddleware._session_accessed()Tim Graham2015-02-011-6/+0
* Prevented leaking the CSRF token through caching.Aymeric Augustin2014-04-211-1/+9
* Corrected many style guide violations that the newest version of flake8 catchesAlex Gaynor2014-03-301-1/+1
* Removed settings.CACHE_MIDDLEWARE_ANONYMOUS_ONLY per deprecation timeline.Tim Graham2014-03-211-25/+2
* Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warningsClaude Paroz2014-03-081-1/+2
* Fixed #21012 -- New API to access cache backends.Curtis Maloney2013-11-231-28/+20
* Fixed all E261 warningscoagulant2013-11-021-3/+3
* More attacking E302 violatorsAlex Gaynor2013-11-021-0/+2
* Used "is" for comparisons with None.Tim Graham2013-10-101-1/+1
* Advanced deprecation warnings for Django 1.7.Aymeric Augustin2013-06-291-1/+1
* Fixed #15201: Marked CACHE_MIDDLEWARE_ANONYMOUS_ONLY as deprecatedŁukasz Langa2013-05-181-5/+6
* Prevented caching of streaming responses.Aymeric Augustin2012-12-241-1/+1
* Fixed #19347 -- Removed unused variable definition in FetchFromCacheMiddlewareClaude Paroz2012-12-011-1/+0
* Fixed #4992 -- Respect the GET request query string when creating cache keys....Jannis Leidel2011-03-021-2/+2
* Fixed #15260 -- Ensured that CACHE_MIDDLEWARE_ANONYMOUS_ONLY is effective wit...Carl Meyer2011-02-171-2/+11
* Fixed #13283 -- Corrected CACHE_MIDDLEWARE_ANONYMOUS_ONLY's bad habit of sett...Carl Meyer2011-02-011-9/+12
* Fixed #15012 -- Added post-rendering callbacks to TemplateResponse so that de...Russell Keith-Magee2011-01-241-1/+7
* Fixed #15144 -- Corrected some problems with the Cache middleware when used w...Russell Keith-Magee2011-01-241-8/+12
* Beefed up the tests for multi-cache handling of the cache middleware and view...Russell Keith-Magee2010-12-221-18/+21
* Fixed #11675 -- Added support for the PyLibMC cache library. In order to supp...Russell Keith-Magee2010-12-211-8/+29
* Fixed #14560 -- Enable HEAD requests to be cached properly. Thanks, codemonkey!Honza Král2010-10-291-9/+12
* Fixed #9221 -- Small optimisation to caching middleware handling.Malcolm Tredinnick2008-09-301-2/+3
* Fixed a typo and added a bit more ReST markup to cache middleware docstring.Gary Wilson Jr2008-08-151-10/+10
* Split CacheMiddleware up into two parts -- an update-cache and a fetch-from-c...Jacob Kaplan-Moss2008-08-091-57/+115
* Fixed #5813 -- Taught the CacheMiddleware to respect any max-age HTTP headerMalcolm Tredinnick2007-11-291-5/+18
* Fixed #3808 -- Fixed some typos in comments. Thanks, Collin GradyAdrian Holovaty2007-03-251-1/+1
* Fixed #2541 -- Added helpful error message for CacheMiddleware in the case of...Adrian Holovaty2006-08-181-0/+3
* Second half of little cleanup tweaks suggested by pyflakes.Jacob Kaplan-Moss2006-07-211-1/+0
* Fixed #2392 -- Fixed CACHE_MIDDLEWARE_ANONYMOUS_ONLY to use attribute access ...Adrian Holovaty2006-07-211-1/+1
* Small style fixes to docs from [3395]Adrian Holovaty2006-07-201-1/+1
* Oops, fixed small typo in [3395]Jacob Kaplan-Moss2006-07-201-1/+1
* Added a CACHE_MIDDLEWARE_ANONYMOUS_ONLY setting which makes the cache ignore ...Jacob Kaplan-Moss2006-07-201-1/+14
* Converted request.META['REQUEST_METHOD'] calls to request.method, throughout ...Adrian Holovaty2006-06-201-2/+2
* Fixed #2109 -- Convert old-style classes to new-style classes throughout Djan...Adrian Holovaty2006-06-081-1/+1
* MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly backwards-incompa...Adrian Holovaty2006-05-021-1/+1
* Fixed #647 -- Fixed cache middleware not to expect _cache_update_cache, in ca...Adrian Holovaty2005-10-191-1/+1
* Fixed #599 -- locmem cache now uses deepcopy() to prevent aliasing. Thanks, HugoAdrian Holovaty2005-10-101-2/+1
* Fixed #580 -- Added mega support for generating Vary headers, including some ...Adrian Holovaty2005-10-091-67/+49