-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
44 lines (39 loc) · 1.73 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
<html>
<head>
<title>SCION Simulation Environment</title>
<!--
<script src="jquery.js"></script>
<script src="scion.js"></script>
-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/es5-shim/1.2.4/es5-shim.min.js"></script>
<script type="text/javascript" src="http://jbeard4.github.com/SCION/builds/latest/scion.js"></script>
<script src="lib/CodeMirror/lib/codemirror.js"></script>
<script src="lib/CodeMirror/mode/xml/xml.js"></script>
<script src="lib/CodeMirror/keymap/vim.js"></script>
<link rel="stylesheet" href="lib/CodeMirror/lib/codemirror.css"></link>
<script src="env.js"></script>
<link rel="stylesheet" href="style.css"></link>
</head>
<body>
<div id="left">
<textarea id="scxmlContent"></textarea>
<form id="scxmlLoadInitControls">
<input type="text" id="loadScxmlFromField"/>
<input type="submit" id="loadScxmlSubmit" value="Load"/>
<input type="button" id="initScxmlButton" value="Init"/>
</form>
</div>
<div id="right">
<div id="scxmlTrace"></div>
<form id="scxmlSimulationControls">
<input type="text" id="eventNameField"/>
<input type="submit" id="genEventSubmit" value="Gen"/>
<input type="checkbox" id="logOnentry"/>
<label for="logOnentry">Log State Entry</label>
<input type="checkbox" id="logOnexit"/>
<label for="logOnexit">Log State Exit</label>
</form>
</div>
</body>
</html>