Skip to content

Commit 2c2bbba

Browse files
committed
Change certain http:// urls to https://
These are just the URLs that result in mixed content errors when loading the docs over https.
1 parent f8dcc56 commit 2c2bbba

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

doc/ext/sympylive.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
sympylive
33
~~~~~~~~~
44
5-
Allow `SymPy Live <http://live.sympy.org/>`_ to be used for interactive
5+
Allow `SymPy Live <https://live.sympy.org/>`_ to be used for interactive
66
evaluation of SymPy's code examples.
77
88
:copyright: Copyright 2014 by the SymPy Development Team, see AUTHORS.
@@ -30,5 +30,5 @@ def builder_inited(app):
3030

3131

3232
def setup(app):
33-
app.add_config_value('sympylive_url', 'http://live.sympy.org', False)
33+
app.add_config_value('sympylive_url', 'https://live.sympy.org', False)
3434
app.connect('builder-inited', builder_inited)

doc/src/_static/default.css_t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*/
1111

1212
@import url("basic.css");
13-
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
13+
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
1414

1515
/* -- page layout ----------------------------------------------------------- */
1616

doc/src/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
autodoc_inherit_docstrings = False
3333

3434
# MathJax file, which is free to use. See http://www.mathjax.org/docs/2.0/start.html
35-
mathjax_path = 'http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML-full'
35+
mathjax_path = 'https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML-full'
3636

3737
# Add any paths that contain templates here, relative to this directory.
3838
templates_path = ['_templates']

0 commit comments

Comments
 (0)