-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
141 lines (124 loc) · 5.3 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?xml version="1.0" encoding="UTF-8"?>
<html>
<head>
<title>aartifact light 2013.1</title>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<!--<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>-->
<script type="text/javascript" src="external/head.load.min.js"></script>
<script type="text/javascript" src="external/jquery.1.7.0.min.js"></script>
<script type="text/javascript" src="utilities/Include.js"></script>
<script>
function ge(id) { return document.getElementById(id); }
$('#messages').html('<b>Loading scripts...</b>');
$(document).ready(function(){
//$('#body').load('interface.html', function(){
$('#messages').html('<b>Loading scripts...</b>');
$('#overlay').show();
Include.includes(
'utilities/String.js',
'utilities/UUID.js',
'utilities/Array.js',
'utilities/Map.js',
'utilities/Math.js',
'utilities/Context.js',
'utilities/Enumeration.js',
'utilities/Environment.js',
'utilities/EquivalenceClasses.js',
'utilities/Error.js',
'utilities/JSCC.js',
'utilities/StaggeredIterator.js',
'utilities/Sylvester.js',
'interface/WidgetFilterableListTable.js',
'interface/WidgetPanel.js',
'interface/WidgetPanelList.js',
'interface/WidgetPanelsTabbed.js',
'interface/WidgetPanelsTabbedCollapsible.js',
'interface/WidgetTextAreaResizable.js',
'interface/WidgetTextFilter.js',
'aartifact.js',
'regimes/undergrad_instruction_linear_algebra/regime.js'
);
//});
});
</script>
<link rel="stylesheet" type="text/css" href="interface/WidgetFilterableListTable.css" >
<link rel="stylesheet" type="text/css" href="interface/WidgetPanelsTabbedCollapsible.css" >
<link rel="stylesheet" type="text/css" href="interface.css" >
<link rel="stylesheet" type="text/css" href="math.css" >
</head>
<body id="body">
<div id="container">
<!-- overlay box -->
<div id="overlay"
style="display:none; position:absolute; width:100%; height:100%; text-align:center; background-color:#FFFFFF; border:0px solid #FFFFFF;">
<div id="messages" style="position:relative; top:40%;"></div>
</div>
<!-- /overlay box -->
<div id="bartop">
<div style="float:left; margin-left:10px; margin-top:9px;"><b>aartifact light 2013.1</b></div>
<div style="float:right; margin-right:10px; margin-top:9px;">
<a href="https://www.google.com/chrome">latest version of Google Chrome</a>
| <a href="http://www.mozilla.org/firefox/fx/">latest version of Mozilla Firefox</a>
| <a href="interface.html">refresh</a>
| <a href="http://www.aartifact.org/">about</a>
</div>
</div>
<!-- wrapper to hide interface on IE -->
<!--[if IE]>
<div style="width:100%; margin:30px; padding:20px; text-align:center; background-color:#F2D5D5; border:2px solid firebrick;">
This tool is currently incompatible with Internet Explorer.
Please download the latest version of
<a href="http://www.mozilla.org/firefox/fx/">Mozilla Firefox</a>
or <a href="http://www.google.com/chrome">Google Chrome</a>.
</div>
<div style="display:none;">
<![endif]-->
<table id="panels">
<tr>
<td style="width:50%; vertical-align:top; text-align:right;"></td>
<td style="width:50%; vertical-align:top;"></td>
</tr>
<tr>
<td style="width:50%; vertical-align:top; text-align:right;">
<div style="display:inline; float:right; margin-top:9px; margin-bottom:-30px; padding-bottom:2px;
font-size:12px; font-family:Verdana,Arial,sans-serif">
<!--update breakdown automatically <input type="checkbox" id="automatic"/> -->
</div>
<div id="panel_in" style="margin-top:33px;">
<div style="height:100%; width:100%;">
<div id="input_widget_container">
<textarea id="input_text" rows="20"
onkeydown="$('#input_text').data('WidgetTextAreaResizable').fit();"
onkeypress="$('#input_text').data('WidgetTextAreaResizable').fit();"
onkeyup="$('#input_text').data('WidgetTextAreaResizable').fit();"
onclick="$('#input_text').data('WidgetTextAreaResizable').fit();"
onblur="$('#input_text').data('WidgetTextAreaResizable').fit();"
onfocus="$('#input_text').data('WidgetTextAreaResizable').fit();"
></textarea>
</div>
</div>
</div> <!--/panel_in -->
<img style="height:10px; width:100%;" src="images/shadow_btm.png"/>
<!-- acknowledgements -->
<div style="text-align:left; float:left; color:#BBBBBB; font-size:10px; font-family:Tahoma,Arial,Sans-serif; margin:5px;">
This software is built and maintained with support from
NSF Grants No.<br/> 0820138 and No. 0720604 and the Hariri Institute at Boston University.
</div>
<!-- /acknowledgements -->
</td>
<td style="width:50%; vertical-align:top;">
<div id="panels_tabbed"></div>
<img style="height:10px; width:100%;" src="images/shadow_btm.png"/>
<!--<div style="display:block; background-image:url('images/shadow_btm.png'); height:10px;"></div>-->
</td>
</tr>
<tr><td></td><td></td></tr>
</table>
<!--[if IE]>
</div>
<![endif]-->
<!-- /wrapper to hide interface on IE -->
</div>
<!--eof-->
</body>
</html>