forked from andreasgal/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (60 loc) · 2.97 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
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>
Release Dashboard
</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link type="text/css" href="css/base.css" rel="stylesheet">
<link type="text/css" href="css/menu.css" rel="stylesheet">
<link type="text/css" href="css/colors.css" rel="stylesheet">
<link type="text/css" href="css/dashboard.css" rel="stylesheet">
<script type="text/javascript" src="owners.js" defer></script>
<script type="text/javascript" src="js/jquery-2.1.0.min.js" defer></script>
<script type="text/javascript" src="js/bugzilla.js" defer></script>
<script type="text/javascript" src="js/querystring.js" defer></script>
<script type="text/javascript" src="js/dashboard.js" defer></script>
</head>
<body>
<div id="title">
</div>
<div id="menu">
<div class="checkbox" id="toggleActivity">Show activity</div>
<div class="checkbox" id="toggleOwners">Show owners</div>
<div class="checkbox" id="toggleHelp">Help</div>
</div>
<div id="help">
<p>
This is a simple dashboard to show the current release status based on bugzilla information.
</p>
<p>
Nominations indicate bugs that have <b>blocking?</b> set for any of the selected releases.<br>
Triage indicates bugs that have been marked <b>blocking+</b> and are awaiting triage in the "General" component.<br>
Each number in parenthesis indicates the number of <b>unassigned</b> bugs.<br>
Clicking on any of the numbers takes you to a bugzilla query listing those bugs.<br>
<b>Show Owners</b> displays the engineering manager responsible for driving the component instead of the component name.<br>
<b>Show Activity</b> colors tiles depending on the last time the longest untouched bug in a set of bugs was updated.
</p>
<p>
<b>Advanced features:</b><br>
The dashboard can be configured by appending query parameters to the url using "?". Separate parameters with a "&".<br>
<i>"releases=1.3,1.3T"</i> displays only those releases.<br>
<i>"flag=cf_blocking_loop"</i> uses the specified release flag instead of the default of <i>cf_blocking_b2g</i>.</br>
<i>"reload=60"</i> reloads the page automatically every 60 seconds.<br>
<i>"owners=true"</i> selects the <b>Show Owners</b> checkbox at load time.</br>
<i>"activity=true"</i> selects the <b>Show Activity</b> checkbox at load time.</br>
<i>"maxage=3"</i> sets the maximum age when showing activity (after 3 days of no activity the tile will show deep red).<br>
<i>"nomenu=title"</i> shows a title instead of the menu, which is useful for publically displayed dashboards.</br>
<i>"components=JavaScript Engine,IPC"</i> only displays those components.</br>
<br>
The source code for this dashboard is on github. Pull requests welcome.
</p>
</div>
<ul>
<li id="noms"></li>
<li id="triage"></li>
<li id="blockers"></li>
</ul>
</body>
</html>