summaryrefslogtreecommitdiff
path: root/docs/topics/http/shortcuts.txt
AgeCommit message (Collapse)Author
2025-12-26Fixed #30515 -- Documented resolve_url() in docs/topics/http/shortcuts.txt.Duane Hilton
2025-10-29Fixed #36329 -- Removed non-code custom link text when cross-referencing ↵Clifford Gama
Python objects. Thanks Bruno Alla, Sarah Boyce, and Jacob Walls for reviews. Co-authored-by: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com>
2025-09-17Removed versionadded/changed annotations for 5.2.Jacob Walls
2025-08-25Refs #36485 -- Removed unnecessary parentheses in :meth: and :func: roles in ↵David Smith
docs.
2024-11-14Fixed #35784 -- Added support for preserving the HTTP request method in ↵Lorenzo Peña
HttpResponseRedirectBase. Co-authored-by: Natalia <124304+nessita@users.noreply.github.com>
2024-05-22Removed versionadded/changed annotations for 5.0.Natalia
This also removes remaining versionadded/changed annotations for older versions.
2023-07-24Fixed #34714 -- Added aget_object_or_404()/aget_list_or_404() shortcuts.Olivier Tabone
2023-03-01Fixed #34140 -- Reformatted code blocks in docs with blacken-docs.django-bot
2023-02-28Refs #34140 -- Corrected rst code-block and various formatting issues in docs.Joseph Victor Zammit
2021-11-24Fixed #33298 -- Added docs and tests for using Q objects with ↵mgaligniana
get_object_or_404()/get_list_or_404().
2019-05-24Fixed #30504 -- Corrected redirect() signature in docs.Shashank Parekh
2019-01-17Refs #27829 -- Removed settings.DEFAULT_CONTENT_TYPE per deprecation timeline.Tim Graham
2019-01-17Refs #25978 -- Removed shortcuts.render_to_response() per deprecation timeline.Tim Graham
2018-11-15Used auto-numbered lists in documentation.François Freitag
2018-07-07Removed usage of 'object' variable name in docs.Harry Moreno
2017-02-11Fixed #25978 -- Deprecated shorcuts.render_to_response().Tim Graham
2016-06-03Fixed #26021 -- Applied hanging indentation to docs.Ed Henderson
2016-02-01Fixed #26124 -- Added missing code formatting to docs headers.rowanv
2015-12-31Fixed #26013 -- Moved django.core.urlresolvers to django.urls.Marten Kenbeek
Thanks to Tim Graham for the review.
2015-12-23Refs #25963 -- Fixed typo in docs/topics/http/shortcuts.txtAlasdair Nicol
2015-12-23Fixed #25854 -- Removed deprecated usage of template.render() with ↵Alasdair Nicol
RequestContext in docs.
2015-12-23Fixed #25969 -- Replaced render_to_response() with render() in docs examples.Tim Graham
2015-12-01Fixed #25778 -- Updated docs links to use https when available.Jon Dufresne
2015-09-23Removed versionadded/changed annotations for 1.8.Tim Graham
2015-09-23Removed dictionary and context_instance parameters for render functions.Tim Graham
Per deprecation timeline.
2015-09-23Removed dirs parameter in template engine methods and related funtions.Tim Graham
Per deprecation timeline.
2015-09-23Removed current_app argument to render() and TemplateResponse().Tim Graham
Per deprecation timeline.
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-05-08Fixed #24763 -- Moved DoesNotExist exception to model docs.David Krisch
2015-02-03Fixed #24168 -- Allowed selecting a template engine in a few APIs.Aymeric Augustin
Specifically in rendering shortcuts, template responses, and class-based views that return template responses. Also added a test for render_to_response(status=...) which was missing from fdbfc980. Thanks Tim and Carl for the review.
2015-02-01Removed versionadded/changed notes for 1.7.Tim Graham
2015-01-16Fixed #24143 -- Encouraged use of Http404 messages for debugging.Keryn Knight
2015-01-10Wrote main documentation for templates.Aymeric Augustin
2014-12-28Deprecated current_app in TemplateResponse and render(_to_response).Aymeric Augustin
2014-12-28Deprecated some arguments of django.shortcuts.render(_to_response).Aymeric Augustin
dictionary and context_instance and superseded by context. Refactored tests that relied context_instance with more modern idioms.
2014-11-23Deprecated dirs argument to override TEMPLATE_DIRS.Aymeric Augustin
Cancels 2f0566fa. Refs #4278.
2014-08-06Removed a doc reference to the deprecated `mimetype` kwarg.Mohammed Attia
2014-02-14Fixed #21177 -- Made resolve_url support relative URLs.Antoine Catton
This fixes redirecting to relative URLs with django.shortcuts.redirect.
2013-12-13Fixed #21580 -- Clarified why render() does not return a TemplateResponse ↵johannes-gehrs
object.
2013-11-19Added more examples to the get_object_or_404 documentation.Baptiste Mispelon
2013-11-15Fixed #21440 -- Typo #2 in topics/http/shortcuts.txtTim Graham
Thanks alasdair.
2013-11-15Fixed #21440 -- Typo in topics/http/shortcuts.txtTim Graham
Thanks olof.bjarnason at gmail.com for the report.
2013-10-14Fixed #21264 -- Incorrect RST usage in docsBouke Haarsma
2013-09-18Fixed #4278 -- Added a dirs parameter to a few functions to override ↵Berker Peksag
TEMPLATE_DIRS. * django.template.loader.get_template() * django.template.loader.select_template() * django.shortcuts.render() * django.shortcuts.render_to_response() Thanks amcnabb for the suggestion.
2013-08-19Removed versionadded/changed annotations for 1.5Tim Graham
2013-08-15Fixed some ReST errors regarding backticksTim Graham
2013-06-24Clarified get_list_or_404 docs, refs #14150.Tim Graham
2013-04-20Adapted uses of versionchanged/versionadded to the new form.Juan Catalano
Refs #20104.
2013-03-22Added missing markup to docs.Tim Graham