Skip to content

Commit d11b206

Browse files
nschloetimhoffmQuLogic
authored
fix some http: -> https: URLs (matplotlib#20088)
* replace permanent redirects * Update doc/devel/README.txt Co-authored-by: Tim Hoffmann <[email protected]> * fix fontawesome links * fix some links manually * flake8 fixes * fix more links * fix link * fix more links * Update lib/matplotlib/backends/backend_ps.py Co-authored-by: Elliott Sales de Andrade <[email protected]> * fix stackexchange links * another http->https * fix missing closing bracket Co-authored-by: Tim Hoffmann <[email protected]> Co-authored-by: Elliott Sales de Andrade <[email protected]>
1 parent 9385642 commit d11b206

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+133
-132
lines changed

INSTALL.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Matplotlib is part of major Python distributions:
6565
- `Anaconda <https://www.anaconda.com/>`_
6666

6767
- `ActiveState ActivePython
68-
<https://www.activestate.com/activepython/downloads>`_
68+
<https://www.activestate.com/products/python/downloads/>`_
6969

7070
- `WinPython <https://winpython.github.io/>`_
7171

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
.. |Codecov| image:: https://codecov.io/github/matplotlib/matplotlib/badge.svg?branch=master&service=github
1717
.. _Codecov: https://codecov.io/github/matplotlib/matplotlib?branch=master
1818

19-
.. |LGTM| image:: https://img.shields.io/lgtm/grade/python/g/matplotlib/matplotlib.svg?logo=lgtm&logoWidth=18
19+
.. |LGTM| image:: https://img.shields.io/lgtm/grade/python/github/matplotlib/matplotlib.svg?logo=lgtm&logoWidth=18
2020
.. _LGTM: https://lgtm.com/projects/g/matplotlib/matplotlib
2121

2222
.. |DiscourseBadge| image:: https://img.shields.io/badge/help_forum-discourse-blue.svg

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Python package
22
# Create and test a Python package on multiple Python versions.
33
# Add steps that analyze code, save the dist with the build record, publish to a PyPI-compatible index, and more:
4-
# https://docs.microsoft.com/azure/devops/pipelines/languages/python
4+
# https://docs.microsoft.com/en-us/azure/devops/pipelines/ecosystems/python?view=azure-devops
55

66
strategy:
77
matrix:

doc/_static/mpl.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ div.responsive_screenshots {
3030
}
3131

3232
/* To avoid subfigure parts outside of the responsive_screenshots */
33-
/* element (see: https://stackoverflow.com/questions/2062258/ */
34-
/* floating-stuff-within-a-div-floats-outside-of-div-why) */
33+
/* element (see <https://stackoverflow.com/q/2062258/>) */
3534
span.clear_screenshots { clear: left; display: block; }
3635

3736
div.responsive_subfig{

doc/api/prev_api_changes/api_changes_1.5.0.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ by the new keyword argument *corner_mask*, or if this is not specified then
6060
the new :rc:`contour.corner_mask` instead. The new default behaviour is
6161
equivalent to using ``corner_mask=True``; the previous behaviour can be obtained
6262
using ``corner_mask=False`` or by changing the rcParam. The example
63-
http://matplotlib.org/examples/pylab_examples/contour_corner_mask.html
63+
https://matplotlib.org/examples/pylab_examples/contour_corner_mask.html
6464
demonstrates the difference. Use of the old contouring algorithm, which is
6565
obtained with ``corner_mask='legacy'``, is now deprecated.
6666

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ def _check_dependencies():
160160
'doc_module': ('matplotlib', 'mpl_toolkits'),
161161
'reference_url': {
162162
'matplotlib': None,
163-
'numpy': 'https://docs.scipy.org/doc/numpy/',
163+
'numpy': 'https://numpy.org/doc/stable/',
164164
'scipy': 'https://docs.scipy.org/doc/scipy/reference/',
165165
},
166166
'backreferences_dir': Path('api') / Path('_as_gen'),

doc/devel/MEP/MEP11.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ Implementation
117117
For installing from source, and assuming the user has all of the
118118
C-level compilers and dependencies, this can be accomplished fairly
119119
easily using distribute_ and following the instructions `here
120-
<https://pypi.org/project/distribute>`_. The only anticipated
120+
<https://pypi.org/project/distribute/>`_. The only anticipated
121121
change to the matplotlib library code will be to import pyparsing_
122122
from the top-level namespace rather than from within matplotlib. Note
123123
that distribute_ will also allow us to remove the direct dependency

doc/devel/MEP/MEP12.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ sections described above. "Clean-up" should involve:
106106

107107

108108
* PEP8_ clean-ups (running `flake8
109-
<https://pypi.org/project/flake8>`_, or a similar checker, is
109+
<https://pypi.org/project/flake8/>`_, or a similar checker, is
110110
highly recommended)
111111
* Commented-out code should be removed.
112112
* Replace uses of `pylab` interface with `.pyplot` (+ `numpy`,
@@ -142,8 +142,8 @@ page instead of the gallery examples.
142142
references to that example. For example, the API documentation for
143143
:file:`axes.py` and :file:`pyplot.py` may use these examples to generate
144144
plots. Use your favorite search tool (e.g., grep, ack, `grin
145-
<https://pypi.org/project/grin>`_, `pss
146-
<https://pypi.org/project/pss>`_) to search the matplotlib
145+
<https://pypi.org/project/grin/>`_, `pss
146+
<https://pypi.org/project/pss/>`_) to search the matplotlib
147147
package. See `2dc9a46
148148
<https://github.com/tonysyu/matplotlib/commit/2dc9a4651e5e566afc0866c603aa8d06aaf32b71>`_
149149
and `aa6b410

doc/devel/MEP/MEP14.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ number of other projects:
8282
.. _harfbuzz: https://www.freedesktop.org/wiki/Software/HarfBuzz/
8383
.. _QtTextLayout: https://doc.qt.io/archives/qt-4.8/qtextlayout.html
8484
.. _Microsoft DirectWrite: https://docs.microsoft.com/en-ca/windows/win32/directwrite/introducing-directwrite
85-
.. _Apple Core Text: https://developer.apple.com/library/content/documentation/StringsTextFonts/Conceptual/CoreText_Programming/Overview/Overview.html
85+
.. _Apple Core Text: https://developer.apple.com/library/archive/documentation/StringsTextFonts/Conceptual/CoreText_Programming/Overview/Overview.html
8686

8787
Of the above options, it should be noted that harfbuzz_ is designed
8888
from the start as a cross platform option with minimal dependencies,

doc/devel/MEP/MEP19.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ great!]:
6767

6868
**Documentation**
6969

70-
Documentation of master is now built by travis and uploaded to http://matplotlib.org/devdocs/index.html
70+
Documentation of master is now built by travis and uploaded to https://matplotlib.org/devdocs/index.html
7171

7272
@NelleV, I believe, generates the docs automatically and posts them on
7373
the web to chart MEP10 progress.
@@ -122,7 +122,7 @@ This section outlines the requirements that we would like to have.
122122
#. Make it easy to test a large but sparse matrix of different
123123
versions of matplotlib's dependencies. The matplotlib user survey
124124
provides some good data as to where to focus our efforts:
125-
https://docs.google.com/spreadsheet/ccc?key=0AjrPjlTMRTwTdHpQS25pcTZIRWdqX0pNckNSU01sMHc
125+
https://docs.google.com/spreadsheets/d/1jbK0J4cIkyBNncnS-gP7pINSliNy9lI-N4JHwxlNSXE/edit
126126

127127
#. Nice to have: A decentralized design so that those with more
128128
obscure platforms can publish build results to a central dashboard.

0 commit comments

Comments
 (0)