1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
Author: Andreas Tille <tille@debian.org>
Last-Update: Thu, 22 Feb 2018 10:38:05 +0100
Description: Avoid unnecessary privacy breaches since some linked files
are locally packaged.
--- a/inst/misc/Rweb/index.html
+++ b/inst/misc/Rweb/index.html
@@ -1,7 +1,7 @@
<meta charset="utf-8" />
- <link rel="stylesheet" href="http://gitorious.org/yihui/animation/blobs/raw/master/inst/misc/scianimator/css/reset.css" />
- <link rel="stylesheet" href="http://gitorious.org/yihui/animation/blobs/raw/master/inst/misc/scianimator/css/styles.css" />
- <link rel="stylesheet" href="http://gitorious.org/yihui/animation/blobs/raw/master/inst/misc/scianimator/css/scianimator.css" />
+ <link rel="stylesheet" href="file:///usr/lib/R/site-library/animation/misc/scianimator/css/reset.css" />
+ <link rel="stylesheet" href="file:///usr/lib/R/site-library/animation/misc/scianimator/css/styles.css" />
+ <link rel="stylesheet" href="file:///usr/lib/R/site-library/animation/misc/scianimator/css/scianimator.css" />
<link rel="stylesheet" href="http://gitorious.org/yihui/animation/blobs/raw/master/inst/misc/scianimator/css/shCore.css" />
<link rel="stylesheet" href="http://gitorious.org/yihui/animation/blobs/raw/master/inst/misc/scianimator/css/shThemeDefault.css" />
<style type="text/css">
@@ -13,7 +13,7 @@
</style>
<script src="file:///usr/share/javascript/jquery/jquery.min.js"></script>
- <script src="http://gitorious.org/yihui/animation/blobs/raw/master/inst/misc/scianimator/js/jquery.scianimator.min.js"></script>
+ <script src="file:///usr/lib/R/site-library/animation/misc/scianimator/js/jquery.scianimator.min.js"></script>
<script src="http://gitorious.org/yihui/animation/blobs/raw/master/inst/misc/scianimator/js/shCore.js"></script>
<script src="http://gitorious.org/yihui/animation/blobs/raw/master/inst/misc/scianimator/js/shAutoloader.js"></script>
--- a/inst/misc/scianimator/index.html
+++ b/inst/misc/scianimator/index.html
@@ -6,11 +6,11 @@
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="css/scianimator.css" />
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/github.min.css">
+ <link rel="stylesheet" href="file:///usr/share/javascript/highlight.js/styles/github.css">
<script src="js/jquery.min.js"></script>
<script src="js/jquery.scianimator.min.js"></script>
- <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js"></script>
+ <script type="text/javascript" src="file:///usr/share/javascript/highlight.js/highlight.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/languages/r.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
|