annotate bitten/templates/bitten_summary_lint.html @ 645:8c824b14e1c5

0.6dev: Switching `master.py` to use new `self._send_response()` and `self._send_error() methods. Simplifies code, but most importantly for errors it allows a consistent method for transmitting plain-text error messages to the slave (that the slave will now output as part of debug logging). Raising Trac HTTP* errors actually causes full rendering of an HTML error page as response, which is both inefficient as well as making it near-impossible to extract the 'hidden' message from the master.
author osimons
date Mon, 24 Aug 2009 12:00:43 +0000
parents 01c9848950d5
children 66894b0647f1
rev   line source
548
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
1 <!DOCTYPE html
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
2 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
4 <html xmlns="http://www.w3.org/1999/xhtml"
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
5 xmlns:py="http://genshi.edgewall.org/">
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
6
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
7 <h3>Code Lint</h3>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
8 <table class="listing lint">
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
9 <thead>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
10 <tr><th rowspan="2" class="file">File</th><th colspan="4" class="category">Problem Category Totals</th><th rowspan="2" class="total">Total</th></tr>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
11 <tr>
632
01c9848950d5 0.6dev: Cleaning all usage of tabs (replaced with spaces).
osimons
parents: 548
diff changeset
12 <th class="category">Convention</th>
01c9848950d5 0.6dev: Cleaning all usage of tabs (replaced with spaces).
osimons
parents: 548
diff changeset
13 <th class="category">Refactor</th>
01c9848950d5 0.6dev: Cleaning all usage of tabs (replaced with spaces).
osimons
parents: 548
diff changeset
14 <th class="category">Warning</th>
01c9848950d5 0.6dev: Cleaning all usage of tabs (replaced with spaces).
osimons
parents: 548
diff changeset
15 <th class="category">Error</th>
548
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
16 </tr>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
17 </thead>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
18
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
19 <tbody><py:for each="item in data.data">
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
20 <tr>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
21 <td class="file">
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
22 <a py:if="item.href" href="${item.href}">$item.file</a>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
23 <span py:if="not item.href">$item.file</span>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
24 </td>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
25
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
26 <td class="category">$item.category.convention</td>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
27 <td class="category">$item.category.refactor</td>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
28 <td class="category">$item.category.warning</td>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
29 <td class="category">$item.category.error</td>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
30 <td class="category">$item.lines</td>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
31
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
32 </tr>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
33 </py:for>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
34 </tbody>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
35 <tbody class="totals" py:with="totals = data.totals"><tr>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
36 <th>Total (in $totals.files files)</th>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
37
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
38 <td class="category total">$totals.category.convention</td>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
39 <td class="category total">$totals.category.refactor</td>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
40 <td class="category total">$totals.category.warning</td>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
41 <td class="category total">$totals.category.error</td>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
42 <td class="total">$totals.lines</td>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
43 </tr></tbody>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
44 </table>
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
45
e42f5644ea91 Added files from the bitten-lint commit that I forgot to add (see #379, which should really work now)
dfraser
parents:
diff changeset
46 </html>
Copyright (C) 2012-2017 Edgewall Software