Skip to content

Commit

Permalink
Convert readthedocs link for their .org -> .io migration for hosted p…
Browse files Browse the repository at this point in the history
…rojects

As per their email ‘Changes to project subdomains’:

> Starting today, Read the Docs will start hosting projects from subdomains on the domain readthedocs.io, instead of on readthedocs.org. This change addresses some security concerns around site cookies while hosting user generated data on the same domain as our dashboard.

Test Plan: Manually visited all the links I’ve modified.
  • Loading branch information
Adam Chainz committed May 29, 2016
1 parent 89c8f76 commit e85febf
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
For more information, please see the official docs at
http://boto3.readthedocs.org/
https://boto3.readthedocs.io/

Contributing Code
-----------------
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ services that are supported.


.. _boto: https://docs.pythonboto.org/
.. _`Read the Docs`: https://boto3.readthedocs.org/en/latest/
.. _`Read the Docs`: https://boto3.readthedocs.io/en/latest/
.. |Build Status| image:: http://img.shields.io/travis/boto/boto3/develop.svg?style=flat
:target: https://travis-ci.org/boto/boto3
:alt: Build Status
.. |Docs| image:: https://readthedocs.org/projects/boto3/badge/?version=latest&style=flat
:target: https://boto3.readthedocs.org/en/latest/
:target: https://boto3.readthedocs.io/en/latest/
:alt: Read the docs
.. |Downloads| image:: http://img.shields.io/pypi/dm/boto3.svg?style=flat
:target: https://pypi.python.org/pypi/boto3/
Expand Down
4 changes: 2 additions & 2 deletions boto3/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def client(self, service_name, region_name=None, api_version=None,
over environment variables and configuration values, but not over
a region_name value passed explicitly to the method. See
`botocore config documentation
<http://botocore.readthedocs.org/en/latest/reference/config.html>`_
<https://botocore.readthedocs.io/en/latest/reference/config.html>`_
for more details.
:return: Service client instance
Expand Down Expand Up @@ -323,7 +323,7 @@ def resource(self, service_name, region_name=None, api_version=None,
user_agent_extra is specified in the client config, it overrides
the default user_agent_extra provided by the resource API. See
`botocore config documentation
<http://botocore.readthedocs.org/en/latest/reference/config.html>`_
<https://botocore.readthedocs.io/en/latest/reference/config.html>`_
for more details.
:return: Subclass of :py:class:`~boto3.resources.base.ServiceResource`
Expand Down
2 changes: 1 addition & 1 deletion docs/source/guide/migration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Once configured, you may begin using Boto 3::
for bucket in boto3.resource('s3').buckets.all():
print(bucket.name)

See the :ref:`tutorial_list` and `Boto 3 Documentation <http://boto3.readthedocs.org/>`__ for more information.
See the :ref:`tutorial_list` and `Boto 3 Documentation <https://boto3.readthedocs.io/>`__ for more information.

The rest of this document will describe specific common usage scenarios of Boto 2 code and how to accomplish the same tasks with Boto 3.

Expand Down
2 changes: 1 addition & 1 deletion docs/source/guide/s3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -182,5 +182,5 @@ conditions when you generate the POST data.::
Note: if your bucket is new and you require CORS, it is advised that
you use path style addressing (which is set by default in signature version 4).

.. _s3 transfer manager: http://boto3.readthedocs.org/en/latest/reference/customizations/s3.html#module-boto3.s3.transfer
.. _s3 transfer manager: https://boto3.readthedocs.io/en/latest/reference/customizations/s3.html#module-boto3.s3.transfer
.. _virtual host addressing: http://docs.aws.amazon.com/AmazonS3/latest/dev/VirtualHosting.html

0 comments on commit e85febf

Please sign in to comment.