-
Notifications
You must be signed in to change notification settings - Fork 27
/
opt-ipy.html
62 lines (45 loc) · 2.39 KB
/
opt-ipy.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Online Python Tutor: interactive mode</title>
<!-- dependencies for pytutor.js -->
<script type="text/javascript" src="js/d3.v2.min.js"></script>
<script type="text/javascript" src="js/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="js/jquery.ba-bbq.min.js"></script> <!-- for handling back button and URL hashes -->
<script type="text/javascript" src="js/jquery.jsPlumb-1.3.10-all-min.js "></script> <!-- for rendering SVG connectors
DO NOT UPGRADE ABOVE 1.3.10 OR ELSE BREAKAGE WILL OCCUR -->
<script type="text/javascript" src="js/jquery-ui-1.11.4/jquery-ui.min.js"></script> <!-- for sliders and other UI elements -->
<link type="text/css" href="js/jquery-ui-1.11.4/jquery-ui.css" rel="stylesheet" />
<!-- Python Tutor frontend code and styles -->
<script type="text/javascript" src="js/pytutor.js"></script>
<link rel="stylesheet" href="css/pytutor.css"/>
<script type="text/javascript" src="js/opt-ipy.js"></script>
<link rel="stylesheet" href="css/opt-frontend.css"/>
</head>
<body>
<div id="vizDiv"></div>
<div id="footer">
<p>
<a href="http://pythontutor.com/">Online Python Tutor</a> supports <a
href="http://www.python.org/doc/2.7/">Python 2.7</a> and <a
href="http://www.python.org/doc/3.3.0/">Python 3.3</a> with limited module
imports and no file I/O.
</p>
<p>Have a question? Maybe the <a
href="https://github.com/pgbovine/OnlinePythonTutor/blob/master/v3/docs/user-FAQ.md">FAQ</a>
or other <a
href="https://github.com/pgbovine/OnlinePythonTutor/blob/master/v3/docs/">documentation</a>
can help. Or check out its code at <a
href="https://github.com/pgbovine/OnlinePythonTutor/">GitHub</a>.</p>
<p>Join the <a
href="https://groups.google.com/forum/#!forum/pythontutor-users">pythontutor-users</a>
mailing list to participate in user discussions and <a
href="https://groups.google.com/forum/#!forum/pythontutor-announce">pythontutor-announce</a>
to receive occasional announcements.
(Your name and email address will be kept private; only the list owner can see them.)</p>
<p style="margin-top: 8px;">
Copyright © <a href="http://www.pgbovine.net/">Philip Guo</a>. All rights reserved.
</p>
</div>
</body>
</html>