summaryrefslogtreecommitdiff
path: root/django/core/handlers/base.py
AgeCommit message (Expand)Author
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-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-05-16Added DEBUG_PROPAGATE_EXCEPTIONS setting that helps testing under e.g. twillLuke Plant
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-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-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
2006-12-26Fixed #3187 -- Django will now look for the root URLconf as an attribute of t...Jacob Kaplan-Moss
2006-11-28Fixed small bug in 'The view ____ didn't return an HttpResponse object' messa...Adrian Holovaty
2006-10-30Fixed #2968 -- Changed arguments to __import__ to use empty dictionary instea...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
2006-09-28Changed BaseHandler.get_response() to take a single parameter (an HttpRequest...Adrian Holovaty
2006-07-21Fixed a bunch of spurious imports, typos, and other small errors turned up by...Jacob Kaplan-Moss
2006-06-08Fixed #2109 -- Convert old-style classes to new-style classes throughout Djan...Adrian Holovaty
2006-05-26Fixed #1023 -- Base handler no longer calls mail_admins() on SystemExit, in c...Adrian Holovaty
2006-05-02MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly backwards-incompa...Adrian Holovaty
2006-04-11Removed unneeded 'import sys' from base.py handlerAdrian Holovaty
2006-04-11Fixed #1551 -- Improved base handler to not lose track of important exception...Adrian Holovaty
2006-02-20Fixed #1376 -- Undid [2358], which broke flatpages. Thanks, Tom TobinAdrian Holovaty
2006-02-18Fixed #894 -- Moved response middleware call to base.py so that exceptions in...Adrian Holovaty
2005-11-27Fixed #878 -- URLconf regex captures no longer have to be named groups. Old U...Adrian Holovaty
2005-11-22Fixed grammar error in error message from [1355]Adrian Holovaty
2005-11-22Fixed #879 -- Middleware loader now throws a better error for MIDDLEWARE_CLAS...Adrian Holovaty
2005-11-14Added "pretty" error pages to be used when DEBUG is True.Jacob Kaplan-Moss
2005-10-25Fixed #677 -- db.queries is now reset per request. Thanks, seancazzellAdrian Holovaty
2005-10-19Fixed #641 -- Fixed re-raise in django.core.handlers.base. Thanks, SuneAdrian Holovaty
2005-10-15Fixed #616 -- Added a process_exception() hook to middleware framework. Thank...Adrian Holovaty
2005-08-31Fixed #407 -- Code no longer assumes request.META['REMOTE_ADDR'] exists. Than...Adrian Holovaty
2005-08-25Changed 'coding error' and 'database error' e-mails to include request.path i...Adrian Holovaty
2005-08-18Tweaked [531] slightly, so that it checks for 'is None' instead of boolean 'not'Adrian Holovaty
2005-08-18Added friendly error message if a view returns None instead of an HttpRespons...Adrian Holovaty
2005-08-05Greatly improved the 404 error message when DEBUG=True. If none of the urlpat...Adrian Holovaty
2005-08-05Refactored the internals of URL parsing to use less codeAdrian Holovaty
2005-07-22Fixed #63 -- Refactored django.core.handlers into subclasses to remove duplic...Adrian Holovaty