Show More
@@ -1,244 +1,246 b'' | |||
|
1 | 1 | <!DOCTYPE HTML> |
|
2 | 2 | <html> |
|
3 | 3 | |
|
4 | 4 | <head> |
|
5 | 5 | <meta charset="utf-8"> |
|
6 | 6 | |
|
7 | 7 | <title>IPython Notebook</title> |
|
8 | 8 | |
|
9 | 9 | <link rel="stylesheet" href="static/jquery/css/themes/aristo/jquery-wijmo.css" type="text/css" /> |
|
10 | 10 | <!-- <link rel="stylesheet" href="static/jquery/css/themes/rocket/jquery-wijmo.css" type="text/css" /> --> |
|
11 | 11 | <!-- <link rel="stylesheet" href="static/jquery/css/themes/smoothness/jquery-ui-1.8.14.custom.css" type="text/css" />--> |
|
12 | 12 | |
|
13 | 13 | <!-- <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" charset="utf-8"></script> --> |
|
14 | 14 | <script type='text/javascript' src='static/mathjax/MathJax.js?config=TeX-AMS_HTML' charset='utf-8'></script> |
|
15 | 15 | <script type="text/javascript"> |
|
16 | 16 | if (typeof MathJax == 'undefined') { |
|
17 | 17 | console.log("No local MathJax, loading from CDN"); |
|
18 | 18 | document.write(unescape("%3Cscript type='text/javascript' src='http://cdn.mathjax.org/mathjax/latest/MathJax.js%3Fconfig=TeX-AMS_HTML' charset='utf-8'%3E%3C/script%3E")); |
|
19 | 19 | }else{ |
|
20 | 20 | console.log("Using local MathJax"); |
|
21 | 21 | } |
|
22 | 22 | </script> |
|
23 | 23 | |
|
24 |
<link rel="stylesheet" href="static/codemirror |
|
|
25 |
<link rel="stylesheet" href="static/codemirror |
|
|
26 |
<link rel="stylesheet" href="static/codemirror |
|
|
27 |
<link rel="stylesheet" href="static/codemirror |
|
|
24 | <link rel="stylesheet" href="static/codemirror/lib/codemirror.css"> | |
|
25 | <link rel="stylesheet" href="static/codemirror/mode/markdown/markdown.css"> | |
|
26 | <link rel="stylesheet" href="static/codemirror/mode/rst/rst.css"> | |
|
27 | <link rel="stylesheet" href="static/codemirror/theme/ipython.css"> | |
|
28 | <link rel="stylesheet" href="static/codemirror/theme/default.css"> | |
|
28 | 29 | |
|
29 | 30 | <link rel="stylesheet" href="static/prettify/prettify.css"/> |
|
30 | 31 | |
|
31 | 32 | <link rel="stylesheet" href="static/css/boilerplate.css" type="text/css" /> |
|
32 | 33 | <link rel="stylesheet" href="static/css/layout.css" type="text/css" /> |
|
33 | 34 | <link rel="stylesheet" href="static/css/base.css" type="text/css" /> |
|
34 | 35 | <link rel="stylesheet" href="static/css/notebook.css" type="text/css" /> |
|
35 | 36 | <link rel="stylesheet" href="static/css/renderedhtml.css" type="text/css" /> |
|
36 | 37 | |
|
37 | 38 | |
|
38 | 39 | </head> |
|
39 | 40 | |
|
40 | 41 | <body> |
|
41 | 42 | |
|
42 | 43 | <div id="header"> |
|
43 | 44 | <span id="ipython_notebook"><h1>IPython Notebook</h1></span> |
|
44 | 45 | <span id="save_widget"> |
|
45 | 46 | <input type="text" id="notebook_name" size="20"></textarea> |
|
46 | 47 | <span id="notebook_id" style="display:none">{{notebook_id}}</span> |
|
47 | 48 | <button id="save_notebook"><u>S</u>ave</button> |
|
48 | 49 | </span> |
|
49 | 50 | <span id="kernel_status">Idle</span> |
|
50 | 51 | </div> |
|
51 | 52 | |
|
52 | 53 | <div id="main_app"> |
|
53 | 54 | |
|
54 | 55 | <div id="left_panel"> |
|
55 | 56 | |
|
56 | 57 | <div id="notebook_section"> |
|
57 | 58 | <h3 class="section_header">Notebook</h3> |
|
58 | 59 | <div class="section_content"> |
|
59 | 60 | <div class="section_row"> |
|
60 | 61 | <span id="new_open" class="section_row_buttons"> |
|
61 | 62 | <button id="new_notebook">New</button> |
|
62 | 63 | <button id="open_notebook">Open</button> |
|
63 | 64 | </span> |
|
64 | 65 | <span class="section_row_header">Actions</span> |
|
65 | 66 | </div> |
|
66 | 67 | <div class="section_row"> |
|
67 | 68 | <span> |
|
68 | 69 | <select id="download_format"> |
|
69 | 70 | <option value="json">ipynb</option> |
|
70 | 71 | <option value="py">py</option> |
|
71 | 72 | </select> |
|
72 | 73 | </span> |
|
73 | 74 | <span class="section_row_buttons"> |
|
74 | 75 | <button id="download_notebook">Download</button> |
|
75 | 76 | </span> |
|
76 | 77 | </div> |
|
77 | 78 | <div class="section_row"> |
|
78 | 79 | <span class="section_row_buttons"> |
|
79 | 80 | <span id="print_widget"> |
|
80 | 81 | <button id="print_notebook">Print</button> |
|
81 | 82 | </span> |
|
82 | 83 | </span> |
|
83 | 84 | </div> |
|
84 | 85 | </div> |
|
85 | 86 | </div> |
|
86 | 87 | |
|
87 | 88 | <div id="cell_section"> |
|
88 | 89 | <h3 class="section_header">Cell</h3> |
|
89 | 90 | <div class="section_content"> |
|
90 | 91 | <div class="section_row"> |
|
91 | 92 | <span class="section_row_buttons"> |
|
92 | 93 | <button id="delete_cell"><u>D</u>elete</button> |
|
93 | 94 | </span> |
|
94 | 95 | <span class="section_row_header">Actions</span> |
|
95 | 96 | </div> |
|
96 | 97 | <div class="section_row"> |
|
97 | 98 | <span id="cell_type" class="section_row_buttons"> |
|
98 | 99 | <button id="to_code"><u>C</u>ode</button> |
|
99 | 100 | <!-- <button id="to_html">HTML</button>--> |
|
100 | 101 | <button id="to_markdown"><u>M</u>arkdown</button> |
|
101 | 102 | </span> |
|
102 | 103 | <span class="button_label">Format</span> |
|
103 | 104 | </div> |
|
104 | 105 | <div class="section_row"> |
|
105 | 106 | <span id="cell_output" class="section_row_buttons"> |
|
106 | 107 | <button id="toggle_output"><u>T</u>oggle</button> |
|
107 | 108 | <button id="clear_all_output">ClearAll</button> |
|
108 | 109 | </span> |
|
109 | 110 | <span class="button_label">Output</span> |
|
110 | 111 | </div> |
|
111 | 112 | <div class="section_row"> |
|
112 | 113 | <span id="insert" class="section_row_buttons"> |
|
113 | 114 | <button id="insert_cell_above"><u>A</u>bove</button> |
|
114 | 115 | <button id="insert_cell_below"><u>B</u>elow</button> |
|
115 | 116 | </span> |
|
116 | 117 | <span class="button_label">Insert</span> |
|
117 | 118 | </div> |
|
118 | 119 | <div class="section_row"> |
|
119 | 120 | <span id="move" class="section_row_buttons"> |
|
120 | 121 | <button id="move_cell_up">Up</button> |
|
121 | 122 | <button id="move_cell_down">Down</button> |
|
122 | 123 | </span> |
|
123 | 124 | <span class="button_label">Move</span> |
|
124 | 125 | </div> |
|
125 | 126 | <div class="section_row"> |
|
126 | 127 | <span id="run_cells" class="section_row_buttons"> |
|
127 | 128 | <button id="run_selected_cell">Selected</button> |
|
128 | 129 | <button id="run_all_cells">All</button> |
|
129 | 130 | </span> |
|
130 | 131 | <span class="button_label">Run</span> |
|
131 | 132 | </div> |
|
132 | 133 | <div class="section_row"> |
|
133 | 134 | <span id="autoindent_span"> |
|
134 | 135 | <input type="checkbox" id="autoindent" checked="true"></input> |
|
135 | 136 | </span> |
|
136 | 137 | <span class="checkbox_label">Autoindent:</span> |
|
137 | 138 | </div> |
|
138 | 139 | </div> |
|
139 | 140 | </div> |
|
140 | 141 | |
|
141 | 142 | <div id="kernel_section"> |
|
142 | 143 | <h3 class="section_header">Kernel</h3> |
|
143 | 144 | <div class="section_content"> |
|
144 | 145 | <div class="section_row"> |
|
145 | 146 | <span id="int_restart" class="section_row_buttons"> |
|
146 | 147 | <button id="int_kernel">Interrupt</button> |
|
147 | 148 | <button id="restart_kernel">Restart</button> |
|
148 | 149 | </span> |
|
149 | 150 | <span class="section_row_header">Actions</span> |
|
150 | 151 | </div> |
|
151 | 152 | <div class="section_row"> |
|
152 | 153 | <span id="kernel_persist"> |
|
153 | 154 | <input type="checkbox" id="kill_kernel"></input> |
|
154 | 155 | </span> |
|
155 | 156 | <span class="checkbox_label">Kill kernel upon exit:</span> |
|
156 | 157 | </div> |
|
157 | 158 | </div> |
|
158 | 159 | </div> |
|
159 | 160 | |
|
160 | 161 | <div id="help_section"> |
|
161 | 162 | <h3 class="section_header">Help</h3> |
|
162 | 163 | <div class="section_content"> |
|
163 | 164 | <div class="section_row"> |
|
164 | 165 | <span id="help_buttons0" class="section_row_buttons"> |
|
165 | 166 | <a id="python_help" href="http://docs.python.org" target="_blank">Python</a> |
|
166 | 167 | <a id="ipython_help" href="http://ipython.org/documentation.html" target="_blank">IPython</a> |
|
167 | 168 | </span> |
|
168 | 169 | <span class="section_row_header">Links</span> |
|
169 | 170 | </div> |
|
170 | 171 | <div class="section_row"> |
|
171 | 172 | <span id="help_buttons1" class="section_row_buttons"> |
|
172 | 173 | <a id="numpy_help" href="http://docs.scipy.org/doc/numpy/reference/" target="_blank">NumPy</a> |
|
173 | 174 | <a id="scipy_help" href="http://docs.scipy.org/doc/scipy/reference/" target="_blank">SciPy</a> |
|
174 | 175 | </span> |
|
175 | 176 | </div> |
|
176 | 177 | <div class="section_row"> |
|
177 | 178 | <span id="help_buttons2" class="section_row_buttons"> |
|
178 | 179 | <a id="matplotlib_help" href="http://matplotlib.sourceforge.net/" target="_blank">MPL</a> |
|
179 | 180 | <a id="sympy_help" href="http://docs.sympy.org/dev/index.html" target="_blank">SymPy</a> |
|
180 | 181 | </span> |
|
181 | 182 | </div> |
|
182 | 183 | <div class="section_row"> |
|
183 | 184 | <span class="help_string">run selected cell</span> |
|
184 | 185 | <span class="help_string_label">Shift-Enter :</span> |
|
185 | 186 | </div> |
|
186 | 187 | <div class="section_row"> |
|
187 | 188 | <span class="help_string">run in terminal mode</span> |
|
188 | 189 | <span class="help_string_label">Ctrl-Enter :</span> |
|
189 | 190 | </div> |
|
190 | 191 | <div class="section_row"> |
|
191 | 192 | <span class="help_string">show keyboard shortcuts</span> |
|
192 | 193 | <span class="help_string_label">Ctrl-m h :</span> |
|
193 | 194 | </div> |
|
194 | 195 | </div> |
|
195 | 196 | </div> |
|
196 | 197 | |
|
197 | 198 | </div> |
|
198 | 199 | <div id="left_panel_splitter"></div> |
|
199 | 200 | <div id="notebook_panel"> |
|
200 | 201 | <div id="notebook"></div> |
|
201 | 202 | <div id="pager_splitter"></div> |
|
202 | 203 | <div id="pager"></div> |
|
203 | 204 | </div> |
|
204 | 205 | |
|
205 | 206 | </div> |
|
206 | 207 | |
|
207 | 208 | <script src="static/jquery/js/jquery-1.6.2.min.js" type="text/javascript" charset="utf-8"></script> |
|
208 | 209 | <script src="static/jquery/js/jquery-ui-1.8.14.custom.min.js" type="text/javascript" charset="utf-8"></script> |
|
209 | 210 | <script src="static/jquery/js/jquery.autogrow.js" type="text/javascript" charset="utf-8"></script> |
|
210 | 211 | |
|
211 |
<script src="static/codemirror |
|
|
212 |
<script src="static/codemirror |
|
|
213 |
<script src="static/codemirror |
|
|
214 |
<script src="static/codemirror |
|
|
215 |
<script src="static/codemirror |
|
|
216 |
<script src="static/codemirror |
|
|
217 |
<script src="static/codemirror |
|
|
212 | <script src="static/codemirror/lib/codemirror.js" charset="utf-8"></script> | |
|
213 | <script src="static/codemirror/mode/python/python.js" charset="utf-8"></script> | |
|
214 | <script src="static/codemirror/mode/htmlmixed/htmlmixed.js" charset="utf-8"></script> | |
|
215 | <script src="static/codemirror/mode/xml/xml.js" charset="utf-8"></script> | |
|
216 | <script src="static/codemirror/mode/javascript/javascript.js" charset="utf-8"></script> | |
|
217 | <script src="static/codemirror/mode/css/css.js" charset="utf-8"></script> | |
|
218 | <script src="static/codemirror/mode/rst/rst.js" charset="utf-8"></script> | |
|
219 | <script src="static/codemirror/mode/markdown/markdown.js" charset="utf-8"></script> | |
|
218 | 220 | |
|
219 | 221 | <script src="static/pagedown/Markdown.Converter.js" charset="utf-8"></script> |
|
220 | 222 | |
|
221 | 223 | <script src="static/prettify/prettify.js" charset="utf-8"></script> |
|
222 | 224 | |
|
223 | 225 | <script src="static/js/namespace.js" type="text/javascript" charset="utf-8"></script> |
|
224 | 226 | <script src="static/js/utils.js" type="text/javascript" charset="utf-8"></script> |
|
225 | 227 | <script src="static/js/cell.js" type="text/javascript" charset="utf-8"></script> |
|
226 | 228 | <script src="static/js/codecell.js" type="text/javascript" charset="utf-8"></script> |
|
227 | 229 | <script src="static/js/textcell.js" type="text/javascript" charset="utf-8"></script> |
|
228 | 230 | <script src="static/js/kernel.js" type="text/javascript" charset="utf-8"></script> |
|
229 | 231 | <script src="static/js/kernelstatus.js" type="text/javascript" charset="utf-8"></script> |
|
230 | 232 | <script src="static/js/layout.js" type="text/javascript" charset="utf-8"></script> |
|
231 | 233 | <script src="static/js/savewidget.js" type="text/javascript" charset="utf-8"></script> |
|
232 | 234 | <script src="static/js/pager.js" type="text/javascript" charset="utf-8"></script> |
|
233 | 235 | <script src="static/js/panelsection.js" type="text/javascript" charset="utf-8"></script> |
|
234 | 236 | <script src="static/js/printwidget.js" type="text/javascript" charset="utf-8"></script> |
|
235 | 237 | <script src="static/js/leftpanel.js" type="text/javascript" charset="utf-8"></script> |
|
236 | 238 | <script src="static/js/notebook.js" type="text/javascript" charset="utf-8"></script> |
|
237 | 239 | <script src="static/js/notebook_main.js" type="text/javascript" charset="utf-8"></script> |
|
238 | 240 | |
|
239 | 241 | |
|
240 | 242 | </body> |
|
241 | 243 | |
|
242 | 244 | </html> |
|
243 | 245 | |
|
244 | 246 |
General Comments 0
You need to be logged in to leave comments.
Login now