summaryrefslogtreecommitdiff
path: root/docs/ref/urls.txt
AgeCommit message (Collapse)Author
2025-08-28Fixed #36570 -- Removed unnecessary :py domain from documentation roles.SaJH
Signed-off-by: SaJH <wogur981208@gmail.com>
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-08-25Refs #36485 -- Removed unnecessary parentheses in :meth: and :func: roles in ↵David Smith
docs.
2025-01-15Refs #35090 -- Removed support for django.urls.register_converter() ↵Sarah Boyce
overriding existing converters per deprecation timeline.
2024-09-30Relocated path() explanation to docs/ref/urls.txt to simplify tutorial 1.Chiara Mezzavilla
Co-authored-by: Natalia <124304+nessita@users.noreply.github.com>
2024-02-23Fixed #35090 -- Deprecated registering URL converters with the same name.Salvo Polizzi
2023-09-18Removed versionadded/changed annotations for 4.2.Mariusz Felisiak
This also removes remaining versionadded/changed annotations for older versions.
2023-03-01Fixed #34140 -- Reformatted code blocks in docs with blacken-docs.django-bot
2021-12-15Refs #33365, Refs #30530 -- Doc'd re_path() behavior change in Django ↵Mariusz Felisiak
2.2.25, 3.1.14, and 3.2.10. Follow up to d4dcd5b9dd9e462fec8220e33e3e6c822b7e88a6.
2021-07-29Fixed 32956 -- Lowercased spelling of "web" and "web framework" where ↵David Smith
appropriate.
2021-01-14Refs #31534 -- Removed django.conf.urls.url() per deprecation timeline.Mariusz Felisiak
2020-05-05Fixed #31534 -- Deprecated django.conf.urls.url().David Smith
2019-11-06Documented arguments for custom 500 error view.Dan Swain
2018-07-31Refs #24733 -- Documented arguments for custom error views.Adam Johnson
2018-05-17Removed versionadded/changed annotations for 2.0.Tim Graham
2018-02-12Corrected doc'd type of some parameters from string to str.Tim Graham
2017-10-28Refs #21927 -- Removed docs for include()'s old instance_namespace parameter.Samir Shah
Follow up to ad393beeb71e8774e4bf9ad842b97022e50f1231.
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-09-13Refs #28593 -- Moved django.conf.urls.include() to django.urls().Tim Graham
The old location remains for backwards compatibility. Documentation will be updated separately along with the rest of the URL routing changes.
2017-02-07Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz
Thanks Tim Graham for the review.
2017-01-27Fixed #27748 -- Switched HTTP error handlers to reference callables instead ↵Dmitry Gladkov
of strings.
2017-01-17Refs #21927 -- Removed include()'s app_name argument per deprecation timeline.Tim Graham
Also removed support for passing a 3-tuple to include() and support for setting an instance namespace without an application namespace. Thanks Marten Kenbeek for completing the patch.
2016-12-22Documented url()'s 'regex' parameter.Adam Chainz
2016-06-20Fixed #26776 -- Documented url()'s view argument.Andrew Nester
2016-02-01Fixed #26124 -- Added missing code formatting to docs headers.rowanv
2016-01-22Fixed #26020 -- Normalized header stylings in docs.Elif T. Kus
2016-01-05Fixed #25878 -- Documented requirement that handler404 return a 404 response.Tim Graham
2015-09-23Removed versionadded/changed annotations for 1.8.Tim Graham
2015-09-23Refs #23276 -- Removed passing views as strings to url() per deprecation ↵Tim Graham
timeline.
2015-09-23Refs #22218 -- Removed conf.urls.patterns() per deprecation timeline.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-24Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham
Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more.
2015-06-08Fixed #21927 -- Made application and instance namespaces more distinct.Marten Kenbeek
Made URL application namespaces be set in the included URLconf and instance namespaces in the call to include(). Deprecated other ways to set application and instance namespaces.
2014-08-12Fixed #23276 -- Deprecated passing views as strings to url().Tim Graham
2014-04-16Fixed #22378 -- Updated \d to [0-9]+ in urlpatterns of docs and tests.chriscauley
Thanks tomwys for the suggestion.
2014-04-03Fixed #22218 -- Deprecated django.conf.urls.patterns.Tim Graham
Thanks Carl Meyer for the suggestion and Alex Gaynor and Carl for reviews.
2014-03-27Fixed #21941 -- Documented the kwargs param of django.conf.urls.url().Tim Martin
Thanks cjerdonek for the report.
2014-03-24Removed versionadded/changed annotations for 1.6.Tim Graham
2014-03-23Fixed #22317 -- Fixed documented handler400 default valueClaude Paroz
2013-09-22A few doc additions for changes from d228c1192e.Ramiro Morales
2013-03-29Fixed #19897 - Updated static files howto.Tim Graham
Thanks Jan Murre, Reinout van Rees and Wim Feijen, plus Remco Wendt for reviewing.
2013-03-22Added missing markup to docs.Tim Graham
2013-01-02Fixed #19516 - Fixed remaining broken links.Tim Graham
Added -n to sphinx builds to catch issues going forward.
2012-12-29Removed versionadded/changed annotations dating back to 1.4.Aymeric Augustin
2012-12-29Removed django.conf.urls.defaults.Aymeric Augustin
2012-10-06More URL mapping documentation fixes.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.