Highlight errors to make them obvious

This commit is contained in:
myint 2012-09-15 13:41:56 -07:00
parent 7753258eca
commit 91199bbd6d
1 changed files with 15 additions and 2 deletions

View File

@ -23,6 +23,14 @@ body.body {
margin: 0px; margin: 0px;
} }
.error {
font-family: Arial;
font-size: 13px;
background-color: #ffb7b7;
padding: 0px;
margin: 0px;
}
#page-header { #page-header {
clear: both; clear: both;
width: 900px; width: 900px;
@ -301,13 +309,18 @@ if __name__ == '__main__':
for filename, data in files.items(): for filename, data in files.items():
stream.write("<tr><td colspan='4'><a href=\"%s\">%s</a></td></tr>" % (data["htmlfile"], filename)) stream.write("<tr><td colspan='4'><a href=\"%s\">%s</a></td></tr>" % (data["htmlfile"], filename))
for error in data["errors"]: for error in data["errors"]:
if error['severity'] == 'error':
error_class = 'class="error"'
else:
error_class = ''
if error["id"] == "missingInclude": if error["id"] == "missingInclude":
stream.write("<tr><td></td><td>%s</td><td>%s</td><td>%s</td></tr>" % stream.write("<tr><td></td><td>%s</td><td>%s</td><td>%s</td></tr>" %
(error["id"], error["severity"], error["msg"])) (error["id"], error["severity"], error["msg"]))
else: else:
stream.write("<tr><td><a href='%s#line-%d'>%d</a></td><td>%s</td><td>%s</td><td>%s</td></tr>" % stream.write("<tr><td><a href='%s#line-%d'>%d</a></td><td>%s</td><td>%s</td><td %s>%s</td></tr>" %
(data["htmlfile"], error["line"], error["line"], error["id"], (data["htmlfile"], error["line"], error["line"], error["id"],
error["severity"], error["msg"])) error["severity"], error_class, error["msg"]))
stream.write("</table>") stream.write("</table>")
stream.write(HTML_FOOTER) stream.write(HTML_FOOTER)
stream.close() stream.close()