summaryrefslogtreecommitdiff
path: root/django/core/handlers
AgeCommit message (Expand)Author
2018-11-20Refs #24829 -- Removed TemplateResponse rendering in BaseHandler.get_response().Tim Graham
2018-11-20Corrected docs and removed unused code for got_request_exception signal's sen...Tim Graham
2018-11-20Removed BaseHandler.get_exception_response().Tim Graham
2018-09-28Refs #28909 -- Simplifed code using unpacking generalizations.Sergey Fedoseev
2018-09-26Fixed #29673 -- Reset the URLconf at the end of each request.Matthew Power
2018-09-26Refs #29784 -- Switched to https:// links where available.Jon Dufresne
2018-06-07Removed unused HttpRequest._post_parse_error attribute.Josh Schneier
2018-05-27Removed obsolete BaseHandler attributes.Daniel Hepper
2018-05-04Fixed #26688 -- Fixed HTTP request logging inconsistencies.Samir Shah
2018-02-02Fixed imports per isort 4.3.1.Tim Graham
2018-02-01Fixed imports per isort 4.3.0.Mariusz Felisiak
2018-01-03Fixed #28982 -- Simplified code with and/or.Дилян Палаузов
2017-12-11Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope
2017-11-07Fixed #28769 -- Replaced 'x if x else y' with 'x or y'.Дилян Палаузов
2017-09-07Removed unneeded __init__() methods.Sergey Fedoseev
2017-04-27Refs #27795 -- Replaced many force_text() with str()Claude Paroz
2017-03-04Refs #27795 -- Removed unneeded force_text callsClaude Paroz
2017-02-27Imported django.http classes instead of django.http.Asif Saifuddin Auvi
2017-02-21Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan
2017-02-13Fixed #27820 -- Fixed RequestDataTooBig/TooManyFieldsSent crash.amalia
2017-02-09Refs #23919 -- Removed default 'utf-8' argument for str.encode()/decode().Tim Graham
2017-01-26Refs #23919, #27778 -- Removed obsolete mentions of unicode.Vytis Banaitis
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-21Refs #23919 -- Removed django.utils.decorators.available_attrs() usage.Tim Graham
2017-01-20Refs #23919 -- Removed unneeded str() callsClaude Paroz
2017-01-20Refs #23919 -- Removed unneeded force_str callsClaude Paroz
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
2017-01-18Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2017-01-17Refs #26601 -- Removed support for old-style middleware using settings.MIDDLE...Tim Graham
2017-01-17Refs #24733 -- Removed support for error views without the exception parameter.Tim Graham
2016-08-25Replaced property() usage with decorator in several places.Berker Peksag
2016-08-24Removed a blank line per isort.Tim Graham
2016-08-23Fixed #26971 -- Prevented crash with non-UTF-8 incoming PATH_INFOClaude Paroz
2016-07-25Fixed #26915 -- Fixed regression handling responses returned from view middle...Alex Hill
2016-06-24Refs #12594 -- Removed obsolete exception handling in handle_uncaught_excepti...Tim Graham
2016-06-24Refs #24829 -- Made TemplateResponse.content available sooner in exception co...Claude Paroz
2016-06-17Refs #26601 -- Improved backwards-compatibility of DEP 5 middleware exception...Carl Meyer
2016-05-17Refs #26601 -- Deprecated old-style middleware.Tim Graham
2016-05-17Fixed #26601 -- Improved middleware per DEP 0005.Florian Apolloner
2016-05-17Refs #26601 -- Refactored BaseHandler to prepare for new-style middleware.Florian Apolloner
2016-04-29Fixed #26546 -- Allowed HTTPStatus enum values for HttpResponse.status.David Evans
2016-04-25Fixed #26052 -- Moved conditional_content_removal() processing to the test cl...Tim Graham
2016-04-20Fixed #26504 -- Avoided logging "Not Found" warnings if a middleware handles ...Carl Worth
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2016-04-04Fixed W503 flake8 warnings.Tim Graham
2016-04-04Fixed #26452 -- Loaded middleware on server start rather than on first request.David Evans
2016-02-10Fixed #26014 -- Added WSGIRequest content_type and content_params attributes.Curtis Maloney
2015-12-31Fixed #26013 -- Moved django.core.urlresolvers to django.urls.Marten Kenbeek