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
|
Description: fix privacy breaches in html template file.
Author: Étienne Mollier <emollier@debian.org>
Forwarded: not-needed
Last-Update: 2024-01-14
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- python-parsl.orig/parsl/monitoring/visualization/templates/layout.html
+++ python-parsl/parsl/monitoring/visualization/templates/layout.html
@@ -1,6 +1,6 @@
-<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
-<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
-<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" integrity="sha384-gfdkjb5BdAXd+lj+gudLWI+BXq4IuLW5IT+brZEZsLFm++aCMlF1V92rMkPaX4PP" crossorigin="anonymous">
+<link rel="stylesheet" href="file:///usr/share/javascript/bootstrap4/css/bootstrap.min.css" crossorigin="anonymous">
+<script src="file:///usr/share/javascript/bootstrap4/js/bootstrap.min.js" crossorigin="anonymous"></script>
+<link rel="stylesheet" href="file:///usr/share/nodejs/@fortawesome/fontawesome-free/css/all.css" crossorigin="anonymous">
<!DOCTYPE html>
@@ -9,11 +9,11 @@
<title>Parsl Monitoring Interface</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
- <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
- <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
- <script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
+ <link rel="stylesheet" href="file:///usr/share/javascript/bootstrap4/css/bootstrap.min.css">
+ <script src="file:///usr/share/javascript/jquery/jquery.min.js"></script>
+ <script src="file:///usr/share/nodejs/popper.js/dist/umd/popper.min.js"></script>
+ <script src="file:///usr/share/javascript/bootstrap4/js/bootstrap.min.js"></script>
+ <script src="file:///usr/lib/R/site-library/plotly/htmlwidgets/lib/plotlyjs/plotly-latest.min.js"></script>
<link rel="stylesheet" href="/static/parsl-monitor.css">
|