summaryrefslogtreecommitdiff
path: root/django/core/handlers
AgeCommit message (Expand)Author
2020-12-29Fixed #32299 -- Prevented mutating handlers when processing middlewares marki...Mariusz Felisiak
2020-10-27Fixed #32128 -- Added asgiref 3.3 compatibility.Carlton Gibson
2020-09-09Fixed #31962 -- Made SessionMiddleware raise SessionInterrupted when session ...Hasan Ramezani
2020-06-22Removed unused param_dict return from URLResolver.resolve_error_handler().Adam Johnson
2020-05-28Refs #31040, Refs #31224 -- Prevented cycles in exceptions chain.Mariusz Felisiak
2020-05-13Updated logging calls to use arguments instead of string interpolation.François Freitag
2020-05-06Fixed #31515 -- Made ASGIHandler dispatch lifecycle signals with thread sensi...Carlton Gibson
2020-03-18Fixed #31224 -- Added support for asynchronous views and middleware.Andrew Godwin
2020-02-19Refs #31224 -- Added BaseHandler.check_response().Andrew Godwin
2020-02-11Fixed #31240 -- Properly closed FileResponse when wsgi.file_wrapper is used.Florian Apolloner
2019-10-29Fixed #30899 -- Lazily compiled import time regular expressions.Hasan Ramezani
2019-08-26Refs #23919 -- Replaced super(ASGIHandler, self) with super().Jon Dufresne
2019-07-31Refs #30669 -- Removed incorrect branch in ASGIHander.read_body().Carlton Gibson
2019-07-26Fixed #30567 -- Made WSGIHandler pass FileResponse.block_size to wsgi.file_wr...Piotr Domanski
2019-06-20Refs #30451 -- Added more tests for ASGIRequest and ASGIHandler.Mariusz Felisiak
2019-06-20Fixed #30451 -- Added ASGI handler and coroutine-safety.Andrew Godwin
2019-06-15Refs #30451 -- Added HttpRequest._set_content_type_params() hook.Mariusz Felisiak
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