Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 29cc718

Browse files
authored
DOC: Use https for readthedocs.io
1 parent 852a6b2 commit 29cc718

10 files changed

Lines changed: 14 additions & 14 deletions

File tree

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import sys, os
1919
from pathlib import Path
2020

21-
# http://read-the-docs.readthedocs.io/en/latest/faq.html
21+
# https://read-the-docs.readthedocs.io/en/latest/faq.html
2222
ON_RTD = os.environ.get('READTHEDOCS', None) == 'True'
2323

2424
if ON_RTD:

docs/source/config/custommagics.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ Complete Example
151151

152152
Here is a full example of a magic package. You can distribute magics using
153153
setuptools, distutils, or any other distribution tools like `flit
154-
<http://flit.readthedocs.io>`_ for pure Python packages.
154+
<https://flit.readthedocs.io>`_ for pure Python packages.
155155

156156
When distributing magics as part of a package, recommended best practice is to
157157
execute the registration inside the `load_ipython_extension` as demonstrated in

docs/source/config/integrating.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Rarely, you might want to display a custom traceback when reporting an
103103
exception. To do this, define the custom traceback using
104104
`_render_traceback_(self)` method which returns a list of strings, one string
105105
for each line of the traceback. For example, the `ipyparallel
106-
<http://ipyparallel.readthedocs.io/>`__ a parallel computing framework for
106+
<https://ipyparallel.readthedocs.io/>`__ a parallel computing framework for
107107
IPython, does this to display errors from multiple engines.
108108

109109
Please be conservative in using this feature; by replacing the default traceback

docs/source/development/wrapperkernels.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ You can now re-use the kernel machinery in IPython to easily make new kernels.
77
This is useful for languages that have Python bindings, such as `Octave
88
<http://www.gnu.org/software/octave/>`_ (via
99
`Oct2Py <http://blink1073.github.io/oct2py/>`_), or languages
10-
where the REPL can be controlled in a tty using `pexpect <http://pexpect.readthedocs.io/en/latest/>`_,
10+
where the REPL can be controlled in a tty using `pexpect <https://pexpect.readthedocs.io/en/latest/>`_,
1111
such as bash.
1212

1313
.. seealso::

docs/source/index.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ features:
5757

5858
The Command line interface inherits the above functionality and adds
5959

60-
* real multi-line editing thanks to `prompt_toolkit <http://python-prompt-toolkit.readthedocs.io/en/stable/>`_.
60+
* real multi-line editing thanks to `prompt_toolkit <https://python-prompt-toolkit.readthedocs.io/en/stable/>`_.
6161

6262
* syntax highlighting as you type.
6363

@@ -69,7 +69,7 @@ it allows:
6969
* the object to create a rich display of Html, Images, Latex, Sound and
7070
Video.
7171

72-
* interactive widgets with the use of the `ipywidgets <http://ipywidgets.readthedocs.io/en/stable/>`_ package.
72+
* interactive widgets with the use of the `ipywidgets <https://ipywidgets.readthedocs.io/en/stable/>`_ package.
7373

7474

7575
This documentation will walk you through most of the features of the IPython
@@ -102,9 +102,9 @@ repository <http://github.com/ipython/ipython>`_.
102102

103103
.. seealso::
104104

105-
`Jupyter documentation <http://jupyter.readthedocs.io/en/latest/>`__
105+
`Jupyter documentation <https://jupyter.readthedocs.io/en/latest/>`__
106106
The Jupyter documentation provides information about the Notebook code and other Jupyter sub-projects.
107-
`ipyparallel documentation <http://ipyparallel.readthedocs.io/en/latest/>`__
107+
`ipyparallel documentation <https://ipyparallel.readthedocs.io/en/latest/>`__
108108
Formerly ``IPython.parallel``.
109109

110110

docs/source/install/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ for more help see
5151
5252
.. seealso::
5353

54-
`Installing Jupyter <http://jupyter.readthedocs.io/en/latest/install.html>`__
54+
`Installing Jupyter <https://jupyter.readthedocs.io/en/latest/install.html>`__
5555
The Notebook, nbconvert, and many other former pieces of IPython are now
5656
part of Project Jupyter.
5757

docs/source/interactive/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ done some work in the classic Python REPL.
2929
.. seealso::
3030

3131
`A Qt Console for Jupyter <https://jupyter.org/qtconsole/>`__
32-
`The Jupyter Notebook <http://jupyter-notebook.readthedocs.io/en/latest/>`__
32+
`The Jupyter Notebook <https://jupyter-notebook.readthedocs.io/en/latest/>`__

docs/source/overview.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ different numbers which correspond to the Process ID of the kernel.
219219

220220
You can read more about using `jupyter qtconsole
221221
<https://jupyter.org/qtconsole/>`_, and
222-
`jupyter notebook <http://jupyter-notebook.readthedocs.io/en/latest/>`_. There
222+
`jupyter notebook <https://jupyter-notebook.readthedocs.io/en/latest/>`_. There
223223
is also a :ref:`message spec <messaging>` which documents the protocol for
224224
communication between kernels
225225
and clients.
@@ -234,7 +234,7 @@ Interactive parallel computing
234234

235235

236236
This functionality is optional and now part of the `ipyparallel
237-
<http://ipyparallel.readthedocs.io/>`_ project.
237+
<https://ipyparallel.readthedocs.io/>`_ project.
238238

239239
Portability and Python requirements
240240
-----------------------------------

docs/source/whatsnew/github-stats-1.0.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1099,7 +1099,7 @@ Pull Requests (793):
10991099
* :ghpull:`2274`: CLN: Use name to id mapping of notebooks instead of searching.
11001100
* :ghpull:`2270`: SSHLauncher tweaks
11011101
* :ghpull:`2269`: add missing location when disambiguating controller IP
1102-
* :ghpull:`2263`: Allow docs to build on http://readthedocs.io/
1102+
* :ghpull:`2263`: Allow docs to build on https://readthedocs.io/
11031103
* :ghpull:`2256`: Adding data publication example notebook.
11041104
* :ghpull:`2255`: better flush iopub with AsyncResults
11051105
* :ghpull:`2261`: Fix: longest_substr([]) -> ''

docs/source/whatsnew/version5.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ and tab completions that don't clutter up your history.
307307
:target: ../_images/ptshell_features.png
308308

309309
These features are provided by the Python library `prompt_toolkit
310-
<http://python-prompt-toolkit.readthedocs.io/en/stable/>`__, which replaces
310+
<https://python-prompt-toolkit.readthedocs.io/en/stable/>`__, which replaces
311311
``readline`` throughout our terminal interface.
312312

313313
Relying on this pure-Python, cross platform module also makes it simpler to

0 commit comments

Comments
 (0)