Skip to content

Commit 9e7733d

Browse files
author
Adam Chainz
committed
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.
1 parent 534b509 commit 9e7733d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/release-2.5.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Backwards-incompatible Changes
5959
As the HTML would not be parsed with the above Extension, then the serializer will
6060
escape the raw HTML, which is exactly what happens now when `safe_mode="escape"`.
6161

62-
[Bleach]: http://bleach.readthedocs.org/
62+
[Bleach]: https://bleach.readthedocs.io/
6363

6464
* Positional arguments on the `markdown.Markdown()` are pending deprecation as are
6565
all except the `text` argument on the `markdown.markdown()` wrapper function.

docs/release-2.6.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ raw HTML, then that can be accomplished through an extension which removes HTML
4949
As the HTML would not be parsed with the above Extension, then the serializer will
5050
escape the raw HTML, which is exactly what happens now when `safe_mode="escape"`.
5151

52-
[Bleach]: http://bleach.readthedocs.org/
52+
[Bleach]: https://bleach.readthedocs.io/
5353

5454
### Positional Arguments Deprecated
5555

@@ -256,7 +256,7 @@ Test coverage has been improved including running [flake8]. While those changes
256256
will not directly effect end users, the code is being better tested which will
257257
benefit everyone.
258258

259-
[flake8]: http://flake8.readthedocs.org/en/latest/
259+
[flake8]: https://flake8.readthedocs.io/en/latest/
260260

261261
Various bug fixes have been made. See the
262262
[commit log](https://github.com/waylan/Python-Markdown/commits/master)

markdown/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def __init__(self, *args, **kwargs):
137137
if 'safe_mode' in kwargs:
138138
warnings.warn('"safe_mode" is deprecated in Python-Markdown. '
139139
'Use an HTML sanitizer (like '
140-
'Bleach http://bleach.readthedocs.org/) '
140+
'Bleach https://bleach.readthedocs.io/) '
141141
'if you are parsing untrusted markdown text. '
142142
'See the 2.6 release notes for more info',
143143
DeprecationWarning)

0 commit comments

Comments
 (0)