8000 Merge pull request #13861 from dstansby/linkdocs · matplotlib/matplotlib@5879905 · GitHub
[go: up one dir, main page]

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 5879905

Browse files
authored
Merge pull request #13861 from dstansby/linkdocs
Fix remaining links in docs
2 parents 4f41946 + 68a9342 commit 5879905

File tree

10 files changed

+17
-22
lines changed

10 files changed

+17
-22
lines changed

INSTALL.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Third-party distributions of Matplotlib
6464
Scientific Python Distributions
6565
-------------------------------
6666

67-
`Anaconda <https://www.continuum.io/downloads/>`_ and `Canopy
67+
`Anaconda <https://www.anaconda.com/>`_ and `Canopy
6868
<https://www.enthought.com/products/canopy/>`_ and `ActiveState
6969
<https://www.activestate.com/activepython/downloads>`_ are excellent
7070
choices that "just work" out of the box for Windows, macOS and common

doc/devel/MEP/MEP14.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ has a number of shortcomings.
7373
Supporting these things is difficult, and is the "full-time job" of a
7474
number of other projects:
7575

76-
- `pango <http://www.pango.org/>`_/`harfbuzz
76+
- `pango <https://www.pango.org/>`_/`harfbuzz
7777
<https://www.freedesktop.org/wiki/Software/HarfBuzz/>`_
7878
- `QtTextLayout
79-
<http://doc.qt.io/qt-4.8/qtextlayout.html>`_
79+
<https://doc.qt.io/archives/qt-4.8/qtextlayout.html>`_
8080
- `Microsoft DirectWrite
8181
<https://msdn.microsoft.com/en-us/library/windows/desktop/dd371554(v=vs.85).aspx>`_
8282
- `Apple Core Text

doc/devel/contributing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ environment to build Matplotlib from source.
6464
To work on Matplotlib sources, it is strongly recommended to set up an alternative
6565
development environment, using the something like `virtual environments in python
6666
<http://docs.python-guide.org/en/latest/dev/virtualenvs/>`_, or a
67-
`conda environment <http://conda.pydata.org/docs/using/envs.html>`_.
67+
`conda environment <https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html>`_.
6868

6969
If you choose to use an already existing environment, and not a clean virtual or
7070
conda environment, uninstall the current version of Matplotlib in that environment

doc/devel/documenting_mpl.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -901,7 +901,7 @@ Some helpful functions::
901901
902902
.. _ReST: http://docutils.sourceforge.net/rst.html
903903
.. _Sphinx: http://www.sphinx-doc.org
904-
.. _documentation: http://www.sphinx-doc.org/contents.html
904+
.. _documentation: https://www.sphinx-doc.org/en/master/contents.html
905905
.. _`inline markup`: http://www.sphinx-doc.org/markup/inline.html
906906
.. _index: http://www.sphinx-doc.org/markup/para.html#index-generating-markup
907907
.. _`Sphinx Gallery`: https://sphinx-gallery.readthedocs.io/en/latest/

doc/faq/installing_faq.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Report a compilation problem
1212

1313
See :ref:`reporting-problems`.
1414

15-
matplotlib compiled fine, but nothing shows up when I use it
15+
Matplotlib compiled fine, but nothing shows up when I use it
1616
============================================================
1717

1818
The first thing to try is a :ref:`clean install <clean-install>` and see if
@@ -24,11 +24,11 @@ example::
2424

2525
python -c "from pylab import *; plot(); show()" --verbose-helpful
2626

27-
This will give you additional information about which backends matplotlib is
27+
This will give you additional information about which backends Matplotlib is
2828
loading, version information, and more. At this point you might want to make
29-
sure you understand matplotlib's :doc:`configuration </tutorials/introductory/customizing>`
29+
sure you understand Matplotlib's :doc:`configuration </tutorials/introductory/customizing>`
3030
process, governed by the :file:`matplotlibrc` configuration file which contains
31-
instructions within and the concept of the matplotlib backend.
31+
instructions within and the concept of the Matplotlib backend.
3232

