-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
41 lines (41 loc) · 1.83 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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>WebSocket Server</title>
<!-- build:css styles/app.css -->
<link rel="stylesheet" type="text/css" href="index.css">
<!-- endbuild -->
<script type="text/javascript" src="telnetAgent.js"></script>
<script type="text/javascript" src="charset/charset.js"></script>
<script type="text/javascript" src="sha1.js"></script>
<script type="text/javascript" src="http.js"></script>
<script type="text/javascript" src="index.js"></script>
</head>
<body>
<div class="hero-unit">
<h1>WebSocket Server</h1>
<p>Serving you locally</p>
<p>
<div class="checkbox"><label><input type="checkbox" id="autoStart"/> Run in the background</label></div>
<input type="file" webkitdirectory id="directory" style="display:none"/>
<select id="hosts">
<option value="127.0.0.1">lo - 127.0.0.1</option>
</select>
<input type="text" id="port" value="8080"/><br />
<button id="start" class="btn btn-primary btn-large" disabled>Start</button>
<button id="stop" class="btn btn-warning btn-large" disabled>Stop</button>
<button id="hide" class="btn btn-success btn-large">Hide</button>
</p>
</div>
<pre id="logger"></pre>
<!-- hidden elements to convert unicode to gb2312, shift-jis, etc. -->
<form id="u2b_form" action="charset/u2b.htm" target="u2b_frame">
<input type="hidden" id="u2b_ustr" name="u2b_ustr">
</form>
<iframe id="u2b_frame" name="u2b_frame" style="display:none;"></iframe>
</body>
</html>