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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
Description: Avoid potential privacy breaches in templates
Author: Jonas Smedegaard <dr@jones.dk>
License: GPL-3+
Last-Update: 2023-07-21
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
diff --git a/data/dzslides/template.html b/data/dzslides/template.html
index 56ef896..c3c4c9e 100644
--- a/data/dzslides/template.html
+++ b/data/dzslides/template.html
@@ -48,7 +48,7 @@
<section>
<figure> <!-- Figures are used to display images and videos fullpage -->
- <img src="http://placekitten.com/g/800/600">
+ <img src="cat.png">
<figcaption>An image</figcaption>
</figure>
<div role="note">Kittens are so cute!</div>
@@ -56,7 +56,7 @@
<section>
<figure> <!-- Videos are automatically played -->
- <video src="http://videos-cdn.mozilla.net/brand/Mozilla_Firefox_Manifesto_v0.2_640.webm" poster="http://www.mozilla.org/images/about/poster.jpg"></video>
+ <video src="video.webm" poster="video.jpg"></video>
<figcaption>A video</figcaption>
</figure>
</section>
@@ -68,16 +68,13 @@
<!-- Your Style -->
<!-- Define the style of your presentation -->
-<!-- Maybe a font from http://www.google.com/webfonts ? -->
-<link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet'>
-
<style>
html, .view body { background-color: black; counter-reset: slideidx; }
body, .view section { background-color: white; border-radius: 12px }
/* A section is a slide. It's size is 800x600, and this will never change */
section, .view head > title {
/* The font from Google */
- font-family: 'Oswald', arial, serif;
+ font-family: 'DejaVu Sans Condensed', 'Liberation Sans', 'Nimbus Sans L', arial, serif;
font-size: 30px;
}
diff --git a/data/templates/default.dzslides b/data/templates/default.dzslides
index 11103ab..21bb8fa 100644
--- a/data/templates/default.dzslides
+++ b/data/templates/default.dzslides
@@ -20,15 +20,12 @@ $for(css)$
<link rel="stylesheet" href="$css$">
$endfor$
$else$
-<link href='https://fonts.googleapis.com/css?family=Oswald' rel='stylesheet'>
-
<style>
html, .view body { background-color: black; counter-reset: slideidx; }
body, .view section { background-color: white; border-radius: 12px }
/* A section is a slide. It's size is 800x600, and this will never change */
section, .view head > title {
- /* The font from Google */
- font-family: 'Oswald', arial, serif;
+ font-family: 'DejaVu Sans Condensed', 'Liberation Sans', 'Nimbus Sans L', arial, serif;
font-size: 30px;
}
diff --git a/data/templates/default.html5 b/data/templates/default.html5
index 0676215..724cde4 100644
--- a/data/templates/default.html5
+++ b/data/templates/default.html5
@@ -23,9 +23,6 @@ $endfor$
$if(math)$
$math$
$endif$
- <!--[if lt IE 9]>
- <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
- <![endif]-->
$for(header-includes)$
$header-includes$
$endfor$
diff --git a/src/Text/Pandoc/Options.hs b/src/Text/Pandoc/Options.hs
index fde8a9a..c40c3ec 100644
--- a/src/Text/Pandoc/Options.hs
+++ b/src/Text/Pandoc/Options.hs
@@ -308,10 +308,10 @@ isEnabled :: HasSyntaxExtensions a => Extension -> a -> Bool
isEnabled ext opts = ext `extensionEnabled` getExtensions opts
defaultMathJaxURL :: Text
-defaultMathJaxURL = "https://cdn.jsdelivr.net/npm/mathjax@3/es5/"
+defaultMathJaxURL = "/usr/share/javascript/mathjax/"
defaultKaTeXURL :: Text
-defaultKaTeXURL = "https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.11.1/"
+defaultKaTeXURL = "/usr/lib/nodejs/katex/dist/"
$(deriveJSON defaultOptions ''ReaderOptions)
diff --git a/test/lhs-test.html b/test/lhs-test.html
index 8153a4b..6bde36c 100644
--- a/test/lhs-test.html
+++ b/test/lhs-test.html
@@ -75,9 +75,6 @@
code span.vs { color: #4070a0; } /* VerbatimString */
code span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */
</style>
- <!--[if lt IE 9]>
- <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
- <![endif]-->
</head>
<body>
<h1 id="lhs-test">lhs test</h1>
diff --git a/test/lhs-test.html+lhs b/test/lhs-test.html+lhs
index 0ada9fa..e86bfd6 100644
--- a/test/lhs-test.html+lhs
+++ b/test/lhs-test.html+lhs
@@ -75,9 +75,6 @@
code span.vs { color: #4070a0; } /* VerbatimString */
code span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */
</style>
- <!--[if lt IE 9]>
- <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
- <![endif]-->
</head>
<body>
<h1 id="lhs-test">lhs test</h1>
diff --git a/test/s5-fancy.html b/test/s5-fancy.html
index 7f5350b..23892c8 100644
--- a/test/s5-fancy.html
+++ b/test/s5-fancy.html
@@ -28,7 +28,7 @@
<link rel="stylesheet" href="s5/default/opera.css" type="text/css" media="projection" id="operaFix" />
<!-- S5 JS -->
<script src="s5/default/slides.js" type="text/javascript"></script>
- <script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js" type="text/javascript"></script>
+ <script src="/usr/share/javascript/mathjax/tex-mml-chtml.js" type="text/javascript"></script>
</head>
<body>
<div class="layout">
diff --git a/test/writer.html5 b/test/writer.html5
index 431503b..859f8b9 100644
--- a/test/writer.html5
+++ b/test/writer.html5
@@ -16,9 +16,6 @@
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
</style>
- <!--[if lt IE 9]>
- <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
- <![endif]-->
</head>
<body>
<header id="title-block-header">
|