Merge pull request #227 from matthiaskrgr/daca

daca2: count crashes of cppcheck in index table.
This commit is contained in:
Daniel Marjamäki 2014-01-29 04:05:41 -08:00
commit 8db904692a
1 changed files with 3 additions and 1 deletions

View File

@ -59,7 +59,8 @@ mainpage.write(
'<td>Warning</td>' +
'<td>Performance</td>' +
'<td>Portability</td>' +
'<td>Style</td></tr>\n')
'<td>Style</td>' +
'<td>Crashes</td></tr>\n')
lastupdate = None
recent = []
@ -104,6 +105,7 @@ for lib in range(2):
'<td>' + str(data.count('(performance)')) + '</td>' +
'<td>' + str(data.count('(portability)')) + '</td>' +
'<td>' + str(data.count('(style)')) + '</td>' +
'<td>' + str(data.count('Crash?')) + '</td>' +
'</tr>\n')
data = data.replace('&', '&amp;')