Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit af7d603

Browse filesBrowse files
author
Adam Chainz
committed
Convert readthedocs links 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 5769917 commit af7d603
Copy full SHA for af7d603

File tree

Expand file treeCollapse file tree

14 files changed

+33
-33
lines changed
Filter options
Expand file treeCollapse file tree

14 files changed

+33
-33
lines changed

‎docs/_templates/sidebarintro.html

Copy file name to clipboardExpand all lines: docs/_templates/sidebarintro.html
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ <h3>Useful Links</h3>
6060
<h3>Translations</h3>
6161
<ul>
6262
<li><a href="http://docs.python-guide.org/en/latest/">English</a></li>
63-
<li><a href="http://python-guide-fr.readthedocs.io/fr/latest/">French</a></li>
64-
<li><a href="http://pythonguidecn.readthedocs.org/zh/latest/">Chinese</a></li>
65-
<li><a href="http://python-guide-ja.readthedocs.org/en/latest/">Japanese</a></li>
66-
<li><a href="http://python-guide-kr.readthedocs.org/ko/latest/">Korean</a></li>
63+
<li><a href="https://python-guide-fr.readthedocs.io/fr/latest/">French</a></li>
64+
<li><a href="https://pythonguidecn.readthedocs.io/zh/latest/">Chinese</a></li>
65+
<li><a href="https://python-guide-ja.readthedocs.io/en/latest/">Japanese</a></li>
66+
<li><a href="https://python-guide-kr.readthedocs.io/ko/latest/">Korean</a></li>
6767
</ul>

‎docs/_templates/sidebarlogo.html

Copy file name to clipboardExpand all lines: docs/_templates/sidebarlogo.html
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ <h3>Other Projects</h3>
4242
<h3>Translations</h3>
4343
<ul>
4444
<li><a href="http://docs.python-guide.org/en/latest/">English</a></li>
45-
<li><a href="http://python-guide-fr.readthedocs.io/fr/latest/">French</a></li>
46-
<li><a href="http://pythonguidecn.readthedocs.org/zh/latest/">Chinese</a></li>
47-
<li><a href="http://python-guide-ja.readthedocs.org/en/latest/">Japanese</a></li>
48-
<li><a href="http://python-guide-kr.readthedocs.org/ko/latest/">Korean</a></li>
45+
<li><a href="https://python-guide-fr.readthedocs.io/fr/latest/">French</a></li>
46+
<li><a href="https://pythonguidecn.readthedocs.io/zh/latest/">Chinese</a></li>
47+
<li><a href="https://python-guide-ja.readthedocs.io/en/latest/">Japanese</a></li>
48+
<li><a href="https://python-guide-kr.readthedocs.io/ko/latest/">Korean</a></li>
4949
</ul>

‎docs/dev/virtualenvs.rst

Copy file name to clipboardExpand all lines: docs/dev/virtualenvs.rst
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ control by adding it to the ignore list.
122122
virtualenvwrapper
123123
-----------------
124124

125-
`virtualenvwrapper <http://virtualenvwrapper.readthedocs.org/en/latest/index.html>`_
125+
`virtualenvwrapper <https://virtualenvwrapper.readthedocs.io/en/latest/index.html>`_
126126
provides a set of commands which makes working with virtual environments much
127127
more pleasant. It also places all your virtual environments in one place.
128128

@@ -134,7 +134,7 @@ To install (make sure **virtualenv** is already installed):
134134
$ export WORKON_HOME=~/Envs
135135
$ source /usr/local/bin/virtualenvwrapper.sh
136136
137-
(`Full virtualenvwrapper install instructions <http://virtualenvwrapper.readthedocs.org/en/latest/install.html>`_.)
137+
(`Full virtualenvwrapper install instructions <https://virtualenvwrapper.readthedocs.io/en/latest/install.html>`_.)
138138

139139
For Windows, you can use the `virtualenvwrapper-win <https://github.com/davidmarble/virtualenvwrapper-win/>`_.
140140

