Skip to content

Commit 8cddc00

Browse files
authored
Merge pull request #3063 from bacboc/feature
Fix broken link
2 parents bd55f7f + 7e054a7 commit 8cddc00

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

docs/source/changelog.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ There is a new cell toolbar for adding *cell tags* (:ghpull:`2048`):
145145

146146
Cell tags are a lightweight way to customise the behaviour of tools working with
147147
notebooks; we're working on building support for them into tools like `nbconvert
148-
<http://nbconvert.readthedocs.io/en/latest/>`__ and `nbval
148+
<https://nbconvert.readthedocs.io/en/latest/>`__ and `nbval
149149
<https://github.com/computationalmodelling/nbval>`__. To start using tags,
150150
select ``Tags`` in the ``View > Cell Toolbar`` menu in a notebook.
151151

@@ -226,7 +226,7 @@ Other additions
226226
extensions(:ghpull:`2108`).
227227

228228
- The notebook server now supports the `bundler API
229-
<http://jupyter-notebook.readthedocs.io/en/latest/extending/bundler_extensions.html>`__
229+
<https://jupyter-notebook.readthedocs.io/en/latest/extending/bundler_extensions.html>`__
230230
from the `jupyter_cms incubator project
231231
<https://github.com/jupyter-incubator/contentmanagement>`__ (:ghpull:`1579`).
232232

docs/source/links.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
.. _notebook_p1: https://nbviewer.jupyter.org/github/jupyter/notebook/blob/master/docs/source/examples/Notebook/Running%20Code.ipynb
2626

2727
.. Other python projects
28-
.. _matplotlib: http://matplotlib.org
29-
.. _nbviewer: http://nbviewer.jupyter.org
28+
.. _matplotlib: https://matplotlib.org
29+
.. _nbviewer: https://nbviewer.jupyter.org
3030
.. _nbconvert: https://nbconvert.readthedocs.io/en/latest/
3131

3232
.. Other tools and projects

docs/source/notebook.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ drop-down on the toolbar (which will be "Code", initially), or via
219219

220220
For more information on the different things you can do in a notebook,
221221
see the `collection of examples
222-
<http://nbviewer.jupyter.org/github/jupyter/notebook/tree/master/docs/source/examples/Notebook/>`_.
222+
<https://nbviewer.jupyter.org/github/jupyter/notebook/tree/master/docs/source/examples/Notebook/>`_.
223223

224224
Code cells
225225
~~~~~~~~~~
@@ -266,7 +266,7 @@ the LaTeX portions are automatically rendered in the HTML output as equations
266266
with high quality typography. This is made possible by MathJax_, which
267267
supports a `large subset <mathjax_tex>`_ of LaTeX functionality
268268

269-
.. _mathjax_tex: http://docs.mathjax.org/en/latest/tex.html
269+
.. _mathjax_tex: https://docs.mathjax.org/en/latest/tex.html
270270

271271
Standard mathematics environments defined by LaTeX and AMS-LaTeX (the
272272
`amsmath` package) also work, such as
@@ -373,7 +373,7 @@ Installing kernels
373373
------------------
374374

375375
For information on how to install a Python kernel, refer to the
376-
`IPython install page <http://ipython.org/install.html>`__.
376+
`IPython install page <https://ipython.org/install.html>`__.
377377

378378
Kernels for other languages can be found in the `IPython wiki
379379
<https://github.com/ipython/ipython/wiki/IPython%20kernels%20for%20other%20languages>`_.

docs/source/template.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
{% macro notebooklink() -%}
44

5-
`View the original notebook on nbviewer <http://nbviewer.jupyter.org/github/jupyter/notebook/blob/master/docs/{{ resources['metadata']['path'] }}/{{ resources['metadata']['name'] | replace(' ', '%20') }}.ipynb>`__
5+
`View the original notebook on nbviewer <https://nbviewer.jupyter.org/github/jupyter/notebook/blob/master/docs/{{ resources['metadata']['path'] }}/{{ resources['metadata']['name'] | replace(' ', '%20') }}.ipynb>`__
66

77

88
{%- endmacro %}

notebook/nbextensions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1018,7 +1018,7 @@ def _should_copy(src, dest, logger=None):
10181018
return True
10191019
if os.stat(src).st_mtime - os.stat(dest).st_mtime > 1e-6:
10201020
# we add a fudge factor to work around a bug in python 2.x
1021-
# that was fixed in python 3.x: http://bugs.python.org/issue12904
1021+
# that was fixed in python 3.x: https://bugs.python.org/issue12904
10221022
if logger:
10231023
logger.warn("Out of date: %s" % dest)
10241024
return True

notebook/notebookapp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1579,7 +1579,7 @@ def start(self):
15791579
info(_("Welcome to Project Jupyter! Explore the various tools available"
15801580
" and their corresponding documentation. If you are interested"
15811581
" in contributing to the platform, please visit the community"
1582-
"resources section at http://jupyter.org/community.html."))
1582+
"resources section at https://jupyter.org/community.html."))
15831583

15841584
self.write_server_info_file()
15851585

0 commit comments

Comments
 (0)