From 1e093b936d5f57ea37062a562678f373efc7de28 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Mon, 24 Nov 2014 08:04:03 -0500 Subject: [PATCH] Fix mathjax on website broken due to https The dealii.org webserver now tries to serve https sites. This breaks mathjax because of: Mixed Content: The page at 'https://www.dealii.org/developer/doxygen/deal.II/step_31.html' was loaded over HTTPS, but requested an insecure resource 'http://cdn.mathjax.org/mathjax/latest/MathJax.js'. This request has been blocked; This commit fixes this by loading it over https. --- doc/doxygen/options.dox.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/doxygen/options.dox.in b/doc/doxygen/options.dox.in index 2570ae85e5..34513c4880 100644 --- a/doc/doxygen/options.dox.in +++ b/doc/doxygen/options.dox.in @@ -111,7 +111,7 @@ HTML_FILE_EXTENSION = .html HTML_HEADER = header.html HTML_FOOTER = footer.html USE_MATHJAX = @_use_mathjax@ -MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest +MATHJAX_RELPATH = https://cdn.mathjax.org/mathjax/latest MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols HTML_COLORSTYLE_HUE = 220 HTML_COLORSTYLE_SAT = 200 -- 2.39.5