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
|
Description: Avoid potential privacy breaches in templates
Author: Jonas Smedegaard <dr@jones.dk>
License: GPL-3+
Last-Update: 2018-06-12
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- 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;
}
--- a/data/templates/default.dzslides
+++ b/data/templates/default.dzslides
@@ -20,15 +20,12 @@
<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;
}
--- a/data/templates/default.html5
+++ b/data/templates/default.html5
@@ -29,9 +29,6 @@
$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]-->
</head>
<body>
$for(include-before)$
--- a/src/Text/Pandoc/Options.hs
+++ b/src/Text/Pandoc/Options.hs
@@ -366,10 +366,10 @@
isEnabled ext opts = ext `extensionEnabled` getExtensions opts
defaultMathJaxURL :: Text
-defaultMathJaxURL = "https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml-full.js"
+defaultMathJaxURL = "/usr/share/javascript/mathjax/MathJax.js"
defaultKaTeXURL :: Text
-defaultKaTeXURL = "https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/"
+defaultKaTeXURL = "/usr/share/javascript/katex/"
-- Update documentation in doc/filters.md if this is changed.
$(deriveJSON defaultOptions{ fieldLabelModifier =
--- a/test/lhs-test.html
+++ b/test/lhs-test.html
@@ -217,9 +217,6 @@
code span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</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>
--- a/test/lhs-test.html+lhs
+++ b/test/lhs-test.html+lhs
@@ -217,9 +217,6 @@
code span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</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>
--- a/test/writer.html5
+++ b/test/writer.html5
@@ -157,9 +157,6 @@
ul.task-list{list-style: none;}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</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">
--- a/test/s5-fancy.html
+++ b/test/s5-fancy.html
@@ -28,8 +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-chtml-full.js"
+ <script src="/usr/share/javascript/mathjax/MathJax.js"
type="text/javascript"></script>
</head>
<body>
|