-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogress.html
141 lines (136 loc) · 4.81 KB
/
progress.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Synth</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js" type="text/javascript" charset="utf-8"></script>
<link href="https://cdn.datatables.net/1.10.12/css/jquery.dataTables.min.css" rel="stylesheet" type="text/css">
<link href="progress.css" type="text/css" rel="stylesheet" />
<script src="progress.js" type="text/javascript"></script>
<link rel="icon" type="image/png" href="favicon.png">
</head>
<body>
<div id="header">
<table class="layout">
<tr>
<td>
<div id="logo">
<img src="dsynth.png" alt="logo" />
</div>
</td>
<td>
<div id="build_info">
<table>
<tr>
<th>Profile:</th>
<td id="profile"></td>
</tr>
<tr>
<th>Polling:</th>
<td id="polling"></td>
</tr>
<tr>
<th>Kickoff:</th>
<td id="kickoff"></td>
</tr>
</table>
</div>
</td>
<td>
<div id="stats">
<table>
<thead>
<tr>
<th>Total</th>
<th>Built</th>
<th>Meta</th>
<th>Failed</th>
<th>Ignored</th>
<th>Skipped</th>
<th>Remaining</th>
</tr>
</thead>
<tbody>
<tr>
<td id="stats_queued" class="queued" onclick="filter('')" title="Clear search filter"></td>
<td id="stats_built" class="built" onclick="filter('built')" title="Click to filter for built packages"></td>
<td id="stats_meta" class="meta" onclick="filter('meta')" title="Click to filter for meta packages"></td>
<td id="stats_failed" class="failed" onclick="filter('failed')" title="Click to filter for build failures"></td>
<td id="stats_ignored" class="ignored" onclick="filter('ignored')" title="Click to filter for ignored ports"></td>
<td id="stats_skipped" class="skipped" onclick="filter('skipped')" title="Click to filter for skipped ports"></td>
<td id="stats_remains" class="remains"></td>
</tr>
</tbody>
</table>
</div>
<div id="stress">
<table>
<thead>
<tr>
<th>Load</th>
<th>Swapinfo</th>
<th>Elapsed</th>
<th>Pkg/hour</th>
<th title="Packages build rate over last 500 seconds" id="impulse_label">Impulse</th>
</tr>
</thead>
<tbody>
<tr>
<td id="stats_load"></td>
<td id="stats_swapinfo"></td>
<td id="stats_elapsed"></td>
<td id="stats_pkghour"></td>
<td id="stats_impulse"></td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
</table>
</div><!-- #header -->
<div id="main">
<div id="builders_zone_2">
<table class="builders_table" id="builders_body">
<thead class="builders">
<tr>
<td>ID</td>
<td>Duration</td>
<td>Build Phase</td>
<td>Origin</td>
<td>Lines</td>
</tr>
</thead>
<tbody class="builders"></tbody>
</table>
</div>
<div id="report">
<table id="report_table">
<thead>
<tr>
<th title="Click on number to search on origin">No.</th>
<th>Elapsed</th>
<th>ID</th>
<th>Result</th>
<th>Origin</th>
<th>Information</th>
<th>Skip</th>
<th>Duration</th>
</tr>
</thead>
<tbody id="report_body"></tbody>
</table>
</div>
</div>
<div id="footer">
<div id="nav">
Progress
</div>
<div id="progress">
<canvas id="progressbar" width=952 height=22></canvas>
</div>
</div>
</body>
</html>