3333
If you are still having trouble, see :ref:`reporting-problems`.
3434

@@ -84,7 +84,7 @@ excellent Python scientific software collections that are now available:
8484
- Canopy_ from Enthought_
8585

8686
.. _Canopy: https://www.enthought.com/products/canopy/
87-
.. _Anaconda: https://www.continuum.io/downloads
87+
.. _Anaconda: https://www.anaconda.com/
8888
.. _Enthought: https://www.enthought.com
8989
.. _Continuum Analytics: https://www.continuum.io
9090

@@ -195,7 +195,7 @@ and build and install as usual with::
195195
sudo apt-get build-dep python-matplotlib
196196

197197
If you are on Fedora/RedHat, you can get all the dependencies required to
198-
build matplotlib by first installing ``yum-builddep`` and then running::
198+
build Matplotlib by first installing ``yum-builddep`` and then running::
199199

200200
su -c 'yum-builddep python-matplotlib'
201201

@@ -215,7 +215,7 @@ places.
215215

216216
Windows users please see the :ref:`build_windows` guide.
217217

218-
Then, if you want to update your matplotlib at any time, just do::
218+
Then, if you want to update your Matplotlib at any time, just do::
219219

220220
git pull
221221

doc/faq/troubleshooting_faq.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ provide the following information in your e-mail to the `mailing list
100100
python -c "import matplotlib; print matplotlib.__version__"
101101

102102
* Where you obtained Matplotlib (e.g., your Linux distribution's packages,
103-
Github, PyPi, or `Anaconda <https://www.continuum.io/downloads>`_ or
103+
Github, PyPi, or `Anaconda <https://www.anaconda.com/>`_ or
104104
`Enthought Canopy <https://www.enthought.com/products/canopy/>`_).
105105

106106
* Any customizations to your ``matplotlibrc`` file (see

doc/glossary/index.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ Glossary
2828
library used by matplotlib which supports TrueType, Type 1, and
2929
OpenType fonts.
3030

31-
3231
GDK
3332
The Gimp Drawing Kit for GTK+
3433

@@ -88,7 +87,7 @@ Glossary
8887
application framework for desktop and embedded development.
8988

9089
Qt4
91-
`Qt4 <http://doc.qt.io/qt-4.8/index.html>`__ is the previous,
90+
`Qt4 <https://doc.qt.io/archives/qt-4.8/index.html>`__ is the previous,
9291
but most widely used, version of Qt cross-platform application
9392
framework for desktop and embedded development.
9493

doc/resources/index.rst

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,10 @@
2525
by John Hunter and Michael Droettboom in The Architecture of Open Source
2626
Applications
2727

28-
* `Graphics with Matplotlib
29-
<http://kestrel.nmt.edu/~raymond/software/python_notes/paper004.html>`_
30-
by David J. Raymond
31-
3228
* `Ten Simple Rules for Better Figures
3329
<http://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1003833>`_
3430
by Nicolas P. Rougier, Michael Droettboom and Philip E. Bourne
35-
31+
3632
* `Learning Scientific Programming with Python chapter 7
3733
<http://scipython.com/book/chapter-7-matplotlib/>`_
3834
by Christian Hill

doc/users/prev_whats_new/whats_new_2.2.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ TkAgg backend reworked to support PyPy
325325
PyPy_ can now plot using the TkAgg backend, supported on PyPy 5.9
326326
and greater (both PyPy for python 2.7 and PyPy for python 3.5).
327327

328-
.. _PyPy: https:/www.pypy.org
328+
.. _PyPy: https://www.pypy.org/
329329

330330

331331

examples/style_sheets/ggplot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
1111
.. [1] https://web.archive.org/web/20111215111010/http://www.huyng.com/archives/sane-color-scheme-for-matplotlib/691/
1212
13-
.. _ggplot: http://ggplot2.org/
13+
.. _ggplot: https://ggplot2.tidyverse.org/
1414
.. _R: https://www.r-project.org/
1515
1616
"""

0 commit comments

Comments
 (0)
0