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
|
Description: avoid privacy leaks in html code and documentation
Author: Jonas Smedegaard <dr@jones.dk>
Last-Update: 2021-07-19
---
README.md | 4 ----
site/source/_themes/emscripten_sphinx_rtd_theme/layout.html | 5 +----
tools/toolchain_profiler.results_template.html | 2 +-
3 files changed, 2 insertions(+), 9 deletions(-)
--- a/README.md
+++ b/README.md
@@ -2,10 +2,6 @@
Main project page: <https://emscripten.org>
-GitHub CI status: [](https://circleci.com/gh/emscripten-core/emscripten/tree/main)
-
-Chromium builder status: [emscripten-releases](https://ci.chromium.org/p/emscripten-releases)
-
Overview
--------
--- a/site/source/_themes/emscripten_sphinx_rtd_theme/layout.html
+++ b/site/source/_themes/emscripten_sphinx_rtd_theme/layout.html
@@ -65,9 +65,6 @@
{%- endblock %}
{%- block extrahead %} {% endblock %}
- {# Keep modernizr in head - http://modernizr.com/docs/#installing #}
- <script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script>
-
</head>
<body class="wy-body-for-nav" role="document">
@@ -129,7 +126,7 @@
('docs/index', 'GitHub', '')
] -%}
- <a href="https://github.com/emscripten-core/emscripten"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://github.blog/wp-content/uploads/2008/12/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" data-canonical-src="https://github.blog/wp-content/uploads/2008/12/forkme_right_darkblue_121621.png"></a>
+ <a href="https://github.com/emscripten-core/emscripten">Fork me on GitHub</a>
<div class="main-nav-bar" style="">
--- a/tools/toolchain_profiler.results_template.html
+++ b/tools/toolchain_profiler.results_template.html
@@ -31,7 +31,7 @@
<html><head>
<meta charset="UTF-8">
<title>Emscripten toolchain profiler results</title>
-<script src="https://d3js.org/d3.v3.min.js"></script>
+<script src="/usr/share/javascript/d3/d3.min.js"></script>
<style>
.chart { shape-rendering: crispEdges; }
.mini text { font: 9px sans-serif; }
|