-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
86 lines (67 loc) · 4.88 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
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
<!--
Based on:
- https://github.com/tree-sitter/tree-sitter/blob/master/cli/src/web_ui.html
- https://github.com/stsewd/tree-sitter-rst/blob/master/docs/index.html
Assets from:
- https://github.com/tree-sitter/tree-sitter/blob/master/docs/assets/js/playground.js
- https://github.com/tree-sitter/tree-sitter.github.io/blob/master/tree-sitter.js
- https://github.com/tree-sitter/tree-sitter.github.io/blob/master/tree-sitter.wasm
-->
<head>
<meta charset="utf-8">
<title>TLA+ Web Explorer</title>
<meta name="description" content="An interactive, web-based environment for exploring and sharing TLA+ specifications.">
<!-- <link rel="icon" type="image/x-icon" href="assets/favicon.ico"> -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.45.0/codemirror.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/clusterize.js/0.18.0/clusterize.min.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<link rel="stylesheet" href="//code.jquery.com/ui/1.13.2/themes/base/jquery-ui.css">
<!-- <link rel="icon" type="image/png" href="https://tree-sitter.github.io/tree-sitter/assets/images/favicon-32x32.png" sizes="32x32" /> -->
<!-- <link rel="icon" type="image/png" href="https://tree-sitter.github.io/tree-sitter/assets/images/favicon-16x16.png" sizes="16x16" /> -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono&family=Source+Code+Pro&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<!-- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous"> -->
</head>
<body>
<script src="https://unpkg.com/mithril/mithril.js"></script>
<!-- <div id="toggle-spec-button" onclick="toggleSpec()">Toggle Spec</div> -->
<!-- <div id="app-title"><a href="https://github.com/will62794/tla-web">TLA+ Web Explorer</a></div> -->
<!-- TLA+ code pane. -->
<!-- <div id="code-input-pane">
<div id="code-container">
<textarea id="code-input"></textarea>
</div>
</div> -->
<!-- Display pane. -->
<!-- <div id="trace-pane">
<div id="stategraph" style="height:350px;" hidden><h3>state graph</h3></div>
<div id="poss-next-states-title" class="pane-title">Choose Initial State</div>
<div id="initial-states" class="tlc-state"></div>
</div> -->
<!-- <div id="trace-container">
</div> -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/ui/1.13.2/jquery-ui.min.js" integrity="sha256-lSjKY0/srUM9BE3dPm+c4fBo1dky2v27Gdjm2uoZaL0=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/lodash@4.17.21/lodash.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.21/lodash.js" integrity="sha512-2iwCHjuj+PmdCyvb88rMOch0UcKQxVHi/gsAml1fN3eg82IDaO/cdzzeXX4iF2VzIIes7pODE1/G0ts3QBwslA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.45.0/codemirror.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/clusterize.js/0.18.0/clusterize.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- CytoscapeJS (for graph visualizations) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/cytoscape/3.20.0/cytoscape.min.js" integrity="sha512-cjmYAonfXK+azDmWqvnqq8xmygHRHqVI7S0zuRxQnvcYVeoakwthRX6pPKoXfG1oIjDvMUtteRV9PhQjJwKWxQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://unpkg.com/dagre@0.7.4/dist/dagre.js"></script>
<script src="https://cdn.jsdelivr.net/npm/cytoscape-dagre@2.5.0/cytoscape-dagre.min.js"></script>
<script src="js/addon/mode/simple.js"></script>
<script src="js/object_hash.js" crossorigin="anonymous"></script>
<script src="js/hash-sum/hash-sum.js" crossorigin="anonymous"></script>
<script src=js/tlamode.js></script>
<script src=js/test_spec.js></script>
<script src=js/eval.js></script>
<script>LANGUAGE_BASE_URL = "js";</script>
<script src=js/tree-sitter.js></script>
<script src=js/app.js></script>
</body>