10000 Fix remaining links in docs by dstansby · Pull Request #13861 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Fix remaining links in docs #13861

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 3, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion INSTALL.rst
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Third-party distributions of Matplotlib
Scientific Python Distributions
-------------------------------

`Anaconda <https://www.continuum.io/downloads/>`_ and `Canopy
`Anaconda <https://www.anaconda.com/>`_ and `Canopy
<https://www.enthought.com/products/canopy/>`_ and `ActiveState
<https://www.activestate.com/activepython/downloads>`_ are excellent
choices that "just work" out of the box for Windows, macOS and common
Expand Down
4 changes: 2 additions & 2 deletions doc/devel/MEP/MEP14.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ has a number of shortcomings.
Supporting these things is difficult, and is the "full-time job" of a
number of other projects:

- `pango <http://www.pango.org/>`_/`harfbuzz
- `pango <https://www.pango.org/>`_/`harfbuzz
<https://www.freedesktop.org/wiki/Software/HarfBuzz/>`_
- `QtTextLayout
<http://doc.qt.io/qt-4.8/qtextlayout.html>`_
<https://doc.qt.io/archives/qt-4.8/qtextlayout.html>`_
- `Microsoft DirectWrite
<https://msdn.microsoft.com/en-us/library/windows/desktop/dd371554(v=vs.85).aspx>`_
- `Apple Core Text
Expand Down
2 changes: 1 addition & 1 deletion doc/devel/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ environment to build Matplotlib from source.
To work on Matplotlib sources, it is strongly recommended to set up an alternative
development environment, using the something like `virtual environments in python
<http://docs.python-guide.org/en/latest/dev/virtualenvs/>`_, or a
`conda environment <http://conda.pydata.org/docs/using/envs.html>`_.
`conda environment <https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html>`_.

If you choose to use an already existing environment, and not a clean virtual or
conda environment, uninstall the current version of Matplotlib in that environment
Expand Down
2 changes: 1 addition & 1 deletion doc/devel/documenting_mpl.rst
Original file line number Diff line number Diff line change
Expand Up @@ -901,7 +901,7 @@ Some helpful functions::

.. _ReST: http://docutils.sourceforge.net/rst.html
.. _Sphinx: http://www.sphinx-doc.org
.. _documentation: http://www.sphinx-doc.org/contents.html
.. _documentation: https://www.sphinx-doc.org/en/master/contents.html
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe

Suggested change
.. _documentation: https://www.sphinx-doc.org/en/master/contents.html
.. _documentation: https://www.sphinx-doc.org/en/stable/contents.html

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wondered about that, but https://www.sphinx-doc.org redirects to the master version

.. _`inline markup`: http://www.sphinx-doc.org/markup/inline.html
.. _index: http://www.sphinx-doc.org/markup/para.html#index-generating-markup
.. _`Sphinx Gallery`: https://sphinx-gallery.readthedocs.io/en/latest/
Expand Down
14 changes: 7 additions & 7 deletions doc/faq/installing_faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Report a compilation problem

See :ref:`reporting-problems`.

matplotlib compiled fine, but nothing shows up when I use it
Matplotlib compiled fine, but nothing shows up when I use it
============================================================

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

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

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

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

Expand Down Expand Up @@ -84,7 +84,7 @@ excellent Python scientific software collections that are now available:
- Canopy_ from Enthought_

.. _Canopy: https://www.enthought.com/products/canopy/
.. _Anaconda: https://www.continuum.io/downloads
.. _Anaconda: https://www.anaconda.com/
.. _Enthought: https://www.enthought.com
.. _Continuum Analytics: https://www.continuum.io

Expand Down Expand Up @@ -195,7 +195,7 @@ and build and install as usual with::
sudo apt-get build-dep python-matplotlib

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

su -c 'yum-builddep python-matplotlib'

Expand All @@ -215,7 +215,7 @@ places.

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

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

git pull

Expand Down
2 changes: 1 addition & 1 deletion doc/faq/troubleshooting_faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ provide the following information in your e-mail to the `mailing list
python -c "import matplotlib; print matplotlib.__version__"

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

* Any customizations to your ``matplotlibrc`` file (see
Expand Down
3 changes: 1 addition & 2 deletions doc/glossary/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ Glossary
library used by matplotlib which supports TrueType, Type 1, and
OpenType fonts.


GDK
The Gimp Drawing Kit for GTK+

Expand Down Expand Up @@ -88,7 +87,7 @@ Glossary
application framework for desktop and embedded development.

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

Expand Down
6 changes: 1 addition & 5 deletions doc/resources/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,10 @@
by John Hunter and Michael Droettboom in The Architecture of Open Source
Applications

* `Graphics with Matplotlib
<http://kes 10000 trel.nmt.edu/~raymond/software/python_notes/paper004.html>`_
by David J. Raymond

* `Ten Simple Rules for Better Figures
<http://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1003833>`_
by Nicolas P. Rougier, Michael Droettboom and Philip E. Bourne

* `Learning Scientific Programming with Python chapter 7
<http://scipython.com/book/chapter-7-matplotlib/>`_
by Christian Hill
Expand Down
2 changes: 1 addition & 1 deletion doc/users/prev_whats_new/whats_new_2.2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ TkAgg backend reworked to support PyPy
PyPy_ can now plot using the TkAgg backend, supported on PyPy 5.9
and greater (both PyPy for python 2.7 and PyPy for python 3.5).

.. _PyPy: https:/www.pypy.org
.. _PyPy: https://www.pypy.org/



Expand Down
2 changes: 1 addition & 1 deletion examples/style_sheets/ggplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

.. [1] https://web.archive.org/web/20111215111010/http://www.huyng.com/archives/sane-color-scheme-for-matplotlib/691/

.. _ggplot: http://ggplot2.org/
.. _ggplot: https://ggplot2.tidyverse.org/
.. _R: https://www.r-project.org/

"""
Expand Down
0