summaryrefslogtreecommitdiff
path: root/django/core/handlers/base.py
AgeCommit message (Expand)Author
2012-12-22[1.5.x] Fixed #19468 -- Decoded request.path correctly on Python 3.Aymeric Augustin
2012-09-29Merge branch 'ticket15695'Florian Apolloner
2012-09-27Fixed #15695 -- Added `ResolverMatch` to the request object.Florian Apolloner
2012-09-20Imported getLogger directly from logging moduleClaude Paroz
2012-08-15[py3] Fixed middleware_exceptions tests.Aymeric Augustin
2012-08-15Sent got_request_exception signal before handle_uncaught_exceptionClaude Paroz
2012-08-11[py3] Fixed reraising of exceptionsClaude Paroz
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-07-22[py3] Used six.reraise wherever necessary.Aymeric Augustin
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-02-09Fixed #17358 -- Updated logging calls to use official syntax for arguments in...Jannis Leidel
2011-10-22Fixed #16360 -- Added WSGI entrypoint to startproject layout, and enabled int...Carl Meyer
2011-09-10Kill some more dead code.Alex Gaynor
2011-09-10Fixed #16810, corrected a bad docstring. Thanks to kenkam for the patch.Alex Gaynor
2011-08-12Fixed #9847 -- Added 403 response handler. Many thanks to kgrandis, adamnelso...Jannis Leidel
2011-07-04Fixed #16399 -- Minor cleanup in core handler. Thanks, aaugustin.Jannis Leidel
2011-06-22Fixed #16288 -- Enabled django.request exception logger regardless of DEBUG s...Carl Meyer
2011-06-08Fixed #14614 - filtering of sensitive information in 500 error reports.Luke Plant
2011-05-24Fixed #16004 - csrf_protect does not send cookie if view returns TemplateResp...Luke Plant
2011-01-16Fixed #15083 -- Corrected the order of TemplateResponse middleware handling, ...Russell Keith-Magee
2010-12-07Fixed #12815 -- Added TemplateResponse, a lazy-evaluated Response class. Than...Russell Keith-Magee
2010-11-07Fixed #13684 -- if settings.ROOT_URLCONF isn't defined don't blow up with an ...Alex Gaynor
2010-10-30Fixed #14588 -- Corrected r14393 to ensure that response middlewares are are ...Russell Keith-Magee
2010-10-29Fixed #14523 -- Modified response handling so that exceptions raised by proce...Russell Keith-Magee
2010-10-09Fixed #11509 -- Modified usage of "Web" to match our style guide in various d...Russell Keith-Magee
2010-10-06Fixed #14406 -- Added a Python 2.4 compatibility to the logging interface. Th...Russell Keith-Magee
2010-10-04Fixed #12012 -- Added support for logging. Thanks to Vinay Sajip for his draf...Russell Keith-Magee
2010-06-03Fixed #10758 - sys.exc_info() should not be stored on a local variableLuke Plant
2010-03-26Fixed #12594 -- Ensured that a meaningful exception is raised when the urlcon...Russell Keith-Magee
2010-03-12Fixed #13090 -- Corrected handling of errors in middleware when DEBUG=False. ...Russell Keith-Magee
2010-01-10Fixed #6094 again -- fixed broken unit tests. Thanks, isagalaevAdrian Holovaty
2010-01-10Changed a whole bunch of places to raise exception instances instead of old-s...Adrian Holovaty
2010-01-10Fixed #6094 -- Middleware exceptions are now caught by the core handler. Than...Adrian Holovaty
2009-11-16Fixed #5034 -- honor request.urlconf in reverse and resolve.Brian Rosner
2009-04-01Reverted [10346] because it effectively breaks USE_I18N by forcing import of ...Jacob Kaplan-Moss
2009-04-01Fixed #9847: mark the permission denied message for translation.Jacob Kaplan-Moss
2009-03-18Fixed #8193: all dynamic imports in Django are now done correctly. I know thi...Jacob Kaplan-Moss
2009-03-12Fixed a problem from r10036. Fixed #10470.Malcolm Tredinnick
2009-03-12Fixed #10470 -- Fixed a race condition in middleware initialization.Malcolm 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-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