forked from ffnord/gluon-alfred-vis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (45 loc) · 1.78 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
<!DOCTYPE html>
<html>
<head>
<title>FFKI - Alfred JSON Status</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/list.css" />
<script type="text/javascript" src="lib/frameworks/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="lib/frameworks/htmlentities.js"></script>
<script type="text/javascript" src="lib/gluon-alfred-vis.js"></script>
</head>
<body>
<header>
<h1><a href="/" id="sitelink">kiel.freifunk.net</a></h1>
<ul>
<li><a href="http://freifunk.in-kiel.de/ffmap/graph.html">Graph</a></li>
<li><a href="http://freifunk.in-kiel.de/ffmap/geomap.html">Karte</a></li>
<li><a href="http://freifunk.in-kiel.de/ffmap/list.html">Liste</a></li>
<li><a href="http://freifunk.in-kiel.de/gluon-alfred-vis">Alfred</a></li>
</ul>
</header>
<div class="container">
<h1>Knotenliste</h1>
<table id="list"></table>
</div>
<table id="list" class="tablesorter tablesorter-default">
<thead id="headings">
<tr class="tablesorter-headerRow">
<th sort="str" id="hostname">hostname</th>
<th sort="num" id="uptime">uptime<br/>[h]</th>
<th sort="num" id="tx">tx<br/>[MiB]</th>
<th sort="num" id="rx">rx<br/>[MiB]</th>
<th sort="ver" id="firmware">firmware</th>
<th sort="ver" id="model">model</th>
<th sort="str" id="autoupdate">autoupdate</th>
<th sort="str" id="mac">mac</th>
<th sort="str" id="contact" class="contact-row">contact</th>
<th sort="num" id="longitude">long</th>
</tr>
</thead>
<tbody id="results">
<!-- this will be auto-populated -->
</tbody>
</table>
</body>
</html>