-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (87 loc) · 5.08 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<!-- <html> -->
<head>
<link rel="stylesheet" type="text/css" href="formulae.css">
<script src='lib/decimal.min.js'></script>
<script src="formulae/expression.js"></script>
<script src="formulae/formulae.js"></script>
<script src="formulae/formulae_data.js"></script>
<script src="formulae/formulae_forms.js"></script>
<script src="formulae/formulae_settings.js"></script>
<script src="formulae/reduction.js"></script>
<script src="formulae/canonical_arithmetic.js"></script>
<title>Fōrmulæ, a scientific programming language</title>
<meta name="viewport" content="width=device-width">
<meta name="description" content="Write, save and run Fōrmulæ programs online. Examine hundreds of Fōrmulæ programs and their results. Learn how to program in Fōrmulæ with tutorials and reference.">
<meta name="keywords" content="Fōrmulæ, Fōrmulae, Formulæ, Formulae, Programming language, Programming, Language, Symbolic, Scientific, Research, Math, Mathematics, Experimental mathematics, Visual, Pretty print, Pretty-print, Research">
<meta name="author" content="Laurence R. Ugalde">
<meta charset="utf-8">
</head>
<body>
<div id="header">
<table border=0 cellspacing=0 cellpadding=0><tr>
<td>
<img src='img/logo.png'>
<td>
<td style="vertical-align: middle;">
<button id="button-home" title="Home" style="border: none; background: none; cursor:pointer; outline: none;" hidden><img src='img/home.png'></button>
<td style="vertical-align: middle;">
<button id="button-new" title="New" style="border: none; background: none; cursor:pointer; outline: none;"><img src='img/new.png'></button>
<td style="vertical-align: middle;">
<button id="button-open" title="Open..." style="border: none; background: none; cursor:pointer; outline: none;"><img src='img/open.png'></button>
<input id="file-input" type="file" accept=".formulae" style="display: none;"/>
<td style="vertical-align: middle;">
<button id="button-save" title="Save..." style="border: none; background: none; cursor:pointer; outline: none;" hidden><img src='img/save.png'></button>
<td style="vertical-align: middle;">
<button id="button-pull" title="Pull" style="border: none; background: none; cursor:pointer; outline: none;" hidden><img src='img/pull.png'></button>
<td style="vertical-align: middle;">
<button id="button-push" title="Push" style="border: none; background: none; cursor:pointer; outline: none;" hidden><img src='img/push.png'></button>
<td style="vertical-align: middle;">
<button id="button-cut" title="Cut" style="border: none; background: none; cursor:pointer; outline: none;" hidden><img src='img/cut.png'></button>
<td style="vertical-align: middle;">
<button id="button-copy" title="Copy" style="border: none; background: none; cursor:pointer; outline: none;" hidden><img src='img/copy.png'></button>
<td style="vertical-align: middle;">
<button id="button-paste" title="Paste" style="border: none; background: none; cursor:pointer; outline: none;" hidden><img src='img/paste.png'></button>
<td style="vertical-align: middle;">
<button id="button-ins-after" title="Insert row below" style="border: none; background: none; cursor:pointer; outline: none;" hidden><img src='img/ins_row_after.png'></button>
<td style="vertical-align: middle;">
<button id="button-ins-before" title="Inser row above" style="border: none; background: none; cursor:pointer; outline: none;" hidden><img src='img/ins_row_before.png'></button>
<td style="vertical-align: middle;">
<button id="button-delete" title="Delete row" style="border: none; background: none; cursor:pointer; outline: none;" hidden><img src='img/del_row.png'></button>
<td style="vertical-align: middle;">
<button id="button-change-type" title="Change type" style="border: none; background: none; cursor:pointer; outline: none;" hidden><img src='img/pin.png'></button>
<td style="vertical-align: middle;">
<button id="button-execute_sticky" title="Execute sticky rows" type" style="border: none; background: none; cursor:pointer; outline: none;" hidden><img src='img/pin_run.png'></button>
<td style="vertical-align: middle;">
<button id="button-tools" title="Tools..." style="border: none; background: none; cursor:pointer; outline: none;" hidden><img src='img/tools.png'></button>
<td style="vertical-align: middle;">
<button id="button-settings" title="Settings..." style="border: none; background: none; cursor:pointer; outline: none;" hidden><img src='img/settings.png'></button>
<td style="width: 100%;">
<td style="vertical-align: right;">
<button id="button-mode">Edit / run</button>
<td>
</table>
</div> <!-- header -->
<div id="sidebar">
<ul id="tree"></ul>
</div> <!-- sidebar -->
<div id="dragbar"></div>
<div id="main" tabindex="0">
<div class="container" id="container">
</div>
<div id="menu"></div>
</div><!-- main -->
<div id="footer">
<span id="s_info"></span>
<br>
<span id="h_info" style="color: blue;"></span>
</div> <!-- footer -->
<div id="mymodal" class="modal" tabindex="-1">
<div id="modalContent" style="background-color: white; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%)" />
</div>
<script>
Formulae.start();
</script>
</body>
</html>