blob: 669cda7de6e5c227fd95011ac554c83a16edd8fa (
plain)
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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en">
<head>
<meta http-equiv="Pragma" content="no-cache"/>
<meta http-equiv="Expires" content="-1"/>
<title>Munia</title>
<link rel="stylesheet" type="text/css" href="munia.css" media="screen"/>
</head>
<body id="body">
<div id="wsnode_status">NodeProto not initialized</div>
<div id="input_div">
NodeProto: <input type="text" id="input_node_data"
onkeyup="node_submit_KeyUpHandler(this, event)"
value=""/>
<input type="button" value="submit" onclick="node_submit()"/><br/>
</div>
<div id="boards" class="boards"></div>
<pre class="log" id="log">Event information log
=====================
</pre>
<script type="text/javascript" charset="utf-8" src="proto.js"></script>
<script type="text/javascript" charset="utf-8" src="node.js"></script>
<script type="text/javascript" charset="utf-8" src="view.js"></script>
<script type="text/javascript" charset="utf-8" src="handler.js"></script>
</body>
</html>
|