This repository was archived by the owner on Aug 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (67 loc) · 2.01 KB
/
index.html
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
<!DOCTYPE html>
<!--
Copyright Oliver Vinn 2015
github.com/ovinn/code-lytics
-->
<html>
<head>
<meta charset="UTF-8" />
<title>Code-Lytics</title>
<link href="dist/css/bootstrap.min.css" rel="stylesheet">
<link href="css/ovinn.css" rel="stylesheet">
<script src="dist/js/jquery/1.11.1/jquery.min.js"></script>
<script src="dist/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h1>CODE REPORT</h1>
<section id="sect_overview_chart">
<div class="page-header">
<h3>Summary</h3>
</div>
<table>
<tr>
<td><canvas style="margin-right:50px" id="chart_comp" width="350px" height="400px"></canvas></td>
<td><canvas style="margin-right:50px" id="chart_cov" width="350px" height="400px"/></td>
<td><canvas id="chart_misra" width="350px" height="400px"></canvas></td>
</tr>
<tr>
<td colspan="3">
<canvas id="chart_size" height="200px"></canvas>
<canvas id="chart_stats" height="200px"></canvas>
</td>
</tr>
</table>
</section>
<section id="sect_components">
<div class="page-header">
<h3>Issues</h3>
</div>
<div class="dropdown" style="margin-bottom:15px">
<button id="dLabel" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Filter <span class="caret"></span>
</button>
<ul class="dropdown-menu" aria-labelledby="dLabel"></ul>
</div>
<table width="100%" class="table-bordered table-condensed table-responsive" id="comps">
<thead>
<td></td>
<td>File</td>
<td width="70px">Compiler</td>
<td width="70px">Coverity</td>
<td width="70px">L7</td>
<td width="70px">L8</td>
</thead>
</table>
</section>
<p class="enclose problem">By Oliver Vinn</p>
<br/>
<br/>
<br/>
</div>
<script src="js/Chart.min.js"></script>
<script src="js/color-scheme.min.js"></script>
<script src="js/index.app.js"></script>
<script>Application("metrics.json");</script>
</body>
</html>