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 440605e

Browse filesBrowse files
authored
Merge pull request #9148 from dstansby/broken-links
DOC: Fix some broken links
2 parents 715259f + 3a5a4d3 commit 440605e
Copy full SHA for 440605e

File tree

Expand file treeCollapse file tree

10 files changed

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

10 files changed

+10
-10
lines changed

‎doc/devel/MEP/MEP29.rst

Copy file name to clipboardExpand all lines: doc/devel/MEP/MEP29.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Improvements
5252
to use the html.parser from the standard library.
5353

5454
* Computation of text fragment positions could benefit from the OffsetFrom
55-
class. See for example item 5 in `Using Complex Coordinates with Annotations <http://matplotlib.org/devdocs/users/annotations.html#using-complex-coordinates-with-annotations>`_
55+
class. See for example item 5 in `Using Complex Coordinates with Annotations <http://matplotlib.org/devdocs/tutorials/text/annotations.html#using-complex-coordinates-with-annotations>`_
5656

5757
Problems
5858
--------

‎doc/devel/gitwash/git_links.inc

Copy file name to clipboardExpand all lines: doc/devel/gitwash/git_links.inc
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
.. _git-osx-installer: https://git-scm.com/download/mac
1717
.. _subversion: http://subversion.tigris.org/
1818
.. _git cheat sheet: https://help.github.com/git-cheat-sheets/
19-
.. _pro git book: https://progit.org/
19+
.. _pro git book: https://git-scm.com/book/en/v2
2020
.. _git svn crash course: https://git-scm.com/course/svn.html
2121
.. _network graph visualizer: https://github.com/blog/39-say-hello-to-the-network-graph-visualizer
2222
.. _git user manual: https://schacon.github.io/git/user-manual.html

‎doc/devel/testing.rst

Copy file name to clipboardExpand all lines: doc/devel/testing.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Matplotlib's testing infrastructure depends on pytest_. The tests are in
99
infrastructure are in :mod:`matplotlib.testing`.
1010

1111
.. _pytest: http://doc.pytest.org/en/latest/
12-
.. _mock: https://docs.python.org/dev/library/unittest.mock.html>
12+
.. _mock: https://docs.python.org/3/library/unittest.mock.html>
1313
.. _Ghostscript: https://www.ghostscript.com/
1414
.. _Inkscape: https://inkscape.org
1515
.. _pytest-cov: https://pytest-cov.readthedocs.io/en/latest/

‎doc/users/dflt_style_changes.rst

Copy file name to clipboardExpand all lines: doc/users/dflt_style_changes.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ The default font has changed from "Bitstream Vera Sans" to "DejaVu
689689
Sans". DejaVu Sans has additional international and math characters,
690690
but otherwise has the same appearance as Bitstream Vera Sans.
691691
Latin, Greek, Cyrillic, Armenian, Georgian, Hebrew, and Arabic are
692-
`all supported <http://dejavu-fonts.org/wiki/Main_Page>`__
692+
`all supported <https://dejavu-fonts.github.io/>`__
693693
(but right-to-left rendering is still not handled by matplotlib).
694694
In addition, DejaVu contains a sub-set of emoji symbols.
695695

‎doc/users/prev_whats_new/whats_new_1.4.rst

Copy file name to clipboardExpand all lines: doc/users/prev_whats_new/whats_new_1.4.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ Cairo backends
370370
The Cairo backends are now able to use the `cairocffi bindings
371371
<https://github.com/SimonSapin/cairocffi>`__ which are more actively
372372
maintained than the `pycairo bindings
373-
<http://cairographics.org/pycairo/>`__.
373+
<https://www.cairographics.org/pycairo/>`__.
374374

375375
Gtk3Agg backend
376376
```````````````

‎examples/style_sheets/ggplot.py

Copy file name to clipboardExpand all lines: examples/style_sheets/ggplot.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
These settings were shamelessly stolen from [1]_ (with permission).
1010
11-
.. [1] http://www.huyng.com/posts/sane-color-scheme-for-matplotlib/
11+
.. [1] https://web.archive.org/web/20111215111010/http://www.huyng.com/archives/sane-color-scheme-for-matplotlib/691/
1212
1313
.. _ggplot: http://ggplot2.org/
1414
.. _R: https://www.r-project.org/

‎examples/ticks_and_spines/custom_ticker1.py

Copy file name to clipboardExpand all lines: examples/ticks_and_spines/custom_ticker1.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
The new ticker code was designed to explicitly support user customized
77
ticking. The documentation
8-
http://matplotlib.org/matplotlib.ticker.html details this
8+
http://matplotlib.org/api/ticker_api.html#module-matplotlib.ticker details this
99
process. That code defines a lot of preset tickers but was primarily
1010
designed to be user extensible.
1111

‎examples/ticks_and_spines/date_demo_rrule.py

Copy file name to clipboardExpand all lines: examples/ticks_and_spines/date_demo_rrule.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Show how to use an rrule instance to make a custom date ticker - here
77
we put a tick mark on every 5th easter
88
9-
See https://moin.conectiva.com.br/DateUtil for help with rrules
9+
See https://dateutil.readthedocs.io/en/stable/ for help with rrules
1010
"""
1111
import matplotlib.pyplot as plt
1212
from matplotlib.dates import (YEARLY, DateFormatter,

‎examples/user_interfaces/embedding_in_wx3_sgskip.py

Copy file name to clipboardExpand all lines: examples/user_interfaces/embedding_in_wx3_sgskip.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
License: This work is licensed under the PSF. A copy should be included
99
with this source code, and is also available at
10-
http://www.python.org/psf/license.html
10+
https://docs.python.org/3/license.html
1111
1212
This is yet another example of using matplotlib with wx. Hopefully
1313
this is pretty full-featured:

‎tutorials/text/usetex.py

Copy file name to clipboardExpand all lines: tutorials/text/usetex.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,5 +161,5 @@
161161
.. _Ghostscript: https://ghostscript.com/
162162
.. _PSNFSS: http://www.ctan.org/tex-archive/macros/latex/required/psnfss/psnfss2e.pdf
163163
.. _Poppler: https://poppler.freedesktop.org/
164-
.. _Xpdf: http://www.foolabs.com/xpdf
164+
.. _Xpdf: http://www.xpdfreader.com/
165165
"""

0 commit comments

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