-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
116 lines (105 loc) · 3.95 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self' ; script-src 'self' 'unsafe-inline'">
<meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self''unsafe-inline'">
<title>TallyView for TSL UMD</title>
</head>
<body>
<main role="main" class="container">
<!-- You can also require other files to run in this process -->
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="./contents/bootstrap/5.0.2/css/bootstrap.min.css" />
<link rel="stylesheet" href="./src/tallyview.css" />
<script>var exports = {};</script>
<h3 class="text-center">TallyView 1.2</h3>
<hr>
<ul class="nav nav-tabs" id="myTab" role="tablist">
<li class="nav-item" role="presentation">
<button class="nav-link active" id="home-tab" data-bs-toggle="tab" data-bs-target="#home" type="button"
role="tab" aria-controls="home" aria-selected="true">UMDs</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="stats-tab" data-bs-toggle="tab" data-bs-target="#stats" type="button" role="tab"
aria-controls="stats" aria-selected="false">Statistics</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="settings-tab" data-bs-toggle="tab" data-bs-target="#settings" type="button"
role="tab" aria-controls="contact" aria-selected="false">Settings</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="about-tab" data-bs-toggle="tab" data-bs-target="#about" type="button" role="tab"
aria-controls="about" aria-selected="false">About TallyView</button>
</li>
</ul>
<div class="tab-content" id="myTabContent">
<div class="tab-pane fade show active" id="home" role="tabpanel" aria-labelledby="home-tab">
<table class="table table-sm table-dark table-bordered text-center" id="tallytab">
<thead>
<tr>
<th width="20%">Address</th>
<th width="10%">1</th>
<th>UMD Text</th>
<th width="10%">2</th>
<th width="10%">3</th>
<th width="10%">4</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="tab-pane fade" id="stats" role="tabpanel" aria-labelledby="stats-tab">
<table class="table table-sm table-bordered table-striped " id="statstable">
<thead>
<tr>
<th>Value</th>
<th>Count</th>
</tr>
</thead>
<tbody>
<tr>
<td>UDP V3.1 Packets</td>
<td id="udp3count"></td>
</tr>
<tr>
<td>UDP V4.0 Packets</th>
<td id="udp4count"></td>
</tr>
<tr>
<td>UDP V5.0 Packets</th>
<td id="udp5count"></td>
</tr>
<tr>
<td>TCP V3.1 Packets</th>
<td id="tcp3count"></td>
</tr>
<tr>
<td>TCP V4.0 Packets</th>
<td id="tcp4count"></td>
</tr>
<tr>
<td>UDP Errors</th>
<td id="udpErrors"></td>
</tr>
<tr>
<td>TCP Errors</th>
<td id="tcpErrors"></td>
</tr>
</tbody>
</table>
</div>
<div class="tab-pane fade" id="settings" role="tabpanel" aria-labelledby="contact-tab">
<pre id="settingsjson"></pre>
</div>
<div class="tab-pane fade" id="about" role="tabpanel" aria-labelledby="contact-tab">
<h4>TallyView 1.2</h3>
<p>Copyright © 2019-2024 Rascular Technology</p>
</div>
</div>
<script src="jsout/renderer.js"></script>
</main>
</body>
</html>