-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
151 lines (120 loc) · 7.5 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
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8"/>
<title>IOCaml-Notebook</title>
<link rel="shortcut icon" type="image/x-icon" href="./static/base/images/favicon.ico"/>
<meta http-equiv="X-UA-Compatible" content="chrome=1"/>
<link rel="stylesheet" href="./static/components/jquery-ui/themes/smoothness/jquery-ui.min.css" type="text/css"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML-full&delayStartupUntil=configured" charset="utf-8">
</script>
<script type="text/javascript">
// MathJax disabled, set as null to distingish from *missing* MathJax,
// where it will be undefined, and should prompt a dialog later.
window.mathjax_url = 'http://cdn.mathjax.org/mathjax/latest/MathJax.js';
</script>
<link rel="stylesheet" href="./static/components/codemirror/lib/codemirror.css"/>
<link rel="stylesheet" href="./static/style/style.min.css" type="text/css"/>
<link rel="stylesheet" href="./static/notebook/css/override.css" type="text/css"/>
<link rel="stylesheet" href="./static/custom/custom.css" type="text/css"/>
<script src="./static/components/requirejs/require.js" type="text/javascript" charset="utf-8"> </script>
<script>
require.config({
baseUrl: './static/',
});
</script>
</head>
<body data-project="./notebooks" data-base-project-url="" data-base-kernel-url="/"
data-notebook-id=2048.ipynb
class="notebook_app">
<noscript>
<div id="noscript">
IPython Notebook requires JavaScript.<br/>
Please enable it to proceed.
</div>
</noscript>
<div id="header" class="navbar navbar-static-top">
<div class="navbar-inner navbar-nobg">
<div class="container">
<div id="ipython_notebook" class="nav brand pull-left">
<a href="." alt="dashboard">
<img src="./static/base/images/ipynblogo.png" alt="IPython Notebook"/>
</a>
</div>
<span id="save_widget" class="nav pull-left">
<span id="notebook_name"> </span>
</span>
</div>
</div>
</div>
<div id="site">
<div id="ipython-main-app">
<div id="notebook_panel">
<div id="notebook"> </div>
<div id="pager_splitter"> </div>
<div id="pager">
<div id="pager_button_area">
</div>
<div id="pager-container" class="container"> </div>
</div>
</div>
</div>
<div id="tooltip" class="ipython_tooltip" style="display:none"> </div>
</div>
<script src="./static/components/jquery/jquery.min.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/components/jquery-ui/ui/minified/jquery-ui.min.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/components/bootstrap/bootstrap/js/bootstrap.min.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/base/js/namespace.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/base/js/page.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/auth/js/loginwidget.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/components/codemirror/lib/codemirror.js" charset="utf-8"> </script>
<script type="text/javascript">
CodeMirror.modeURL = './static/components/codemirror/mode/%N/%N.js';
</script>
<script src="./static/components/codemirror/addon/mode/loadmode.js" charset="utf-8"> </script>
<script src="./static/components/codemirror/addon/mode/multiplex.js" charset="utf-8"> </script>
<script src="./static/components/codemirror/addon/mode/overlay.js" charset="utf-8"> </script>
<script src="./static/components/codemirror/addon/edit/matchbrackets.js" charset="utf-8"> </script>
<script src="./static/components/codemirror/addon/comment/comment.js" charset="utf-8"> </script>
<script src="./static/components/codemirror/mode/htmlmixed/htmlmixed.js" charset="utf-8"> </script>
<script src="./static/components/codemirror/mode/xml/xml.js" charset="utf-8"> </script>
<script src="./static/components/codemirror/mode/javascript/javascript.js" charset="utf-8"> </script>
<script src="./static/components/codemirror/mode/css/css.js" charset="utf-8"> </script>
<script src="./static/components/codemirror/mode/rst/rst.js" charset="utf-8"> </script>
<script src="./static/components/codemirror/mode/markdown/markdown.js" charset="utf-8"> </script>
<script src="./static/components/codemirror/mode/gfm/gfm.js" charset="utf-8"> </script>
<script src="./static/components/codemirror/mode/python/python.js" charset="utf-8"> </script>
<script src="./static/notebook/js/codemirror-ipython.js" charset="utf-8"> </script>
<script src="./static/components/highlight.js/build/highlight.pack.js" charset="utf-8"> </script>
<script src="./static/dateformat/date.format.js" charset="utf-8"> </script>
<script src="./static/base/js/events.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/base/js/utils.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/base/js/dialog.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/notebook/js/layoutmanager.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/notebook/js/mathjaxutils.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/notebook/js/outputarea.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/notebook/js/cell.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/notebook/js/celltoolbar.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/notebook/js/codecell.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/notebook/js/completer.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/notebook/js/textcell.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/services/kernels/js/kernel.2048.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/notebook/js/savewidget.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/notebook/js/quickhelp.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/notebook/js/pager.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/notebook/js/menubar.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/notebook/js/toolbar.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/notebook/js/maintoolbar.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/notebook/js/notebook.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/notebook/js/notificationwidget.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/notebook/js/notificationarea.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/notebook/js/tooltip.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/notebook/js/config.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/notebook/js/main.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/notebook/js/contexthint.js" charset="utf-8"> </script>
<script src="./static/notebook/js/celltoolbarpresets/default.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/notebook/js/celltoolbarpresets/slideshow.js" type="text/javascript" charset="utf-8"> </script>
<script src="./static/custom/custom.js" type="text/javascript" charset="utf-8"> </script>
</body>
</html>