Skip to content

Commit 166821f

Browse files
authored
PYTHON-5205 Replace http with https in doc links (#2204)
1 parent 4353278 commit 166821f

File tree

115 files changed

+160
-162
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+160
-162
lines changed

doc/api/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ API Documentation
33

44
The PyMongo distribution contains three top-level packages for
55
interacting with MongoDB. :mod:`bson` is an implementation of the
6-
`BSON format <http://bsonspec.org>`_, :mod:`pymongo` is a
6+
`BSON format <https://bsonspec.org>`_, :mod:`pymongo` is a
77
full-featured driver for MongoDB, and :mod:`gridfs` is a set of tools
88
for working with the `GridFS
99
<https://github.com/mongodb/specifications/blob/master/source/gridfs/gridfs-spec.md/>`_ storage

doc/async-tutorial.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ Indexing
385385
Adding indexes can help accelerate certain queries and can also add additional
386386
functionality to querying and storing documents. In this example, we'll
387387
demonstrate how to create a `unique index
388-
<http://mongodb.com/docs/manual/core/index-unique/>`_ on a key that rejects
388+
<https://mongodb.com/docs/manual/core/index-unique/>`_ on a key that rejects
389389
documents whose value for that key already exists in the index.
390390

391391
First, we'll need to create the index:

doc/changelog.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3067,7 +3067,7 @@ fixes. Highlights include:
30673067
:class:`~gridfs.grid_file.GridOutCursor`.
30683068
- Greatly improved :doc:`support for mod_wsgi </examples/mod_wsgi>` when using
30693069
PyMongo's C extensions. Read `Jesse's blog post
3070-
<http://emptysqua.re/blog/python-c-extensions-and-mod-wsgi/>`_ for details.
3070+
<https://emptysqua.re/blog/python-c-extensions-and-mod-wsgi/>`_ for details.
30713071
- Improved C extension support for ARM little endian.
30723072

30733073
Breaking changes
@@ -3322,7 +3322,7 @@ Important New Features:
33223322
- Support for mongos failover.
33233323
- A new :meth:`~pymongo.collection.Collection.aggregate` method to support
33243324
MongoDB's new `aggregation framework
3325-
<http://mongodb.com/docs/manual/applications/aggregation/>`_.
3325+
<https://mongodb.com/docs/manual/applications/aggregation/>`_.
33263326
- Support for legacy Java and C# byte order when encoding and decoding UUIDs.
33273327
- Support for connecting directly to an arbiter.
33283328

@@ -3686,7 +3686,7 @@ Changes in Version 1.9 (2010/09/28)
36863686

36873687
Version 1.9 adds a new package to the PyMongo distribution,
36883688
:mod:`bson`. :mod:`bson` contains all of the `BSON
3689-
<http://bsonspec.org>`_ encoding and decoding logic, and the BSON
3689+
<https://bsonspec.org>`_ encoding and decoding logic, and the BSON
36903690
types that were formerly in the :mod:`pymongo` package. The following
36913691
modules have been renamed:
36923692

@@ -3819,7 +3819,7 @@ Changes in Version 1.7 (2010/06/17)
38193819
Version 1.7 is a recommended upgrade for all PyMongo users. The full
38203820
release notes are below, and some more in depth discussion of the
38213821
highlights is `here
3822-
<http://dirolf.com/2010/06/17/pymongo-1.7-released.html>`_.
3822+
<https://dirolf.com/2010/06/17/pymongo-1.7-released.html>`_.
38233823

38243824
- no longer attempt to build the C extension on big-endian systems.
38253825
- added :class:`~bson.min_key.MinKey` and
@@ -3870,7 +3870,7 @@ The biggest change in version 1.6 is a complete re-implementation of
38703870
:mod:`gridfs` with a lot of improvements over the old
38713871
implementation. There are many details and examples of using the new
38723872
API in `this blog post
3873-
<http://dirolf.com/2010/03/29/new-gridfs-implementation-for-pymongo.html>`_. The
3873+
<https://dirolf.com/2010/03/29/new-gridfs-implementation-for-pymongo.html>`_. The
38743874
old API has been removed in this version, so existing code will need
38753875
to be modified before upgrading to 1.6.
38763876

doc/compatibility-policy.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ deprecated PyMongo features.
5252
.. seealso:: The Python documentation on `the warnings module`_,
5353
and `the -W command line option`_.
5454

55-
.. _semantic versioning: http://semver.org/
55+
.. _semantic versioning: https://semver.org/
5656

5757
.. _DeprecationWarning:
5858
https://docs.python.org/3/library/exceptions.html#DeprecationWarning

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"https://github.com/mongodb/specifications/blob/master/source/server-discovery-and-monitoring/server-monitoring.md#requesting-an-immediate-check",
8989
"https://github.com/mongodb/libmongocrypt/blob/master/bindings/python/README.rst#installing-from-source",
9090
r"https://wiki.centos.org/[\w/]*",
91-
r"http://sourceforge.net/",
91+
r"https://sourceforge.net/",
9292
]
9393

9494
# -- Options for extensions ----------------------------------------------------

doc/examples/aggregation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,4 @@ you can add computed fields, create new virtual sub-objects, and extract
8787
sub-fields into the top-level of results.
8888

8989
.. seealso:: The full documentation for MongoDB's `aggregation framework
90-
<http://mongodb.com/docs/manual/applications/aggregation>`_
90+
<https://mongodb.com/docs/manual/applications/aggregation>`_

doc/examples/authentication.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ Two extra ``authMechanismProperties`` are supported on Windows platforms:
191191
>>> uri = "mongodb://mongodbuser%[email protected]/?authMechanism=GSSAPI&authMechanismProperties=SERVICE_REALM:otherrealm"
192192

193193

194-
.. _kerberos: http://pypi.python.org/pypi/kerberos
194+
.. _kerberos: https://pypi.python.org/pypi/kerberos
195195
.. _pykerberos: https://pypi.python.org/pypi/pykerberos
196196
.. _winkerberos: https://pypi.python.org/pypi/winkerberos/
197197

doc/examples/copydb.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Versions of PyMongo before 3.0 included a ``copy_database`` helper method,
6767
but it has been removed.
6868

6969
.. _copyDatabase function in the mongo shell:
70-
http://mongodb.com/docs/manual/reference/method/db.copyDatabase/
70+
https://mongodb.com/docs/manual/reference/method/db.copyDatabase/
7171

7272
.. _Copy a Database:
7373
https://www.mongodb.com/docs/database-tools/mongodump/mongodump-examples/#copy-and-clone-databases

doc/examples/gevent.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Gevent
22
======
33

4-
PyMongo supports `Gevent <http://www.gevent.org/>`_. Simply call Gevent's
4+
PyMongo supports `Gevent <https://www.gevent.org/>`_. Simply call Gevent's
55
``monkey.patch_all()`` before loading any other modules:
66

77
.. code-block:: pycon

doc/examples/gridfs.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ objects (e.g. files) in MongoDB.
1414
.. seealso:: The API docs for :mod:`gridfs`.
1515

1616
.. seealso:: `This blog post
17-
<http://dirolf.com/2010/03/29/new-gridfs-implementation-for-pymongo.html>`_
17+
<https://dirolf.com/2010/03/29/new-gridfs-implementation-for-pymongo.html>`_
1818
for some motivation behind this API.
1919

2020
Setup

0 commit comments

Comments
 (0)