@@ -206,7 +206,7 @@ Other useful commands
206206
``lssitepackages``
207207
Shows contents of :file:`site-packages` directory.
208208

209-
`Full list of virtualenvwrapper commands <http://virtualenvwrapper.readthedocs.org/en/latest/command_ref.html>`_.
209+
`Full list of virtualenvwrapper commands <https://virtualenvwrapper.readthedocs.io/en/latest/command_ref.html>`_.
210210

211211
virtualenv-burrito
212212
------------------

‎docs/intro/learning.rst

Copy file name to clipboardExpand all lines: docs/intro/learning.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ without having to install Python locally.
3838
If you want a more traditional book, *Python For You and Me* is an excellent
3939
resource for learning all aspects of the language.
4040

41-
`Python for You and Me <http://pymbook.readthedocs.org/>`_
41+
`Python for You and Me <https://pymbook.readthedocs.io/>`_
4242

4343
Online Python Tutor
4444
~~~~~~~~~~~~~~~~~~~

‎docs/scenarios/ci.rst

Copy file name to clipboardExpand all lines: docs/scenarios/ci.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ automate the compile/test cycle to validate code changes.
3535
Tox
3636
---
3737

38-
`tox <http://tox.readthedocs.org/en/latest/>`_ is an automation tool providing
38+
`tox <https://tox.readthedocs.io/en/latest/>`_ is an automation tool providing
3939
packaging, testing and deployment of Python software right from the console or
4040
CI server. It is a generic virtualenv management and test command line tool
4141
which provides the following features:

‎docs/scenarios/clibs.rst

Copy file name to clipboardExpand all lines: docs/scenarios/clibs.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Interfacing with C/C++ Libraries
44
C Foreign Function Interface
55
----------------------------
66

