From f1c0936af005ca2fbd62a200febd3354fa6d1665 Mon Sep 17 00:00:00 2001 From: mbcodes Date: Wed, 30 Oct 2024 19:37:46 -0700 Subject: [PATCH] created a ref to class-based views and updated docs links to point to the ref --- docs/glossary.txt | 2 +- docs/internals/deprecation.txt | 3 +-- docs/intro/tutorial04.txt | 3 +-- docs/ref/class-based-views/index.txt | 2 +- docs/releases/1.3.txt | 4 +--- docs/releases/1.5.txt | 2 +- docs/topics/auth/default.txt | 7 +++---- docs/topics/class-based-views/index.txt | 2 ++ docs/topics/http/urls.txt | 3 +-- 9 files changed, 12 insertions(+), 16 deletions(-) diff --git a/docs/glossary.txt b/docs/glossary.txt index f24a33e81d..2534187cf3 100644 --- a/docs/glossary.txt +++ b/docs/glossary.txt @@ -18,7 +18,7 @@ Glossary A higher-order :term:`view` function that provides an abstract/generic implementation of a common idiom or pattern found in view development. - See :doc:`/topics/class-based-views/index`. + See :ref:`class-based-views-explanation`. model Models store your application's data. diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt index bcba07ad85..d5ace4ee3e 100644 --- a/docs/internals/deprecation.txt +++ b/docs/internals/deprecation.txt @@ -1230,8 +1230,7 @@ details on these changes. instead use ``django.contrib.formtools.utils.form_hmac`` * The function-based generic view modules will be removed in favor of their - class-based equivalents, outlined in :doc:`class-based views - `. + class-based equivalents, outlined in :ref:`class-based-views-explanation`. * The ``django.core.servers.basehttp.AdminMediaHandler`` will be removed. In its place use diff --git a/docs/intro/tutorial04.txt b/docs/intro/tutorial04.txt index 149b01f338..26791beb5f 100644 --- a/docs/intro/tutorial04.txt +++ b/docs/intro/tutorial04.txt @@ -340,8 +340,7 @@ use the variable you want. Run the server, and use your new polling app based on generic views. -For full details on generic views, see the :doc:`generic views documentation -`. +For full details on generic views, see the generic views documentation under :ref:`class-based-views-explanation`. When you're comfortable with forms and generic views, read :doc:`part 5 of this tutorial` to learn about testing our polls app. diff --git a/docs/ref/class-based-views/index.txt b/docs/ref/class-based-views/index.txt index 0c2f20aee5..b8d7c1479f 100644 --- a/docs/ref/class-based-views/index.txt +++ b/docs/ref/class-based-views/index.txt @@ -3,7 +3,7 @@ Built-in class-based views API ============================== Class-based views API reference. For introductory material, see the -:doc:`/topics/class-based-views/index` topic guide. +:ref:`class-based-views-explanation` topic guide. .. toctree:: :maxdepth: 3 diff --git a/docs/releases/1.3.txt b/docs/releases/1.3.txt index 46bd886c67..7b54d615bd 100644 --- a/docs/releases/1.3.txt +++ b/docs/releases/1.3.txt @@ -69,9 +69,7 @@ provided, along with a completely generic view base class that can be used as the basis for reusable applications that can be easily extended. -See :doc:`the documentation on class-based generic views` -for more details. There is also a document to help you `convert -your function-based generic views to class-based +See the documentation on :ref:`class-based-views-explanation` for more details. There is also a document to help you `convert your function-based generic views to class-based views `_. Logging diff --git a/docs/releases/1.5.txt b/docs/releases/1.5.txt index 76d41a9ab8..fd5e2af848 100644 --- a/docs/releases/1.5.txt +++ b/docs/releases/1.5.txt @@ -210,7 +210,7 @@ associated with proxy models. New ``view`` variable in class-based views context -------------------------------------------------- -In all :doc:`generic class-based views ` +In all generic :ref:`class-based-views-explanation` (or any class-based view inheriting from ``ContextMixin``), the context dictionary contains a ``view`` variable that points to the ``View`` instance. diff --git a/docs/topics/auth/default.txt b/docs/topics/auth/default.txt index a22cebbf15..33f36fa28a 100644 --- a/docs/topics/auth/default.txt +++ b/docs/topics/auth/default.txt @@ -610,7 +610,7 @@ The ``login_required`` decorator The ``LoginRequiredMixin`` mixin ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -When using :doc:`class-based views `, you can +When using :ref:`class-based-views-explanation`, you can achieve the same behavior as with ``login_required`` by using the ``LoginRequiredMixin``. This mixin should be at the leftmost position in the inheritance list. @@ -728,7 +728,7 @@ email in the desired domain and if not, redirects to the login page:: .. class:: UserPassesTestMixin - When using :doc:`class-based views `, you + When using :ref:`classed-based views class-based-views-explanation`, you can use the ``UserPassesTestMixin`` to do this. .. method:: test_func() @@ -1057,8 +1057,7 @@ arguments in the URLconf, these will be passed on to the view. For example:: ), ] -All views are :doc:`class-based `, which allows -you to easily customize them by subclassing. +All views are :ref:`class-based-views-explanation`, which allows you to easily customize them by subclassing. .. _all-authentication-views: diff --git a/docs/topics/class-based-views/index.txt b/docs/topics/class-based-views/index.txt index ec126099f6..fb934fae10 100644 --- a/docs/topics/class-based-views/index.txt +++ b/docs/topics/class-based-views/index.txt @@ -1,3 +1,5 @@ +.. _class-based-views-explanation: + ================= Class-based views ================= diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt index 8e57732725..a24942ec65 100644 --- a/docs/topics/http/urls.txt +++ b/docs/topics/http/urls.txt @@ -49,8 +49,7 @@ algorithm the system follows to determine which Python code to execute: :attr:`~django.http.HttpRequest.path_info`. #. Once one of the URL patterns matches, Django imports and calls the given - view, which is a Python function (or a :doc:`class-based view - `). The view gets passed the following + view, which is a Python function (or a :ref:`class-based-views-explanation`). The view gets passed the following arguments: * An instance of :class:`~django.http.HttpRequest`.