summaryrefslogtreecommitdiff
path: root/django/middleware/common.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #6228: Changed common middleware to respect request-specific urlconf. T...Karen Tracey2010-03-071-4/+5
* Removed an 'assert False' I stupidly committed in [12165]Adrian Holovaty2010-01-101-2/+0
* Fixed #6094 -- Middleware exceptions are now caught by the core handler. Than...Adrian Holovaty2010-01-101-0/+2
* Fixed #9199 -- We were erroneously only prepending "www" to the domain if weMalcolm Tredinnick2008-10-071-23/+35
* Fixed #7379: fixed a subtle corner case involving URL encoding in `CommonMidd...Jacob Kaplan-Moss2008-08-271-1/+1
* Fixed #8381 -- Fixed a problem with appending slashes in the common middlewareMalcolm Tredinnick2008-08-211-2/+2
* Fixed #7919 -- md5 and sha modules are deprecated since Python 2.5, use hashl...Gary Wilson Jr2008-08-021-3/+3
* Fixed #7228 -- Fixed our ETag header creation to meet the HTTP spec, by quoti...Adrian Holovaty2008-06-161-1/+1
* Fixed #3228 -- Added new APPEND_SLASH handling behaviour in the common middle...Malcolm Tredinnick2007-12-021-15/+43
* Fixed #5762 -- Quoted the portions that make up the URL when appendingMalcolm Tredinnick2007-10-201-4/+6
* Added a get_host() method to HttpRequest. There is still an http.get_host() v...Malcolm Tredinnick2007-09-151-2/+2
* Fixed #4994 -- Send back set-cookie headers in "not modified" responses. Well...Malcolm Tredinnick2007-08-121-0/+2
* Fixed #4484 -- Fixed APPEND_SLASH handling to handle an empty path value.Malcolm Tredinnick2007-07-131-1/+1
* Changed ETag computation to first check if an ETag header already exists in theMalcolm Tredinnick2007-06-171-2/+6
* Fixed #3206 -- Fixed typo in [5407]. This time with bonus testing. Thanks,Malcolm Tredinnick2007-06-021-1/+1
* Fixed #3206 -- Changed ETag comparison to only return 304 when the normalMalcolm Tredinnick2007-06-011-1/+1
* Fixed #4040 -- Changed uses of has_key() to "in". Slight performanceMalcolm Tredinnick2007-04-261-1/+1
* Added client IP address to the e-mail that is sent when an internalLuke Plant2007-04-201-1/+3
* Improved detection of whether a URL is internal or not for the purposeLuke Plant2006-09-261-1/+7
* Altered [3778] change to match our coding/text style (django.middleware.common)Adrian Holovaty2006-09-251-2/+2
* Fixed #2602 -- Include User Agent in broken link emails. Thanks, Ian Holsman.Malcolm Tredinnick2006-09-221-1/+2
* Fixed #2092: added a "is_secure()" method to HttpRequest which correctly hand...Jacob Kaplan-Moss2006-07-211-2/+2
* Converted request.META['REQUEST_METHOD'] calls to request.method, throughout ...Adrian Holovaty2006-06-201-1/+1
* Fixed #2109 -- Convert old-style classes to new-style classes throughout Djan...Adrian Holovaty2006-06-081-1/+1
* Solved the POST-data-lost-after-redirect problem by raising RuntimeError when...Adrian Holovaty2006-06-081-0/+2
* MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly backwards-incompa...Adrian Holovaty2006-05-021-6/+7
* Fixed #1569 -- HttpResponse now accepts iterators. Thanks, ManiacAdrian Holovaty2006-04-091-1/+1
* Fixed #1117 -- Added HttpResponsePermanentRedirectAdrian Holovaty2006-01-031-1/+1
* Changed CommonMiddleware so it doesn't assume HTTP_HOST is set.Adrian Holovaty2005-12-051-3/+6
* BACKWARDS-INCOMPATIBLE CHANGE -- Moved flatpages and redirects to standalone ...Adrian Holovaty2005-11-111-11/+0
* Tiny docstring cleanup in middleware/common.pyAdrian Holovaty2005-11-061-5/+4
* Fixed #333 and #440 -- Split DEFAULT_MIME_TYPE setting into DEFAULT_CONTENT_T...Adrian Holovaty2005-10-061-1/+1
* Added USE_FLAT_PAGES setting, which defaults to True.Adrian Holovaty2005-10-051-18/+16
* Fixed #394 -- Trailing-slash redirects now retain duplicate name-value query-...Adrian Holovaty2005-09-021-2/+1
* Changed SessionMiddleware to use process_request instead of process_view -- t...Adrian Holovaty2005-08-221-3/+0
* Removed special-case test for '_files' URL in common middleware -- thanks, Je...Adrian Holovaty2005-08-161-3/+0
* Imported Django from private SVN repository (created from r. 8825)Adrian Holovaty2005-07-131-0/+104