summaryrefslogtreecommitdiffstats
path: root/web/changesummary/index.shtml
blob: 5d45217cc1cd7e383aa92e9aa2f3904c518a598e (plain)
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<html>

<head>
    <title>BM Change Summary</title>
    <script type="text/javascript" src="../global/jquery-1.4.2.min.js"></script>
    <script type="text/javascript"
        src="../global/tablesorter/jquery.tablesorter.js">
    <script type="text/javascript" src="../global/boxover/boxover.js"></script>
    <script type="text/javascript" src="../global/global.js"></script>
    <script type="text/javascript" src="main.js"></script>

    <link rel="stylesheet" href="../global/style.css" type="text/css" />
    <link type="text/css" rel="stylesheet"
        href="../global/tablesorter/docs/css/jq.css" />
    <link type="text/css" rel="stylesheet"
        href="../global/tablesorter/themes/bm/style.css" />
</head>

<body>

<span id="title" style="font-size:18; font-weight:bold">BM Change Summary</span>
&nbsp;&nbsp;&nbsp;

<span style="white-space:nowrap">
<span id="status">no status</span>
<img alt="spinner" id="spinner" src="images/ajax-spinner.gif"
    style="display:none"/>
</span>

<br />

<a id="mainPageLink" href="">main page</a>
<script type="text/javascript">
$("#mainPageLink").attr("href", "http://" + location.host + "/bm2");
</script>

<br />
<br />


<!-- BEGIN Ranking target -------------------------------------------- -->

<table style="border:0">
<tr>
<td style="border:0">
<fieldset>
<legend>Ranking Target</legend>

<!-- Primary change type: -->
<select id="primary_change_type" onchange="updateRankingTarget()">
    <option singular_name="regression" tag="regr">Regressions</option>
    <option singular_name="improvement" tag="impr">Improvements</option>
</select>

<br />

<!-- Secondary change type: -->
<select id="secondary_change_type" onchange="updateMainTable()">
    <option id="last_change" tag="last"></option>
    <option id="max_change_last_week" tag="7"></option>
    <option id="max_change_last_month" tag="30"></option>
    <option id="max_change_last_6_months" tag="180"></option>
    <option id="max_change_ever" tag="all"></option>
</select>

<br />
<input id="incl_premature_changes" type="checkbox"
    onchange="updateMainTable()"/>
<label id="incl_premature_changes_label">Include premature changes</label>

</fieldset>
</td>
</tr>
</table>

<!-- END Ranking target -------------------------------------------- -->

<br />
<br />

<!-- BEGIN Main tables (exactly one will be visible at a time) ----- -->

<!-- ... regressions (excluding premature ones): ---------------- -->

<div id="div_mt_regr_last" style="display:block">
<table id="mt_regr_last" class="tablesorter" border="0"
    cellpadding="0" cellspacing="1">
<!--#include file="cstabledef.html" -->
</table>
</div>

<div id="div_mt_regr_7" style="display:none">
<table id="mt_regr_7" class="tablesorter" border="0"
    cellpadding="0" cellspacing="1">
<!--#include file="cstabledef.html" -->
</table>
</div>

<div id="div_mt_regr_30" style="display:none">
<table id="mt_regr_30" class="tablesorter" border="0"
    cellpadding="0" cellspacing="1">
<!--#include file="cstabledef.html" -->
</table>
</div>

<div id="div_mt_regr_180" style="display:none">
<table id="mt_regr_180" class="tablesorter" border="0"
    cellpadding="0" cellspacing="1">
<!--#include file="cstabledef.html" -->
</table>
</div>

<div id="div_mt_regr_all" style="display:none">
<table id="mt_regr_all" class="tablesorter" border="0"
    cellpadding="0" cellspacing="1">
<!--#include file="cstabledef.html" -->
</table>
</div>

<!-- ... regressions (including premature ones): ---------------- -->

<div id="div_mt_regr_last_pmt" style="display:none">
<table id="mt_regr_last_pmt" class="tablesorter" border="0"
    cellpadding="0" cellspacing="1">
<!--#include file="cstabledef.html" -->
</table>
</div>

<div id="div_mt_regr_7_pmt" style="display:none">
<table id="mt_regr_7_pmt" class="tablesorter" border="0"
    cellpadding="0" cellspacing="1">
<!--#include file="cstabledef.html" -->
</table>
</div>

<div id="div_mt_regr_30_pmt" style="display:none">
<table id="mt_regr_30_pmt" class="tablesorter" border="0"
    cellpadding="0" cellspacing="1">
<!--#include file="cstabledef.html" -->
</table>
</div>

<div id="div_mt_regr_180_pmt" style="display:none">
<table id="mt_regr_180_pmt" class="tablesorter" border="0"
    cellpadding="0" cellspacing="1">
<!--#include file="cstabledef.html" -->
</table>
</div>

<div id="div_mt_regr_all_pmt" style="display:none">
<table id="mt_regr_all_pmt" class="tablesorter" border="0"
    cellpadding="0" cellspacing="1">
<!--#include file="cstabledef.html" -->
</table>
</div>

<!-- ... improvements (excluding premature ones): ---------------- -->

<div id="div_mt_impr_last" style="display:none">
<table id="mt_impr_last" class="tablesorter" border="0"
    cellpadding="0" cellspacing="1">
<!--#include file="cstabledef.html" -->
</table>
</div>

<div id="div_mt_impr_7" style="display:none">
<table id="mt_impr_7" class="tablesorter" border="0"
    cellpadding="0" cellspacing="1">
<!--#include file="cstabledef.html" -->
</table>
</div>

<div id="div_mt_impr_30" style="display:none">
<table id="mt_impr_30" class="tablesorter" border="0"
    cellpadding="0" cellspacing="1">
<!--#include file="cstabledef.html" -->
</table>
</div>

<div id="div_mt_impr_180" style="display:none">
<table id="mt_impr_180" class="tablesorter" border="0"
    cellpadding="0" cellspacing="1">
<!--#include file="cstabledef.html" -->
</table>
</div>

<div id="div_mt_impr_all" style="display:none">
<table id="mt_impr_all" class="tablesorter" border="0"
    cellpadding="0" cellspacing="1">
<!--#include file="cstabledef.html" -->
</table>
</div>

<!-- ... improvements (including premature ones): ---------------- -->

<div id="div_mt_impr_last_pmt" style="display:none">
<table id="mt_impr_last_pmt" class="tablesorter" border="0"
    cellpadding="0" cellspacing="1">
<!--#include file="cstabledef.html" -->
</table>
</div>

<div id="div_mt_impr_7_pmt" style="display:none">
<table id="mt_impr_7_pmt" class="tablesorter" border="0"
    cellpadding="0" cellspacing="1">
<!--#include file="cstabledef.html" -->
</table>
</div>

<div id="div_mt_impr_30_pmt" style="display:none">
<table id="mt_impr_30_pmt" class="tablesorter" border="0"
    cellpadding="0" cellspacing="1">
<!--#include file="cstabledef.html" -->
</table>
</div>

<div id="div_mt_impr_180_pmt" style="display:none">
<table id="mt_impr_180_pmt" class="tablesorter" border="0"
    cellpadding="0" cellspacing="1">
<!--#include file="cstabledef.html" -->
</table>
</div>

<div id="div_mt_impr_all_pmt" style="display:none">
<table id="mt_impr_all_pmt" class="tablesorter" border="0"
    cellpadding="0" cellspacing="1">
<!--#include file="cstabledef.html" -->
</table>
</div>

<!-- END Main table -------------------------------------------- -->

</body>
</html>