Skip to content

Commit f843e74

Browse files
committed
DOCSP-48767: Intersphinx links
1 parent 7b2d67b commit f843e74

File tree

6 files changed

+25
-24
lines changed

6 files changed

+25
-24
lines changed

source/connect.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,11 +146,11 @@ function accepts the following arguments:
146146
- ``db_name``: The name of the database you want to use.
147147
- ``conn_max_age``: Configures persistent database connections.
148148
This argument is optional. To learn more, see
149-
`Persistent connections <{+django-docs+}/ref/databases/#persistent-database-connections>`__
149+
:std:ext-doc:`Persistent connections <databases/#persistent-database-connections>`
150150
in the {+framework+} documentation.
151151
- ``test``: Provides a dictionary of settings for test
152152
databases. This argument is optional. To learn more, see
153-
`the TEST setting <{+django-docs+}/ref/settings/#test>`__
153+
:std:ext-doc:`the TEST setting <ref//settings/#test>`
154154
in the {+framework+} documentation.
155155

156156
Example

source/get-started/create-admin.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Create an Admin Site
1313

1414
You can create a {+framework+} admin site to edit your application's
1515
data from a web interface. To learn more about the {+framework+} admin
16-
site and its features, see `The Django admin site <{+django-docs+}/ref/contrib/admin/>`__
16+
site and its features, see :py:attr:`The Django admin site <django.contrib.admin>`
1717
in the {+framework+} documentation.
1818

1919
.. procedure::

source/interact-data/specify-a-query.txt

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -257,9 +257,9 @@ expression matching, and year value matching for datetime fields.
257257

258258
.. tip::
259259

260-
To view a full list of lookup types, see `Field lookups
261-
<{+django-docs+}/ref/models/querysets/#field-lookups>`__ in the
262-
``QuerySet`` {+framework+} API reference.
260+
To view a full list of lookup types, see
261+
:std:ext-doc:`Field lookups <ref/models/querysets/#field-lookups>`
262+
in the ``QuerySet`` {+framework+} API reference.
263263

264264
This section describes how to refine your query filters
265265
in the following ways:
@@ -397,18 +397,17 @@ You can run queries that use multiple sets of matching criteria
397397
in the following ways:
398398

399399
- Pass multiple query filters to your query method, separated
400-
by commas. To view an example, see `Retrieving objects
401-
<{+django-docs+}/topics/db/queries/#retrieving-objects>`__ in the
402-
{+framework+} documentation.
400+
by commas. To view an example, see
401+
:std:ext-doc:`Django's LOGGING setting <topics/db/queries/#retrieving-objects>`
402+
in the {+framework+} documentation.
403403

404-
- Chain query methods together. To learn more, see `Chaining filters
405-
<{+django-docs+}/topics/db/queries/#chaining-filters>`__ in the {+framework+}
406-
documentation.
404+
- Chain query methods together. To learn more, see
405+
:std:ext-doc:`Chaining filters <topics/db/queries/#chaining-filters>`
406+
in the {+framework+} documentation.
407407

408408
- Use ``Q`` objects and separate each object with a logical operator.
409-
To learn more, see `Complex lookups with Q objects
410-
<{+django-docs+}/topics/db/queries/#complex-lookups-with-q-objects>`__ in the {+framework+}
411-
documentation.
409+
To learn more, see :std:ext-doc:`Complex lookups with Q objects <topics/db/queries/#complex-lookups-with-q-objects>`
410+
in the {+framework+} documentation.
412411

413412
Q Object Example
414413
````````````````
@@ -814,5 +813,6 @@ pipeline syntax, see the :ref:`django-raw-queries` guide.
814813
To learn how to perform other ``QuerySet`` operations, see the
815814
:ref:`django-crud` guide.
816815

817-
To learn more about {+framework+} queries, see `Making queries <{+django-docs+}/topics/db/queries>`__
816+
To learn more about {+framework+} queries, see
817+
:std:ext-doc:`Making queries <topics/db/queries>`
818818
in the {+framework+} documentation.

source/limitations-upcoming.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Fields
115115
``$lookup`` operations, see the :atlas:`Reduce $lookup Operations
116116
</schema-suggestions/reduce-lookup-operations/>` guide in the Atlas
117117
documentation.
118-
- Performance of `CASCADE deletes <{+django-docs+}/ref/models/fields/#django.db.models.CASCADE>`__
118+
- Performance of :py:mod:`CASCADE deletes <django.db.models.CASCADE>`
119119
on a ``ForeignKey`` field is not as performant as using an
120120
``EmbeddedModelField``.
121121

@@ -196,7 +196,7 @@ Migration Limitations
196196
validation in your application, see the :manual:`Specify JSON
197197
Schema Validation </core/schema-validation/specify-json-schema/>` guide in the
198198
{+mdb-server+} manual.
199-
- `DDL Transactions <{+django-docs+}/topics/migrations/#transactions>`__.
199+
- :std:ext-doc:`DDL Transactions <topics/migrations/#transactions>`
200200
- The ``migrate --fake-initial`` option.
201201

202202
.. _django-limitations-performance:

source/model-data/indexes.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,9 @@ same indexes on the MongoDB collection.
9292

9393
.. tip::
9494

95-
To learn how to create and apply database migrations, see `Migrations
96-
<{+django-docs+}/topics/migrations/>`__ in the {+framework+} documentation.
95+
To learn how to create and apply database migrations, see
96+
:std:ext-doc:`Migrations <topics/migrations>` in the
97+
{+framework+} documentation.
9798

9899
This section shows how to create the following index types:
99100

@@ -280,7 +281,7 @@ creates a unique compound index on these fields:
280281

281282
Setting the ``constraints`` option to a ``UniqueConstraint`` automatically
282283
creates an index on the specified fields. To learn more about the ``Meta``
283-
class's ``constraint`` option, see `Constraints <{+django-docs+}/ref/models/constraints/>`__
284+
class's ``constraint`` option, see :std:ext-doc:`Constraints <ref/models/constraints>`
284285
in the {+framework+} documentation.
285286

286287
Additional Information

source/model-data/models.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ define a model:
237237
.. tip::
238238

239239
To learn more about the metadata options you can specify
240-
in the ``Meta`` class, see `Model Meta options <{+django-docs+}/ref/models/options/>`__
240+
in the ``Meta`` class, see :py:attr:`Model Meta options <django.db.models.Options>`
241241
in the {+framework+} documentation.
242242

243243
To use your models, you must add them to your project's
@@ -376,8 +376,8 @@ and pass the following arguments:
376376
- ``size``: *(Optional)* Specifies the maximum size of the array.
377377

378378
- ``options``: *(Optional)* Specifies {+framework+} field options.
379-
To view a list of available options, see `Field options
380-
<{+django-docs+}/ref/models/fields/#field-options>`__
379+
To view a list of available options, see
380+
:std:ext-doc:`Field options <ref/models/fields/#field-options>`
381381
in the {+framework+} documentation.
382382

383383
.. tip::

0 commit comments

Comments
 (0)