summaryrefslogtreecommitdiff
path: root/docs/ref/urlresolvers.txt
AgeCommit message (Collapse)Author
2025-09-17Removed versionadded/changed annotations for 5.2.Jacob Walls
2025-08-25Refs #36485 -- Rewrapped docs to 79 columns line length.David Smith
Lines in the docs files were manually adjusted to conform to the 79 columns limit per line (plus newline), improving readability and consistency across the content.
2025-03-12Refs #25582 -- Doc'd query and fragment arguments for reverse_lazy().Adam Johnson
2024-12-11Fixed #25582 -- Added support for query and fragment to django.urls.reverse().Ben Cardy
2024-11-27Made reverse() docs more self-contained.Clifford Gama
2024-10-23Fixed #28999 -- Documented how to reverse a class-based view by instance.Clifford Gama
Co-authored-by: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com>
2024-05-29Fixed 35467 -- Replaced urlparse with urlsplit where appropriate.Jake Howard
This work should not generate any change of functionality, and `urlsplit` is approximately 6x faster. Most use cases of `urlparse` didn't touch the path, so they can be converted to `urlsplit` without any issue. Most of those which do use `.path`, simply parse the URL, mutate the querystring, then put them back together, which is also fine (so long as urlunsplit is used).
2023-04-06Refs #34028 -- Doc'd that get_script_prefix() cannot be used outside of the ↵Sarah Boyce
request-response cycle.
2023-03-01Fixed #34140 -- Reformatted code blocks in docs with blacken-docs.django-bot
2023-02-10Refs #34140 -- Applied rst code-block to non-Python examples.Carlton Gibson
Thanks to J.V. Zammit, Paolo Melchiorre, and Mariusz Felisiak for reviews.
2023-01-17Removed versionadded/changed annotations for 4.1.Mariusz Felisiak
2022-03-29Fixed #16406 -- Added ResolveMatch.captured_kwargs and extra_kwargs.Alokik Vijay
Thanks Florian Apolloner for the review and implementation idea.
2021-09-20Removed versionadded/changed annotations for 3.2.Mariusz Felisiak
2021-07-29Fixed 32956 -- Lowercased spelling of "web" and "web framework" where ↵David Smith
appropriate.
2020-09-07Fixed #31791 -- Made technical 404 debug page display the tried URL patterns ↵Jon Dufresne
for Http404.
2019-09-10Removed versionadded/changed annotations for 2.2.Mariusz Felisiak
2018-12-06Fixed #28766 -- Added ResolverMatch.route.Benjamin Wohlwend
Co-Authored-By: Xavier Fernandez <xavier.fernandez@polyconseil.fr>
2018-05-12Alphabetized imports in various docs.Mariusz Felisiak
Follow-up of d97cce34096043b019e818a7fb98c0f9f073704c and 7d3fe36c626a3268413eb86d37920f132eb4a54f.
2017-09-20Fixed #28593 -- Added a simplified URL routing syntax per DEP 0201.Sjoerd Job Postmus
Thanks Aymeric Augustin for shepherding the DEP and patch review. Thanks Marten Kenbeek and Tim Graham for contributing to the code. Thanks Tom Christie, Shai Berger, and Tim Graham for the docs.
2017-01-26Refs #23919 -- Replaced usage of django.utils.http utilities with Python ↵Claude Paroz
equivalents Thanks Tim Graham for the review.
2017-01-18Refs #23919 -- Removed Python 2 notes in docs.Tim Graham
2017-01-17Refs #26013 -- Removed deprecated django.core.urlresolvers module.Tim Graham
2016-07-06Fixed capitalization of "URL pattern".Tim Graham
2016-05-20Removed versionadded/changed annotations for 1.9.Tim Graham
2016-02-01Fixed #26124 -- Added missing code formatting to docs headers.rowanv
2016-01-22Fixed #26020 -- Normalized header stylings in docs.Elif T. Kus
2015-12-31Fixed #26013 -- Moved django.core.urlresolvers to django.urls.Marten Kenbeek
Thanks to Tim Graham for the review.
2015-11-07Fixed #25473 -- Changed underscores in url() names to dashes in docs.Thijs van Dien
To improve consistency, sample URL names that had underscores in them now use dashes instead. That excludes URL names that have some relation to the code, such as those generated by the admin. Thanks guettli for reporting this.
2015-09-23Refs #22384 -- Removed the ability to reverse URLs by dotted path per ↵Tim Graham
deprecation timeline.
2015-08-03Refs #17914 -- Discouraged using reverese() with callables.Tim Graham
2015-07-27Fixed #25159 -- Removed brackets from class/function/method signatures in docs.Tim Graham
Thanks hellbeast for the initial patch.
2015-06-06Fixed #24906 -- Fixed ResolverMatch.app_name for nested namespaces.Marten Kenbeek
Set ResolverMatch.app_name to the full path of nested application namespaces.
2014-06-03Fixed #22384 -- Deprecated reversing URLs by dotted path.Tim Graham
2014-04-16Fixed #22220 -- Added more examples to reverse() documention.Ben Davis
Thanks EvilDMP for the suggestions.
2014-03-31Replaced urllib/urlparse imports with from django.utils.six.moves.Tim Graham
2014-03-22Fixed #22313 -- Removed 'u' prefixes from documentationClaude Paroz
2014-02-23Fixed #22063 -- Added reference to NoReverseMatch from the reverse() ↵Alex de Landgraaf
documentation
2014-02-22Fixed #22092 -- Documented ResolverMatch.view_nameJochem Oosterveen
2013-09-05Fixed #21044 -- Documented django.core.urlresolvers.Resolver404Tim Graham
Thanks Keryn Knight for the suggestion.
2012-12-29Removed versionadded/changed annotations dating back to 1.4.Aymeric Augustin
2012-11-22Fixed #18974 - Warned against using models.permalinkTim Graham
Thanks dstufft for the draft patch.
2012-10-07Added section about URL reversion to URL mapper document.Ramiro Morales
2012-10-06Refactored URL mapping documentation.Ramiro Morales
Reorganized topic document so it introduces concepts form simple to more complex. Moved reference parts to their own documents.