summaryrefslogtreecommitdiff
path: root/django/urls
Commit message (Expand)AuthorAgeFilesLines
* [3.2.x] Fixed #32345 -- Fixed preserving encoded query strings in set_languag...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
* Refs #28593 -- Updated old class names in comments following URL routing chan...Andrei Fokau2017-11-081-1/+1
* Fixed #28663 -- Add a check for likely incorrectly migrated django.urls.path(...Chris Lamb2017-11-071-1/+10
* Removed redundant inner imports.Mariusz Felisiak2017-10-201-1/+0
* Refs #27025, #28593 -- Fixed "invalid escape sequence" warnings in urls/resol...Jon Dufresne2017-09-301-2/+2
* Fixed #27857 -- Dropped support for Python 3.4.Tim Graham2017-09-252-7/+2
* Merged startswith() calls.Mariusz Felisiak2017-09-251-1/+1
* Refs #28593 -- Made URLResolver._populate() more resilient to signal interrupts.Daniel Tao2017-09-221-5/+5
* Fixed #28593 -- Added a simplified URL routing syntax per DEP 0201.Sjoerd Job Postmus2017-09-204-164/+372
* Refs #28593 -- Moved django.conf.urls.include() to django.urls().Tim Graham2017-09-132-2/+53
* Reverted "Fixed #27818 -- Replaced try/except/pass with contextlib.suppress()."Tim Graham2017-09-071-3/+6
* Avoided creation of temporary sets.Sergey Fedoseev2017-07-291-1/+1
* Fixed #27818 -- Replaced try/except/pass with contextlib.suppress().Mads Jensen2017-06-281-6/+3
* Fixed #28249 -- Removed unnecessary dict.keys() calls.Jon Dufresne2017-05-271-2/+1
* Fixed #28226 -- Replaced use of str.join() with concatenation.Tom2017-05-271-2/+2
* Refs #27795 -- Replaced many force_text() with str()Claude Paroz2017-04-271-5/+4
* Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz2017-02-071-1/+1
* Refs #23919 -- Replaced usage of django.utils.http utilities with Python equi...Claude Paroz2017-01-261-2/+3
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-3/+1
* Assumed iri_to_uri always returns a stringClaude Paroz2017-01-231-2/+2