7-
`CFFI <https://cffi.readthedocs.org/en/latest/>`_ provides a simple to use
7+
`CFFI <https://cffi.readthedocs.io/en/latest/>`_ provides a simple to use
88
mechanism for interfacing with C from both CPython and PyPy. It supports two
99
modes: an inline ABI compatibility mode (example provided below), which allows
1010
you to dynamically load and run functions from executable modules (essentially

‎docs/scenarios/db.rst

Copy file name to clipboardExpand all lines: docs/scenarios/db.rst
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ peewee
6060
`peewee <http://docs.peewee-orm.com/en/latest/>`_ is another ORM with a focus
6161
on being lightweight with support for Python 2.6+ and 3.2+ which supports
6262
SQLite, MySQL and Postgres by default. The
63-
`model layer <https://peewee.readthedocs.org/en/latest/peewee/quickstart.html#model-definition>`_
63+
`model layer <https://peewee.readthedocs.io/en/latest/peewee/quickstart.html#model-definition>`_
6464
is similar to that of the Django ORM and it has
65-
`SQL-like methods <https://peewee.readthedocs.org/en/latest/peewee/quickstart.html#retrieving-data>`_
65+
`SQL-like methods <https://peewee.readthedocs.io/en/latest/peewee/quickstart.html#retrieving-data>`_
6666
to query data. While SQLite, MySQL and Postgres are supported out-of-the-box,
67-
there is a `collection of add-ons <https://peewee.readthedocs.org/en/latest/peewee/playhouse.html#playhouse>`_
67+
there is a `collection of add-ons <https://peewee.readthedocs.io/en/latest/peewee/playhouse.html#playhouse>`_
6868
available.
6969

7070
PonyORM

‎docs/scenarios/gui.rst

Copy file name to clipboardExpand all lines: docs/scenarios/gui.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ applications be ported from PyGTK to PyGObject.
2828
PyGObject aka (PyGi)
2929
--------------------
3030
`PyGObject <https://wiki.gnome.org/Projects/PyGObject>`_ provides Python bindings, which gives access to the entire GNOME software platform.
31-
It is fully compatible with GTK+ 3. Here is a tutorial to get started with `Python GTK+ 3 Tutorial <http://python-gtk-3-tutorial.readthedocs.org/en/latest/>`_.
31+
It is fully compatible with GTK+ 3. Here is a tutorial to get started with `Python GTK+ 3 Tutorial <https://python-gtk-3-tutorial.readthedocs.io/en/latest/>`_.
3232

3333
`API Reference <http://lazka.github.io/pgi-docs/>`_
3434

‎docs/scenarios/imaging.rst

Copy file name to clipboardExpand all lines: docs/scenarios/imaging.rst
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Installation
2424

2525
Before installing Pillow, you'll have to install Pillow's prerequisites. Find
2626
the instructions for your platform in the
27-
`Pillow installation instructions <https://pillow.readthedocs.org/en/3.0.0/installation.html>`_.
27+
`Pillow installation instructions <https://pillow.readthedocs.io/en/3.0.0/installation.html>`_.
2828

2929
After that, it's straightforward:
3030

@@ -57,7 +57,7 @@ Example
5757
exif_data
5858
5959
There are more examples of the Pillow library in the
60-
`Pillow tutorial <http://pillow.readthedocs.org/en/3.0.x/handbook/tutorial.html>`_.
60+
`Pillow tutorial <https://pillow.readthedocs.io/en/3.0.x/handbook/tutorial.html>`_.
6161

6262

6363
OpenSource Computer Vision
@@ -104,4 +104,4 @@ Example
104104
105105
There are more Python-implemented examples of OpenCV in this `collection of
106106
tutorials
107-
<http://opencv-python-tutroals.readthedocs.org/en/latest/py_tutorials/py_tutorials.html>`_.
107+
<https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.html>`_.

‎docs/scenarios/json.rst

Copy file name to clipboardExpand all lines: docs/scenarios/json.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ simplejson
4747

4848
The JSON library was added to Python in version 2.6.
4949
If you're using an earlier version of Python, the
50-
`simplejson <https://simplejson.readthedocs.org/en/latest/>`_ library is
50+
`simplejson <https://simplejson.readthedocs.io/en/latest/>`_ library is
5151
available via PyPI.
5252

5353
simplejson mimics the json standard library. It is available so that developers

‎docs/scenarios/web.rst

Copy file name to clipboardExpand all lines: docs/scenarios/web.rst
+7-7Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ Gunicorn is the recommended choice for new Python web applications today.
154154
Waitress
155155
--------
156156

157-
`Waitress <http://waitress.readthedocs.org>`_ is a pure-python WSGI server
157+
`Waitress <https://waitress.readthedocs.io>`_ is a pure-python WSGI server
158158
that claims "very acceptable performance". Its documentation is not very
159159
detailed, but it does offer some nice functionality that Gunicorn doesn't have
160160
(e.g. HTTP request buffering).
@@ -166,18 +166,18 @@ Waitress is gaining popularity within the Python web development community.
166166
uWSGI
167167
-----
168168

169-
`uWSGI <https://uwsgi-docs.readthedocs.org>`_ is a full stack for building
169+
`uWSGI <https://uwsgi-docs.readthedocs.io>`_ is a full stack for building
170170
hosting services. In addition to process management, process monitoring,
171171
and other functionality, uWSGI acts as an application server for various
172172
programming languages and protocols - including Python and WSGI. uWSGI can
173173
either be run as a stand-alone web router, or be run behind a full web
174174
server (such as Nginx or Apache). In the latter case, a web server can
175175
configure uWSGI and an application's operation over the
176-
`uwsgi protocol <https://uwsgi-docs.readthedocs.org/en/latest/Protocol.html>`_.
176+
`uwsgi protocol <https://uwsgi-docs.readthedocs.io/en/latest/Protocol.html>`_.
177177
uWSGI's web server support allows for dynamically configuring
178178
Python, passing environment variables and further tuning. For full details,
179179
see `uWSGI magic
180-
variables <https://uwsgi-docs.readthedocs.org/en/latest/Vars.html>`_.
180+
variables <https://uwsgi-docs.readthedocs.io/en/latest/Vars.html>`_.
181181

182182
I do not recommend using uWSGI unless you know why you need it.
183183

@@ -393,10 +393,10 @@ Jinja2 is the recommended templating library for new Python web applications.
393393
Chameleon
394394
---------
395395

396-
`Chameleon <https://chameleon.readthedocs.org/>`_ Page Templates are an HTML/XML template
396+
`Chameleon <https://chameleon.readthedocs.io/>`_ Page Templates are an HTML/XML template
397397
engine implementation of the `Template Attribute Language (TAL) <http://en.wikipedia.org/wiki/Template_Attribute_Language>`_,
398-
`TAL Expression Syntax (TALES) <http://chameleon.readthedocs.org/en/latest/reference.html#expressions-tales>`_,
399-
and `Macro Expansion TAL (Metal) <http://chameleon.readthedocs.org/en/latest/reference.html#macros-metal>`_ syntaxes.
398+
`TAL Expression Syntax (TALES) <https://chameleon.readthedocs.io/en/latest/reference.html#expressions-tales>`_,
399+
and `Macro Expansion TAL (Metal) <https://chameleon.readthedocs.io/en/latest/reference.html#macros-metal>`_ syntaxes.
400400

401401
Chameleon is available for Python 2.5 and up (including 3.x and pypy), and
402402
is commonly used by the `Pyramid Framework <http://trypyramid.com>`_.

‎docs/shipping/packaging.rst

Copy file name to clipboardExpand all lines: docs/shipping/packaging.rst
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ and being able and willing to use tools such as pip to install your code's
2525
other dependencies. This is fine when distributing to other developers, but
2626
makes this method unsuitable for distributing applications to end-users.
2727

28-
The `Python Packaging Guide <https://python-packaging-user-guide.readthedocs.org/en/latest/>`_
28+
The `Python Packaging Guide <https://python-packaging-user-guide.readthedocs.io/>`_
2929
provides an extensive guide on creating and maintaining Python packages.
3030

3131
Alternatives to Packaging
@@ -184,4 +184,4 @@ Useful Tools
184184

185185
- `fpm <https://github.com/jordansissel/fpm>`_
186186
- `alien <http://joeyh.name/code/alien/>`_
187-
- `dh-virtualenv <http://dh-virtualenv.readthedocs.io/en/latest/info.html>`_ (for APT/DEB omnibus packaging)
187+
- `dh-virtualenv <https://dh-virtualenv.readthedocs.io/en/latest/info.html>`_ (for APT/DEB omnibus packaging)

‎docs/starting/install/osx.rst

Copy file name to clipboardExpand all lines: docs/starting/install/osx.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ software over a network (usually the Internet) with a single command
7777
capability to your own Python software with very little work.
7878

7979
``pip`` is a tool for easily installing and managing Python packages,
80-
that is recommended over ``easy_install``. It is superior to ``easy_install`` in `several ways <https://python-packaging-user-guide.readthedocs.org/en/latest/pip_easy_install/#pip-vs-easy-install>`_,
80+
that is recommended over ``easy_install``. It is superior to ``easy_install`` in `several ways <https://python-packaging-user-guide.readthedocs.io/pip_easy_install/#pip-vs-easy-install>`_,
8181
and is actively maintained.
8282

8383

‎docs/writing/tests.rst

Copy file name to clipboardExpand all lines: docs/writing/tests.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ nose provides automatic test discovery to save you the hassle of manually
202202
creating test suites. It also provides numerous plugins for features such as
203203
xUnit-compatible test output, coverage reporting, and test selection.
204204

205-
`nose <http://readthedocs.org/docs/nose/en/latest/>`_
205+
`nose <https://nose.readthedocs.io/en/latest/>`_
206206

207207

208208
tox

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.