File: index.html

package info (click to toggle)
python-websocketd 0.5-1
  • links: PTS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 368 kB
  • sloc: python: 1,309; javascript: 382; sh: 23; makefile: 11
file content (17 lines) | stat: -rw-r--r-- 654 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8"/>
		<title>Test server</title>
		<!-- Functions that make it easier to dynamically construct web pages. -->
		<script type="application/javascript" src="builders.js"></script>
		<!-- Functions that handle the websocket connection. -->
		<script type="application/javascript" src="rpc.js"></script>
		<!-- Code for this page. -->
		<script type="application/javascript" src="page.js"></script>
	</head>
	<body>
		<label><input type='checkbox' disabled='disabled' id='connected'>Connected</label>
		<p>Please open the debugging console to see the output (ctrl-shift-k in firefox)</p>
	</body>
</html>