Skip to content

Commit b2b5136

Browse files
author
Dave Cuthbert
authored
DOCSP-28859 fix pymongo link (#2806)
* DOCSP-28859 fix pymongo link * fake commit * Force build * Force build
1 parent fc39563 commit b2b5136

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

source/core/kerberos.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ The following MongoDB drivers support Kerberos authentication:
197197
- `Node.js <http://mongodb.github.io/node-mongodb-native/2.0/tutorials/enterprise_features/>`_
198198
- `Perl <https://metacpan.org/pod/MongoDB::MongoClient#GSSAPI-(for-Kerberos)>`_
199199
- `PHP <http://php.net/manual/en/mongodb-driver-manager.construct.php>`_
200-
- :api:`Python <pymongo>`
200+
- `Python <https://pymongo.readthedocs.io/en/stable/index.html>`__
201201
- :ruby:`Ruby </tutorials/ruby-driver-authentication/#kerberos-gssapi-mechanism>`
202202
- `Scala <http://mongodb.github.io/mongo-scala-driver/2.1/reference/connecting/authenticating/>`_
203203
- `Swift <https://mongodb.github.io/mongo-swift-driver/docs/current/>`_

source/includes/driver-examples/driver-example-indexes-1.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@
3838
- id: python
3939
content: |
4040
To create an index using the
41-
:api:`Python driver <pymongo>`,
41+
`PyMongo Python driver
42+
<https://pymongo.readthedocs.io/en/stable/index.html>`__,
4243
use :py:meth:`pymongo.collection.Collection.create_index`.
4344

44-
4545
.. code-block:: python
4646
4747
db.collection.create_index([(<key and index type specification>)], <options> )

source/includes/driver-examples/driver-example-query-intro.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
content: |
2121
This page provides examples of |query_operations| using the
2222
:py:meth:`pymongo.collection.Collection.find` method in the
23-
:api:`PyMongo <pymongo>`
23+
`PyMongo <https://pymongo.readthedocs.io/en/stable/index.html>`__
2424
Python driver. The examples on this page use the ``inventory``
2525
collection. To populate the ``inventory`` collection, run the
2626
following:

source/includes/list-4.2-drivers.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
- `Perl 2.2.0 <https://metacpan.org/author/MONGODB>`__
1717

18-
- :api:`Python 3.9.0 <pymongo>`
18+
- `Python <https://pymongo.readthedocs.io/en/stable/index.html>`__
1919

2020
- :ruby:`Ruby 2.10.0 </>`
2121

source/reference/operator/query/not.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ data types like arrays.
8181

8282
- driver language's regular expression objects
8383

84-
For example, the following :api:`PyMongo <pymongo>` query uses Python's
85-
``re.compile()`` method to compile a regular
86-
expression:
84+
For example, the following `PyMongo
85+
<https://pymongo.readthedocs.io/en/stable/index.html>`__ query uses
86+
Python's ``re.compile()`` method to compile a regular expression:
8787

8888
.. code-block:: python
8989

source/tutorial/remove-documents.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ upper-right to set the language of the following examples.
5353

5454
- id: python
5555
content: |
56-
This page uses the
57-
following :api:`PyMongo <pymongo>`
56+
This page uses the following
57+
`PyMongo <https://pymongo.readthedocs.io/en/stable/index.html>`__
5858
Python driver methods:
5959

6060
- :py:meth:`pymongo.collection.Collection.delete_many`

source/tutorial/update-documents.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ upper-right to set the language of the following examples.
6161
.. tab::
6262
:tabid: python
6363

64-
This page uses the
65-
following :api:`PyMongo <pymongo>`
64+
This page uses the following
65+
`PyMongo <https://pymongo.readthedocs.io/en/stable/index.html>`__
6666
Python driver methods:
6767

6868
- :py:meth:`pymongo.collection.Collection.update_one`

0 commit comments

Comments
 (0)