This is an automated email from the git hooks/post-receive script. daube-guest pushed a commit to branch patch-queue/master in repository snakemake.
commit f5f3103e9f8a6c5b450798e86446629bb609d0a8 Author: Kevin Murray <[email protected]> Date: Mon Sep 14 00:12:40 2015 +1000 Use local javascript/css as appropriate j Gbp-Pq: Name 0002-Use-local-javascript-css-as-appropriate.patch Use debian's mathjax package Gbp-Pq: Name 0003-Use-debian-s-mathjax-package.patch --- docs/conf.py | 3 +++ snakemake/gui.html | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 528b9f9..382744e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -37,6 +37,9 @@ extensions = [ 'sphinx.ext.napoleon' ] +# Use debian copy of mathjax, to avoid a lintian error +mathjax_path = "file:///usr/share/javascript/mathjax/MathJax.js" + # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] diff --git a/snakemake/gui.html b/snakemake/gui.html index 22ad7af..3010462 100644 --- a/snakemake/gui.html +++ b/snakemake/gui.html @@ -1,11 +1,11 @@ <html> <head> - <script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> + <script type="text/javascript" src="file://usr/share/javascript/jquery/jquery.min.js"></script> <script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/d3/3.4.6/d3.min.js"></script> - <script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.1.1/js/bootstrap.min.js"></script> + <script type="text/javascript" src="file://usr/share/javascript/bootstrap/js/bootstrap.min.js"></script> <script type="text/javascript" src="http://cpettitt.github.io/project/dagre-d3/v0.1.5/dagre-d3.js"></script> <script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.5.4/bootstrap-select.min.js"></script> - <link rel="stylesheet" type="text/css" href="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.1.1/css/bootstrap.min.css"/> + <link rel="stylesheet" type="text/css" href="file://usr/share/javascript/bootstrap/css/bootstrap.min.css"/> <link rel="stylesheet" type="text/css" href="http://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.5.4/bootstrap-select.min.css"/> <style> body { -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/snakemake.git _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
