From: Adam Chainz Date: Sun, 29 May 2016 13:50:32 +0000 (+0100) Subject: Convert readthedocs link for their .org -> .io migration for hosted projects X-Git-Tag: v2.4.0~23^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F412%2Fhead;p=thirdparty%2Fbabel.git Convert readthedocs link for their .org -> .io migration for hosted projects 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. --- diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 49762730..c72ec257 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -51,5 +51,5 @@ shall be amended so the history is not cluttered by "fixup commits". ## Writing Good Commits Please see -http://coala.readthedocs.org/en/latest/Getting_Involved/Writing_Good_Commits.html +https://coala.readthedocs.io/en/latest/Getting_Involved/Writing_Good_Commits.html for guidelines on how to write good commits and proper commit messages. diff --git a/tests/messages/test_plurals.py b/tests/messages/test_plurals.py index 975e931f..1a50139f 100644 --- a/tests/messages/test_plurals.py +++ b/tests/messages/test_plurals.py @@ -38,7 +38,7 @@ def test_get_plural_falls_back_to_default(): def test_get_plural(): - # See http://localization-guide.readthedocs.org/en/latest/l10n/pluralforms.html for more details. + # See https://localization-guide.readthedocs.io/en/latest/l10n/pluralforms.html for more details. assert plurals.get_plural(locale='en') == (2, '(n != 1)') assert plurals.get_plural(locale='ga') == (3, '(n==1 ? 0 : n==2 ? 1 : 2)')