forked from pathrise-eng/pathrise-python-tutor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvisualize.html
More file actions
62 lines (45 loc) · 1.79 KB
/
visualize.html
File metadata and controls
62 lines (45 loc) · 1.79 KB
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">
<!--
Python Tutor: https://github.com/pgbovine/OnlinePythonTutor/
Copyright (C) Philip Guo (philip@pgbovine.net)
LICENSE: https://github.com/pgbovine/OnlinePythonTutor/blob/master/LICENSE.txt
-->
<head>
<title>Visualize Python, Java, JavaScript, C, C++, Ruby code execution</title>
<meta http-equiv="Content-type" content="text/html; charset=UTF-8"/>
<script type="text/javascript" src="build/visualize.bundle.js?ef8faad903" charset="utf-8"></script>
</head>
<body>
<div class="s4"></div>
<div class="title-container">
<h3 class="eyebrow">Visualize your Algorithms</h3>
<h1 class="dashboard-title">Pathrise Python Code Visualizer</h1>
</div>
<div id="pyInputPane">
<div id="codeInputWarnings">Write code in
<select id="pythonVersionSelector">
<option value="3" selected>Python 3.6</option>
<!-- <option value="2">Python 2.7</option>
<option value="py3anaconda">Python 3.6 with Anaconda (experimental)</option>
<option value="java">Java 8</option>
<option value="c">C (gcc 4.8, C11)</option>
<option value="cpp">C++ (gcc 4.8, C++11)</option>
<option value="js">JavaScript ES6</option>
<option value="ts">TypeScript 1.4</option>
<option value="ruby">Ruby 2.2</option> -->
</select>
</div>
<div id="codeInputPane"></div>
<div id="frontendErrorOutput"></div>
<p>
<button id="executeBtn" class="bigBtn" type="button">Visualize Execution</button>
<!-- <button style="margin-left: 20px;" id="liveModeBtn" class="bigBtn" type="button">Live Programming Mode</button> -->
</p>
</div>
<!-- <div id="output-container"> -->
<div id="pyOutputPane"></div>
<!-- </div> -->
<div id="chat_div"></div>
</body>
</html>