diff options
author | Adam Chainz <adam@adamj.eu> | 2016-05-31 19:29:51 +0100 |
---|---|---|
committer | Adam Chainz <adam@adamj.eu> | 2016-05-31 19:29:51 +0100 |
commit | 03b022d0256182f1cde0b659804576eeaffbc2a0 (patch) | |
tree | b5ccbdb0ce3acf703c13f2958c319fd9cef2d969 | |
parent | f48b3b84b18ad3d02674cef183cfe8ccfd36262a (diff) | |
download | django-appconf-03b022d0256182f1cde0b659804576eeaffbc2a0.tar.gz |
Convert readthedocs link for their .org -> .io migration for hosted projects
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.
-rw-r--r-- | docs/conf.py | 6 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/conf.py b/docs/conf.py index f2f7bbc..49e8469 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -222,7 +222,7 @@ man_pages = [ # Example configuration for intersphinx: refer to the Python standard library. intersphinx_mapping = { - 'python': ('http://python.readthedocs.org/en/v2.7.2/', None), - 'django': ('http://django.readthedocs.org/en/latest/', None), - 'celery': ('http://celery.readthedocs.org/en/latest/', None), + 'python': ('https://python.readthedocs.io/en/v2.7.2/', None), + 'django': ('https://django.readthedocs.io/en/latest/', None), + 'celery': ('https://celery.readthedocs.io/en/latest/', None), } @@ -27,7 +27,7 @@ setup( author='Jannis Leidel', author_email='jannis@leidel.info', license='BSD', - url='http://django-appconf.readthedocs.org/', + url='https://django-appconf.readthedocs.io/', packages=['appconf'], install_requires=[], classifiers=[ |