blob: 8a0dd4e9493668650a3c2935f87b055af90a5292 (
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
|
<!doctype html PUBLIC "-//W3C//DTD html 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Coverage for {{cu.name|escape}}</title>
<link rel='stylesheet' href='style.css' type='text/css'>
<script src='jquery-1.3.2.min.js'></script>
<script>
function toggle_lines(btn, cls) {
var btn = $(btn);
if (btn.hasClass("hide")) {
$("#source ."+cls).removeClass("hide");
btn.removeClass("hide");
}
else {
$("#source ."+cls).addClass("hide");
btn.addClass("hide");
}
}
</script>
</head>
<body>
<div id='header'>
<div class='content'>
<h1>Coverage for <b>{{cu.name|escape}}</b> :
<span class='pc_cov'>{{pc_cov|format_pct}}%</span>
</h1>
<h2 class='stats'>
{{n_stm}} statements
<span class='{{c_run.strip}}' onclick='toggle_lines(this, "run")'>{{n_run}} run</span>
<span class='{{c_exc.strip}}' onclick='toggle_lines(this, "exc")'>{{n_exc}} excluded</span>
<span class='{{c_mis.strip}}' onclick='toggle_lines(this, "mis")'>{{n_mis}} missing</span>
<span class='{{c_par.strip}}' onclick='toggle_lines(this, "par")'>{{n_par}} partial</span>
</h2>
</div>
</div>
<div id='source'>
<table cellspacing='0' cellpadding='0'>
<tr>
<td class='linenos' valign='top'>
{% for line in lines %}
<p class='{{line.class}}'>{{line.number}}</p>
{% endfor %}
</td>
<td class='text' valign='top'>
{% for line in lines %}
<p class='{{line.class}}'>{{line.html}}<span class="strut"> </span></p>
{% endfor %}
</td>
</tr>
</table>
</div>
</body>
</html>
|