summaryrefslogtreecommitdiffstats
path: root/tools/droiddoc/templates/todo.cs
blob: e9f723755009ca14c1342943064e832750dd630f (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
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title><?cs var:page.title ?></title>
    <style type="text/css">
    table {
        border-width: 1px 1px 1px 1px;
        border-spacing: 0px;
        border-style: solid solid solid solid;
        border-color: black black black black;
        border-collapse: collapse;
        background-color: white;
    }
    table th {
        border-width: 1px 1px 1px 1px;
        padding: 1px 4px 1px 3px;
        border-style: inset inset inset inset;
        border-color: gray gray gray gray;
        background-color: white;
    }
    table td {
        border-width: 1px 1px 1px 1px;
        padding: 1px 4px 1px 3px;
        border-style: inset inset inset inset;
        border-color: gray gray gray gray;
        background-color: white;
    }
    </style>
</head>
<body>
<h1><?cs var:page.title ?></h1>

<h2>Overall</h2>
<table>
<tr><th>Errors</th><td><?cs var:all.errorCount ?></td></tr>
<tr><th>Percent Good</th><td><?cs var:all.percentGood ?></td></tr>
<tr><th>Total Comments</th><td><?cs var:all.totalCount ?></td></tr>
</table>

<h2>Package Summary</h2>

<table>
<tr>
    <th>Package</th>
    <th>Errors</th>
    <th>Percent Good</th>
    <th>Total</th>
</tr>
<?cs each:pkg=packages ?>
<tr>
    <td><?cs var:pkg.name ?></td>
    <td><?cs var:pkg.errorCount ?></td>
    <td><?cs var:pkg.percentGood ?></td>
    <td><?cs var:pkg.totalCount ?></td>
</tr>
<?cs /each ?>
</table>


<h2>Class Summary</h3>

<table>
<tr>
    <th>Class</th>
    <th>Errors</th>
    <th>Percent Good</th>
    <th>Total</th>
</tr>
<?cs each:cl=classes ?>
<tr>
    <td><a href="#class_<?cs var:cl.qualified ?>"><?cs var:cl.qualified ?></a></td>
    <td><?cs var:cl.errorCount ?></td>
    <td><?cs var:cl.percentGood ?></td>
    <td><?cs var:cl.totalCount ?></td>
</tr>
<?cs /each ?>
</table>

<h2>Detail</h2>

<?cs each:cl=classes ?>
<h3><a name="class_<?cs var:cl.qualified ?>"><?cs var:cl.qualified ?></a></h3>
<p>Errors: <?cs var:cl.errorCount ?><br/>
Total: <?cs var:cl.totalCount ?><br/>
Percent Good: <?cs var:cl.percentGood ?></p>
<table>
<?cs each:err=cl.errors ?>
<tr>
    <td><?cs var:err.pos ?></td>
    <td><?cs var:err.name ?></td>
    <td><?cs var:err.descr ?></td>
</tr>
<?cs /each ?>
</table>

<?cs /each ?>

</body>
</html>