summaryrefslogtreecommitdiff
path: root/django/urls/resolvers.py
AgeCommit message (Expand)Author
2021-01-11Refs #31791 -- Improved performance of URLResolver.resolve().David Smith
2020-09-07Fixed #31791 -- Made technical 404 debug page display the tried URL patterns ...Jon Dufresne
2020-09-02Fixed #31858 -- Reallowed whitespaces in URL paths outside of parameters.Tim Park
2020-06-22Removed unused param_dict return from URLResolver.resolve_error_handler().Adam Johnson
2020-05-11Refs #30116 -- Simplified regex match group access with Match.__getitem__().Jon Dufresne
2020-04-27Removed unnecessary tuple wrapping of single format string argument.François Freitag
2020-04-15Fixed #31459 -- Fixed handling invalid indentifiers in URL path conversion.Adam Johnson
2020-01-17Fixed #31166 -- Used "raise from" when raising ImproperlyConfigured exception...Ram Rachum
2020-01-09Fixed #30995 -- Allowed converter.to_url() to raise ValueError to indicate no...Jack Cushman
2019-12-06Fixed #31061 -- Ignored positional args in django.urls.resolve() when all opt...Mariusz Felisiak
2019-10-29Fixed #30899 -- Lazily compiled import time regular expressions.Hasan Ramezani
2019-08-20Fixed #29667 -- Prohibited whitespaces in path() URLs.Hasan Ramezani
2019-07-03Fixed #29744 -- Fixed caching of URLResolver for a default URLconf.Benjamin Woodruff
2019-06-24Fixed #26431 -- Prevented django.urls.resolve() from returning missing option...daniel a rios
2019-06-20Fixed #30451 -- Added ASGI handler and coroutine-safety.Andrew Godwin
2019-04-25Fixed #30318 -- Added check for importability of arguments of custom error ha...Alasdair Nicol
2018-12-06Fixed #28766 -- Added ResolverMatch.route.Benjamin Wohlwend
2018-10-04Fixed #29775 -- Fixed URL converters in a nested namespaced path.Eric Brandwein
2018-09-14Fixed #29642 -- Added check for arguments of custom error handler views.Adam Johnson
2018-08-01Fixed CVE-2018-14574 -- Fixed open redirect possibility in CommonMiddleware.Andreas Hug
2018-05-26Fixed #29415 -- Fixed detection of custom URL converters in included patterns.Xaroth Brook
2018-01-03Fixed #28982 -- Simplified code with and/or.Дилян Палаузов
2017-12-26Fixed #28930 -- Simplified code with any() and all().Дилян Палаузов
2017-12-20Fixed #28947 -- Fixed crash when coercing a translatable URL pattern to str.Tilmann Becker
2017-12-11Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope
2017-12-04Fixed #28860 -- Removed unnecessary len() calls.Дилян Палаузов
2017-11-08Refs #28593 -- Updated old class names in comments following URL routing chan...Andrei Fokau
2017-11-07Fixed #28663 -- Add a check for likely incorrectly migrated django.urls.path(...Chris Lamb
2017-10-20Removed redundant inner imports.Mariusz Felisiak
2017-09-30Refs #27025, #28593 -- Fixed "invalid escape sequence" warnings in urls/resol...Jon Dufresne
2017-09-25Fixed #27857 -- Dropped support for Python 3.4.Tim Graham
2017-09-25Merged startswith() calls.Mariusz Felisiak
2017-09-22Refs #28593 -- Made URLResolver._populate() more resilient to signal interrupts.Daniel Tao
2017-09-20Fixed #28593 -- Added a simplified URL routing syntax per DEP 0201.Sjoerd Job Postmus
2017-07-29Avoided creation of temporary sets.Sergey Fedoseev
2017-05-27Fixed #28249 -- Removed unnecessary dict.keys() calls.Jon Dufresne
2017-05-27Fixed #28226 -- Replaced use of str.join() with concatenation.Tom
2017-04-27Refs #27795 -- Replaced many force_text() with str()Claude Paroz
2017-02-07Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz
2017-01-26Refs #23919 -- Replaced usage of django.utils.http utilities with Python equi...Claude Paroz
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-21Refs #23919 -- Removed re.U and re.UNICODE (default on Python 3).Mariusz Felisiak
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 -- Stopped using django.utils.lru_cache().Aymeric Augustin
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-11Fixed #27713 -- Clarified NoReverseMatch error message when no view is found.Marten Kenbeek