forked from rust-lang/rustc-pr-tracking
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
51 lines (43 loc) · 1.49 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Lighthouse PR tracking</title>
<link rel="stylesheet" href="web/style.css">
<link rel="shortcut icon" href="web/favicon.ico">
</head>
<body data-repo="GoogleChrome/lighthouse">
<header>
<h1>Lighthouse PR tracking</h1>
</header>
<ul id="toc" hidden>
<!-- Populated by JavaScript -->
</ul>
<div class="graph" id="pr-status">
<h2>Pull requests status</h2>
<canvas></canvas>
</div>
<div class="graph" id="pr-activity">
<h2>Last activity on pull requests</h2>
<canvas></canvas>
</div>
<div class="graph" id="pr-age">
<h2>Pull requests creation dates</h2>
<canvas></canvas>
</div>
<footer>
Maximum number of days to show:
<input id="days-count" type="text" value="360" maxlength="3">
<br/>
Show percentages instead of absolute numbers:
<input id="relative" type="checkbox" value="false">
</footer>
<footer>
<a class="button" href="https://github.com/rust-lang-nursery/rustc-pr-tracking/tree/master/data">
Explore the raw data
</a>
</footer>
<script type="text/javascript" src="web/chart.min.js"></script>
<script type="text/javascript" src="web/main.js"></script>
</body>
</html>