/usr/share/shake/html/progress.html is in libghc-shake-data 0.15.5+dfsg-4build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Shake progress diagnostic</title>
<!-- Libraries -->
<script src="lib/jquery.js"></script>
<script src="lib/jquery.flot.js"></script>
<script src="lib/jquery.flot.stack.js"></script>
<!-- Progress output -->
<script src="progress-data.js"></script>
<script src="version.js"></script>
<!-- Functions for creating info from progress info -->
<script src="shake-progress.js"></script>
<style type="text/css">
body {font-family: sans-serif; font-size: 10pt;}
h1 {font-size: 12pt;}
.version {color: gray; font-style: italic; clear: both; padding-top: 30px;}
.shake {
text-decoration: none;
font-family: monospace;
color: black;
}
.plot {
width: 300px;
height: 200px;
float: left;
}
</style>
</head>
<body>
<h1>Shake Progress Analysis</h1>
<p>
The red line represents the real performance, with time to completion on the X axis and predicted time on the Y axis. A perfect progress prediction would follow the gray line.
</p>
<div id="output">Loading...</div>
<p class="version"></p>
</body>
</html>
|