summaryrefslogtreecommitdiff
path: root/django/middleware/cache.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fixed #333 and #440 -- Split DEFAULT_MIME_TYPE setting into DEFAULT_CONTENT_T...Adrian Holovaty2005-10-061-1/+1
* Added django.middleware.cache, which lets you cache an entire Django-powered ...Adrian Holovaty2005-07-181-0/+88