Skip to content

Commit

Permalink
Trac #24482: use https for matplotlib external links
Browse files Browse the repository at this point in the history
URL: https://trac.sagemath.org/24482
Reported by: chapoton
Ticket author(s): Frédéric Chapoton
Reviewer(s): Thierry Monteil
  • Loading branch information
Release Manager authored and vbraun committed Jan 17, 2018
2 parents 21e1d6b + 8646e4d commit a2e1556
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/sage/combinat/posets/posets.py
Expand Up @@ -1675,7 +1675,7 @@ def plot(self, label_elements=True, element_labels=None,
* ``element_color`` - a color for elements not set in
``element_colors``
* ``element_shape`` - the shape of elements, like ``'s'`` for
square; see http://matplotlib.org/api/markers_api.html for the list
square; see https://matplotlib.org/api/markers_api.html for the list
* ``element_size`` (default: 200) - the size of elements
* ``label_elements`` (default: ``True``) - whether to display
element labels
Expand Down
2 changes: 1 addition & 1 deletion src/sage/graphs/generic_graph.py
Expand Up @@ -19446,7 +19446,7 @@ def plot(self, **options):

- ``vertex_shape`` - the shape to draw the vertices, for
example ``"o"`` for circle or ``"s"`` for square. Whole list
is available at http://matplotlib.org/api/markers_api.html.
is available at https://matplotlib.org/api/markers_api.html.
(Not available for multiedge digraphs.)

- ``graph_border`` - whether to include a box around the graph
Expand Down
4 changes: 2 additions & 2 deletions src/sage/plot/graphics.py
Expand Up @@ -1549,7 +1549,7 @@ def show(self, **kwds):
- ``"default"`` -- Uses matplotlib's internal text rendering
engine called Mathtext ( see
http://matplotlib.org/users/mathtext.html ). If you have
https://matplotlib.org/users/mathtext.html ). If you have
modified the default matplotlib settings, for instance via
a matplotlibrc file, then this option will not change any of
those settings.
Expand Down Expand Up @@ -3159,7 +3159,7 @@ def save(self, filename, **kwds):
if latex_implementations[0] == "pdflatex":
# use pdflatex and set font encoding as per
# matplotlib documentation:
# http://matplotlib.org/users/pgf.html#pgf-tutorial
# https://matplotlib.org/users/pgf.html#pgf-tutorial
pgf_options= {"pgf.texsystem": "pdflatex",
"pgf.preamble": [
r"\usepackage[utf8x]{inputenc}",
Expand Down
2 changes: 1 addition & 1 deletion src/sage/plot/matrix_plot.py
Expand Up @@ -271,7 +271,7 @@ def matrix_plot(mat, **options):
The list of predefined color maps can be visualized in `matplotlib's
documentation
<http://matplotlib.org/examples/color/colormaps_reference.html>`__. You
<https://matplotlib.org/examples/color/colormaps_reference.html>`__. You
can also type ``import matplotlib.cm; matplotlib.cm.datad.keys()`` to list
their names.
Expand Down
2 changes: 1 addition & 1 deletion src/sage/repl/ipython_kernel/kernel.py
Expand Up @@ -157,7 +157,7 @@ def help_links(self):
},
{
'text': "Matplotlib",
'url': "http://matplotlib.org/contents.html",
'url': "https://matplotlib.org/contents.html",
},
{
'text': "Markdown",
Expand Down

0 comments on commit a2e1556

Please sign in to comment.