summaryrefslogtreecommitdiff
path: root/django/core/handlers
AgeCommit message (Expand)Author
2008-09-17Fixed #9014 -- Check that we really are processing a POST before processingMalcolm Tredinnick
2008-08-30Fixed #8622: accessing POST after a POST handling exception no longer throws ...Jacob Kaplan-Moss
2008-08-26Fixed #8490 -- Worked around a bug in flup 1.0.1 when working out the correctMalcolm Tredinnick
2008-08-23Fixed #8259 -- Handle an error situation that we should never see, but stillMalcolm Tredinnick
2008-08-22Fixed #8136: Added a signal emission when an error is raised handling an erro...Russell Keith-Magee
2008-08-06Major refactoring of django.dispatch with an eye towards speed. The net resul...Jacob Kaplan-Moss
2008-07-21Fixed #7871 -- Added some more bullet-proofing in PATH_INFO determination,Malcolm Tredinnick
2008-07-21Changed/fixed the way Django handles SCRIPT_NAME and PATH_INFO (orMalcolm Tredinnick
2008-07-19Revert [7991] - [7993]. I was committing from the wrong branch. Sorry 'boutMalcolm Tredinnick
2008-07-19Allow avoidance of the Apache mod_rewrite undo.Malcolm Tredinnick
2008-07-19First part of setting request.path correctly.Malcolm Tredinnick
2008-07-19Fixed #7471 -- If the 400 response handler raises an exception, pass control toMalcolm Tredinnick
2008-07-15Refactored the HTTP 500 error response creation slightly. Provides the abilityMalcolm Tredinnick
2008-07-07Fixed #4148 -- Changed the way attachments are served to IE to avoid someMalcolm Tredinnick
2008-07-01Fixed #2070: refactored Django's file upload capabilities.Jacob Kaplan-Moss
2008-05-16Added DEBUG_PROPAGATE_EXCEPTIONS setting that helps testing under e.g. twillLuke Plant
2008-03-08Fixed #5595 -- Made `ModPythonRequest.__repr__` return a string instead of a ...Gary Wilson Jr
2008-02-28Fixed #4701 -- sys.exit() will no longer get swallowed by the http handler. S...Jacob Kaplan-Moss
2008-02-03Fixed #6305 -- Always emit the got_request_exception signal, even whenMalcolm Tredinnick
2007-12-02Re-organized imports in handler modules to adhere to Django coding style.Gary Wilson Jr
2007-11-11Fixed #5898 -- Changed a few response processing paths to make things harder ...Malcolm Tredinnick
2007-10-21Fixed #3496 -- Handle the case of missing (and hence '0') Content-Length headerMalcolm Tredinnick
2007-10-20Slightly changed the way we handle non-UTF-8 encoded URIs (see [6475]). Made itMalcolm Tredinnick
2007-10-13Fixed #5738 -- Fixed bug with defective Unicode strings in a URLAdrian Holovaty
2007-09-27Re-organized imports to adhere to PEP 8.Gary Wilson Jr
2007-09-27Removed unused import, unneeded due to [4144].Gary Wilson Jr
2007-09-27Fixed #5604 -- Check for use of HTTPS by looking at the `wsgi.url_scheme` env...Gary Wilson Jr
2007-09-16Fixed #4710 -- Improved mod_python HTTPS checking. Thanks, Aaron Maxwell, Smi...Malcolm Tredinnick
2007-09-15Added a get_host() method to HttpRequest. There is still an http.get_host() v...Malcolm Tredinnick
2007-09-15Fixed #5109 -- Pass the request object to any exception signal handler. Thank...Malcolm Tredinnick
2007-09-14Added more dict-like methods to HttpResponse as part of the response.headers ...Jacob Kaplan-Moss
2007-09-14Fixed the breakage in [6164] in a different, better way: HttpResponse now imp...Jacob Kaplan-Moss
2007-09-14Case-insensitive HttpResponse headers ([6212]) broke absolute URL redirects (...Jacob Kaplan-Moss
2007-09-14Fixed #987 -- Convert relative URI portions into absolute URIs in HTTP Locati...Malcolm Tredinnick
2007-08-12Fixed #4909 -- Fixed a race condition with middleware initialisation in multi...Malcolm Tredinnick
2007-07-07Changed HttpRequest.path to be a Unicode object. It has already beenMalcolm Tredinnick
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-04-26Fixed #4040 -- Changed uses of has_key() to "in". Slight performanceMalcolm Tredinnick
2006-12-26Fixed #3187 -- Django will now look for the root URLconf as an attribute of t...Jacob Kaplan-Moss
2006-11-29Fixed #2924 -- Development server no longer spins on an empty form post. Bug ...Adrian Holovaty
2006-11-28Fixed small bug in 'The view ____ didn't return an HttpResponse object' messa...Adrian Holovaty
2006-11-26Fixed #3057 -- Improved wsgi backend to tolerate empty string in CONTENT_LENG...Adrian Holovaty
2006-11-23Fixed #3057 -- Fixed typo in [4091]. Thanks for the heads-up, Barry PedersonAdrian Holovaty
2006-11-23Fixed #3057 -- Changed WSGI handler not to expect CONTENT_LENGTH. Thanks for ...Adrian Holovaty
2006-10-30Fixed #2968 -- Changed arguments to __import__ to use empty dictionary instea...Adrian Holovaty
2006-10-25Reverted [3919] because it requires mod_python 3.2.10+Adrian Holovaty
2006-10-24Fixed #2865 -- Reverted [3866] (problem with mod_python SERVER_PORTAdrian Holovaty
2006-10-24Changed django.core.handlers.modpython ModPythonRequest.is_secure() to use re...Adrian Holovaty
2006-09-28Folded BaseHandler.get_technical_error_response() into BaseHandler.get_respon...Adrian Holovaty
2006-09-28Folded BaseHandler.get_friendly_error_response() into BaseHandler.get_respons...Adrian Holovaty