summaryrefslogtreecommitdiff
path: root/django/urls
Commit message (Expand)AuthorAgeFilesLines
* Fixed #34515 -- Made LocaleMiddleware prefer language from paths when i18n pa...Mariusz Felisiak2023-05-021-3/+2
* Fixed #34455 -- Restored i18n_patterns() respect of prefix_default_language a...sarahboyce2023-04-101-2/+3
* Refs #34233 -- Used @functools.cache.Nick Pope2023-01-183-5/+5
* Refs #34233 -- Used str.removeprefix()/removesuffix().Mariusz Felisiak2023-01-181-5/+3
* Used more augmented assignment statements.Nick Pope2022-10-311-1/+1
* Fixed CVE-2022-41323 -- Prevented locales being interpreted as regular expres...Adam Johnson2022-10-041-1/+1
* Fixed #33955, Fixed #33971 -- Reverted "Fixed #32565 -- Moved internal URLRes...Mariusz Felisiak2022-09-011-0/+25
* Fixed #32565 -- Moved internal URLResolver view-strings mapping to admindocs.Alokik Vijay2022-05-171-25/+0
* Fixed #16406 -- Added ResolveMatch.captured_kwargs and extra_kwargs.Alokik Vijay2022-03-291-6/+32
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-071-2/+4
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-076-162/+279
* Fixed #33426 -- Fixed ResolverMatch.__repr_() for class-based views.Keryn Knight2022-01-101-0/+2
* Fixed #33351 -- Made path()/re_path() raise TypeError when kwargs argument is...mendespedro2021-12-131-0/+4
* Fixed #30530, CVE-2021-44420 -- Fixed potential bypass of an upstream access ...Florian Apolloner2021-12-071-2/+6
* Fixed #23895 -- Prevented pickling of ResolverMatch.Jonathan Davis2021-07-291-0/+4
* Fixed #32870 -- Improved error message when URLconf is empty.Igor Fernandes2021-06-221-3/+4
* Fixed #32195 -- Added system check for invalid view in path() and improved er...Angus Holder2021-06-092-0/+25
* Refs #32260 -- Made admindocs and technical 404 debug page use view_func.view...Adam Johnson2021-03-301-1/+3
* Fixed #32572 -- Improved ResolverMatch.__repr__().Nick Pope2021-03-291-3/+10
* Fixed #32345 -- Fixed preserving encoded query strings in set_language() view.Sandro Covo2021-01-291-2/+3
* Refs #31791 -- Improved performance of URLResolver.resolve().David Smith2021-01-111-1/+1
* Fixed #32124 -- Added per-view opt-out for APPEND_SLASH behavior.Carlton Gibson2020-10-221-5/+4
* Removed unneeded iri_to_uri() call in reverse().Florian Apolloner2020-10-061-2/+1
* Fixed #31791 -- Made technical 404 debug page display the tried URL patterns ...Jon Dufresne2020-09-071-7/+13
* Fixed #31858 -- Reallowed whitespaces in URL paths outside of parameters.Tim Park2020-09-021-2/+5
* Removed unused param_dict return from URLResolver.resolve_error_handler().Adam Johnson2020-06-221-2/+2
* Refs #30116 -- Simplified regex match group access with Match.__getitem__().Jon Dufresne2020-05-111-2/+2
* Removed unnecessary tuple wrapping of single format string argument.François Freitag2020-04-271-1/+1
* Fixed #31459 -- Fixed handling invalid indentifiers in URL path conversion.Adam Johnson2020-04-151-1/+1
* Fixed #31166 -- Used "raise from" when raising ImproperlyConfigured exception...Ram Rachum2020-01-171-5/+6
* Fixed #30995 -- Allowed converter.to_url() to raise ValueError to indicate no...Jack Cushman2020-01-091-1/+8
* Fixed #31061 -- Ignored positional args in django.urls.resolve() when all opt...Mariusz Felisiak2019-12-061-1/+2
* Fixed #30899 -- Lazily compiled import time regular expressions.Hasan Ramezani2019-10-291-2/+2
* Fixed #29667 -- Prohibited whitespaces in path() URLs.Hasan Ramezani2019-08-201-0/+3
* Fixed #29744 -- Fixed caching of URLResolver for a default URLconf.Benjamin Woodruff2019-07-032-3/+7
* Fixed #26431 -- Prevented django.urls.resolve() from returning missing option...daniel a rios2019-06-241-1/+1
* Fixed #30451 -- Added ASGI handler and coroutine-safety.Andrew Godwin2019-06-202-5/+7
* Simplified django.urls.reverse() a bit.Sergey Fedoseev2019-06-121-6/+2
* Fixed #30318 -- Added check for importability of arguments of custom error ha...Alasdair Nicol2019-04-251-2/+10
* Removed django.utils.lru_cache usage.Tim Graham2019-02-041-3/+2
* Fixed #28766 -- Added ResolverMatch.route.Benjamin Wohlwend2018-12-061-4/+16
* Fixed #29775 -- Fixed URL converters in a nested namespaced path.Eric Brandwein2018-10-041-0/+2
* Fixed #29642 -- Added check for arguments of custom error handler views.Adam Johnson2018-09-141-4/+28
* Fixed CVE-2018-14574 -- Fixed open redirect possibility in CommonMiddleware.Andreas Hug2018-08-011-4/+2
* Fixed #29415 -- Fixed detection of custom URL converters in included patterns.Xaroth Brook2018-05-262-4/+8
* Fixed #28982 -- Simplified code with and/or.Дилян Палаузов2018-01-031-3/+1
* Fixed #28930 -- Simplified code with any() and all().Дилян Палаузов2017-12-261-6/+1
* Fixed #28947 -- Fixed crash when coercing a translatable URL pattern to str.Tilmann Becker2017-12-201-2/+2
* Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope2017-12-111-3/+3
* Fixed #28860 -- Removed unnecessary len() calls.Дилян Палаузов2017-12-041-1/+1