-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmulti.html
88 lines (85 loc) · 3.43 KB
/
multi.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
<!DOCTYPE html>
<html>
<head>
<title>TrafGrapher</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; img-src 'self' data:">
<link href="style.css" rel="stylesheet" type="text/css">
<script src="flot/jquery.min.js"></script>
<script src="flot/jquery.flot.min.js"></script>
<script src="grapher.js"></script>
</head>
<body>
<!-- Definition of template named "main". -->
<div id="graph0" class="trafgrapher_template_main">
<h2>Header redefined later.</h2>
<div id="loader0" class="loader">
<div id="error0" class="error"></div>
<h1>Loading...</h1>
<h2 id="progress0"> </h2>
</div>
<div id="placeholder0" class="graph">
</div>
<div class="selection">
<select id="graph_type0">
<option value="jo" selected="selected">Avg OUT/IN</option>
<option value="o">Avg OUT</option>
<option value="i">Avg IN</option>
<option value="JO">Max OUT/IN</option>
<option value="O">Max OUT</option>
<option value="I">Max IN</option>
</select>
<select id="unit_type0">
<option value="b" selected="selected">bits</option>
<option value="B">bytes</option>
</select>
<select id="interval0">
<option value="4">4 hours [4]</option>
<option value="8">8 hours [8]</option>
<option value="24" selected="selected">1 day [1]</option>
<option value="72">3 days [3]</option>
<option value="168">1 week [7]</option>
<option value="744">1 month [5]</option>
<option value="8766">1 year [9]</option>
<option value="17532">2 years [2]</option>
<option value="26298">3 years [0]</option>
</select>
<button class="b_reload" id="b_reload0" title="Reload [R]"> </button>
<button class="b_select_all" id="b_select_all0" title="Select all [A]"> </button>
<button class="b_select_invert" id="b_select_inv0" title="Invert sel. [X]"> </button>
<button class="b_select_none" id="b_select_none0" title="Select none [N]"> </button>
<button class="b_select_zero" id="b_select_zero" title="Invert zero rows"> </button>
<button class="b_zoom_out" id="b_zoom_out0" title="Zoom out [Z]"> </button>
<input type="text" value="" size="9" id="value_one0" class="right"/>
<input type="text" value="" size="9" id="value_sum0" class="right"/>
<br/>
<input type="text" value="" size="30" id="description0"/>
@ <input type="text" value="" size="20" id="switchname0"/>
<input type="submit" value="(i)" id="toggle_info0"/>
<input type="submit" value="(f)" id="toggle_filter0"/>
</div>
<div id="info_table0" class="info">
Interface info.<br/>
Hover on graph to fill this.
</div>
<ul id="filter0"></ul>
</div>
<!-- First use of template named "main". -->
<div id="graph1" class="trafgrapher_conf_main">
<h2>Graph for source1</h2>
<div class="selection">
<input type="hidden" name="json_file" value="/source1/"/>
</div>
</div>
<!-- Second use of template named "main". -->
<div id="graph2" class="trafgrapher_conf_main">
<h2>Graph for source2</h2>
<div class="selection">
<input type="hidden" name="json_file" value="/source2/"/>
</div>
</div>
<div class="footer">
<a href="https://www.salstar.sk/trafgrapher/">TrafGrapher v#.#</a>
</div>
</body>
</html>