From 1187eb8709c81217bd9b84369bf6e01e0eed93e7 Mon Sep 17 00:00:00 2001 From: Adam Chainz Date: Wed, 8 Jun 2016 04:07:57 +0100 Subject: [PATCH] Convert readthedocs links for their .org -> .io migration for hosted projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As per [their blog post of the 27th April](https://blog.readthedocs.com/securing-subdomains/) ‘Securing 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. --- CONTRIBUTING.rst | 4 ++-- HISTORY.rst | 6 +++--- README.rst | 2 +- docs/conf.py | 2 +- docs/contributing.rst | 6 +++--- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index fe1149f..e271406 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -12,5 +12,5 @@ Also, please read the following: * Our design_ document, which lists the constraints and goals of the project. * Our contributing_ document, which describes our procedures and methods. -.. _design: https://django-admin2.readthedocs.org/en/latest/design.html -.. _contributing: https://django-admin2.readthedocs.org/en/latest/contributing.html +.. _design: https://django-admin2.readthedocs.io/en/latest/design.html +.. _contributing: https://django-admin2.readthedocs.io/en/latest/contributing.html diff --git a/HISTORY.rst b/HISTORY.rst index 8e49dad..fb35293 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -57,9 +57,9 @@ History * Pull requests going forward are internationalized_ * FAQ_ begun -.. _`internationalized`: https://django-admin2.readthedocs.org/en/latest/contributing.html#internationalize -.. _`Documentation on built-in views`: https://django-admin2.readthedocs.org/en/latest/ref/built-in-views.html -.. _faq: https://django-admin2.readthedocs.org/en/latest/faq.html +.. _`internationalized`: https://django-admin2.readthedocs.io/en/latest/contributing.html#internationalize +.. _`Documentation on built-in views`: https://django-admin2.readthedocs.io/en/latest/ref/built-in-views.html +.. _faq: https://django-admin2.readthedocs.io/en/latest/faq.html 0.5.0 (2013-07-08) diff --git a/README.rst b/README.rst index 8e6edf0..85317fd 100644 --- a/README.rst +++ b/README.rst @@ -17,7 +17,7 @@ rewrite of that library using modern Class-Based Views and enjoying a design focused on extendibility and adaptability. By starting over, we can avoid the legacy code and make it easier to write extensions and themes. -Full Documentation at: http://django-admin2.rtfd.org/ +Full Documentation at: https://django-admin2.readthedocs.io/ Features ======== diff --git a/docs/conf.py b/docs/conf.py index 633df25..4b5b88d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -266,7 +266,7 @@ texinfo_documents = [ # Example configuration for intersphinx: refer to the Python standard library. intersphinx_mapping = { - 'python': ('http://python.readthedocs.org/en/v2.7.2/', None), + 'python': ('https://python.readthedocs.io/en/v2.7.2/', None), 'django': ( 'http://docs.djangoproject.com/en/dev/', 'http://docs.djangoproject.com/en/dev/_objects/' diff --git a/docs/contributing.rst b/docs/contributing.rst index 7af32da..269631e 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -6,7 +6,7 @@ Contributing .. warning:: Before you begin working on your contribution, please read and become familiar with the design_ of ``django-admin2``. The design_ document should hopefully make it clear what our constraints and goals are for the project. -.. _design: https://django-admin2.readthedocs.org/en/latest/design.html +.. _design: https://django-admin2.readthedocs.io/en/latest/design.html .. index:: single: Contributing; Setup @@ -42,7 +42,7 @@ Try the example projects 3. run the dev server: ``$ python manage.py runserver`` .. _virtualenv: http://www.virtualenv.org/en/latest/ -.. _virtualenvwrapper: http://virtualenvwrapper.readthedocs.org/en/latest/ +.. _virtualenvwrapper: https://virtualenvwrapper.readthedocs.io/en/latest/ .. index:: single: Contributing; Issues @@ -254,7 +254,7 @@ Internationalize Any new text visible to the user must be internationalized_. -.. _internationalized: https://django-admin2.readthedocs.org/en/latest/internationalization.html +.. _internationalized: https://django-admin2.readthedocs.io/en/latest/internationalization.html How pull requests are checked, tested, and done