##// END OF EJS Templates
Add C-m-{'i', '.'} as keybindings for kernel interrupt/restart.
Fernando Perez -
Show More
@@ -1,932 +1,944
1 //----------------------------------------------------------------------------
1 //----------------------------------------------------------------------------
2 // Copyright (C) 2008-2011 The IPython Development Team
2 // Copyright (C) 2008-2011 The IPython Development Team
3 //
3 //
4 // Distributed under the terms of the BSD License. The full license is in
4 // Distributed under the terms of the BSD License. The full license is in
5 // the file COPYING, distributed as part of this software.
5 // the file COPYING, distributed as part of this software.
6 //----------------------------------------------------------------------------
6 //----------------------------------------------------------------------------
7
7
8 //============================================================================
8 //============================================================================
9 // Notebook
9 // Notebook
10 //============================================================================
10 //============================================================================
11
11
12 var IPython = (function (IPython) {
12 var IPython = (function (IPython) {
13
13
14 var utils = IPython.utils;
14 var utils = IPython.utils;
15
15
16 var Notebook = function (selector) {
16 var Notebook = function (selector) {
17 this.element = $(selector);
17 this.element = $(selector);
18 this.element.scroll();
18 this.element.scroll();
19 this.element.data("notebook", this);
19 this.element.data("notebook", this);
20 this.next_prompt_number = 1;
20 this.next_prompt_number = 1;
21 this.kernel = null;
21 this.kernel = null;
22 this.dirty = false;
22 this.dirty = false;
23 this.msg_cell_map = {};
23 this.msg_cell_map = {};
24 this.metadata = {};
24 this.metadata = {};
25 this.control_key_active = false;
25 this.control_key_active = false;
26 this.style();
26 this.style();
27 this.create_elements();
27 this.create_elements();
28 this.bind_events();
28 this.bind_events();
29 };
29 };
30
30
31
31
32 Notebook.prototype.style = function () {
32 Notebook.prototype.style = function () {
33 $('div#notebook').addClass('border-box-sizing');
33 $('div#notebook').addClass('border-box-sizing');
34 };
34 };
35
35
36
36
37 Notebook.prototype.create_elements = function () {
37 Notebook.prototype.create_elements = function () {
38 // We add this end_space div to the end of the notebook div to:
38 // We add this end_space div to the end of the notebook div to:
39 // i) provide a margin between the last cell and the end of the notebook
39 // i) provide a margin between the last cell and the end of the notebook
40 // ii) to prevent the div from scrolling up when the last cell is being
40 // ii) to prevent the div from scrolling up when the last cell is being
41 // edited, but is too low on the page, which browsers will do automatically.
41 // edited, but is too low on the page, which browsers will do automatically.
42 var that = this;
42 var that = this;
43 var end_space = $('<div class="end_space"></div>').height(150);
43 var end_space = $('<div class="end_space"></div>').height(150);
44 end_space.dblclick(function (e) {
44 end_space.dblclick(function (e) {
45 var ncells = that.ncells();
45 var ncells = that.ncells();
46 that.insert_code_cell_below(ncells-1);
46 that.insert_code_cell_below(ncells-1);
47 });
47 });
48 this.element.append(end_space);
48 this.element.append(end_space);
49 $('div#notebook').addClass('border-box-sizing');
49 $('div#notebook').addClass('border-box-sizing');
50 };
50 };
51
51
52
52
53 Notebook.prototype.bind_events = function () {
53 Notebook.prototype.bind_events = function () {
54 var that = this;
54 var that = this;
55 $(document).keydown(function (event) {
55 $(document).keydown(function (event) {
56 // console.log(event);
56 // console.log(event);
57 if (event.which === 38) {
57 if (event.which === 38) {
58 var cell = that.selected_cell();
58 var cell = that.selected_cell();
59 if (cell.at_top()) {
59 if (cell.at_top()) {
60 event.preventDefault();
60 event.preventDefault();
61 that.select_prev();
61 that.select_prev();
62 };
62 };
63 } else if (event.which === 40) {
63 } else if (event.which === 40) {
64 var cell = that.selected_cell();
64 var cell = that.selected_cell();
65 if (cell.at_bottom()) {
65 if (cell.at_bottom()) {
66 event.preventDefault();
66 event.preventDefault();
67 that.select_next();
67 that.select_next();
68 };
68 };
69 } else if (event.which === 13 && event.shiftKey) {
69 } else if (event.which === 13 && event.shiftKey) {
70 that.execute_selected_cell();
70 that.execute_selected_cell();
71 return false;
71 return false;
72 } else if (event.which === 13 && event.ctrlKey) {
72 } else if (event.which === 13 && event.ctrlKey) {
73 that.execute_selected_cell({terminal:true});
73 that.execute_selected_cell({terminal:true});
74 return false;
74 return false;
75 } else if (event.which === 77 && event.ctrlKey) {
75 } else if (event.which === 77 && event.ctrlKey) {
76 that.control_key_active = true;
76 that.control_key_active = true;
77 return false;
77 return false;
78 } else if (event.which === 68 && that.control_key_active) {
78 } else if (event.which === 68 && that.control_key_active) {
79 // Delete selected cell = d
79 // Delete selected cell = d
80 that.delete_cell();
80 that.delete_cell();
81 that.control_key_active = false;
81 that.control_key_active = false;
82 return false;
82 return false;
83 } else if (event.which === 65 && that.control_key_active) {
83 } else if (event.which === 65 && that.control_key_active) {
84 // Insert code cell above selected = a
84 // Insert code cell above selected = a
85 that.insert_code_cell_above();
85 that.insert_code_cell_above();
86 that.control_key_active = false;
86 that.control_key_active = false;
87 return false;
87 return false;
88 } else if (event.which === 66 && that.control_key_active) {
88 } else if (event.which === 66 && that.control_key_active) {
89 // Insert code cell below selected = b
89 // Insert code cell below selected = b
90 that.insert_code_cell_below();
90 that.insert_code_cell_below();
91 that.control_key_active = false;
91 that.control_key_active = false;
92 return false;
92 return false;
93 } else if (event.which === 67 && that.control_key_active) {
93 } else if (event.which === 67 && that.control_key_active) {
94 // To code = c
94 // To code = c
95 that.to_code();
95 that.to_code();
96 that.control_key_active = false;
96 that.control_key_active = false;
97 return false;
97 return false;
98 } else if (event.which === 77 && that.control_key_active) {
98 } else if (event.which === 77 && that.control_key_active) {
99 // To markdown = m
99 // To markdown = m
100 that.to_markdown();
100 that.to_markdown();
101 that.control_key_active = false;
101 that.control_key_active = false;
102 return false;
102 return false;
103 } else if (event.which === 84 && that.control_key_active) {
103 } else if (event.which === 84 && that.control_key_active) {
104 // Toggle output = t
104 // Toggle output = t
105 that.toggle_output();
105 that.toggle_output();
106 that.control_key_active = false;
106 that.control_key_active = false;
107 return false;
107 return false;
108 } else if (event.which === 83 && that.control_key_active) {
108 } else if (event.which === 83 && that.control_key_active) {
109 // Save notebook = s
109 // Save notebook = s
110 IPython.save_widget.save_notebook();
110 IPython.save_widget.save_notebook();
111 that.control_key_active = false;
111 that.control_key_active = false;
112 return false;
112 return false;
113 } else if (event.which === 74 && that.control_key_active) {
113 } else if (event.which === 74 && that.control_key_active) {
114 // Move cell down = j
114 // Move cell down = j
115 that.move_cell_down();
115 that.move_cell_down();
116 that.control_key_active = false;
116 that.control_key_active = false;
117 return false;
117 return false;
118 } else if (event.which === 75 && that.control_key_active) {
118 } else if (event.which === 75 && that.control_key_active) {
119 // Move cell up = k
119 // Move cell up = k
120 that.move_cell_up();
120 that.move_cell_up();
121 that.control_key_active = false;
121 that.control_key_active = false;
122 return false;
122 return false;
123 } else if (event.which === 80 && that.control_key_active) {
123 } else if (event.which === 80 && that.control_key_active) {
124 // Select previous = p
124 // Select previous = p
125 that.select_prev();
125 that.select_prev();
126 that.control_key_active = false;
126 that.control_key_active = false;
127 return false;
127 return false;
128 } else if (event.which === 78 && that.control_key_active) {
128 } else if (event.which === 78 && that.control_key_active) {
129 // Select next = n
129 // Select next = n
130 that.select_next();
130 that.select_next();
131 that.control_key_active = false;
131 that.control_key_active = false;
132 return false;
132 return false;
133 } else if (event.which === 72 && that.control_key_active) {
133 } else if (event.which === 72 && that.control_key_active) {
134 // Show keyboard shortcuts = h
134 // Show keyboard shortcuts = h
135 that.show_keyboard_shortcuts();
135 that.show_keyboard_shortcuts();
136 that.control_key_active = false;
136 that.control_key_active = false;
137 return false;
137 return false;
138 } else if (event.which === 73 && that.control_key_active) {
139 // Interrupt kernel = i
140 IPython.notebook.kernel.interrupt();
141 that.control_key_active = false;
142 return false;
143 } else if (event.which === 190 && that.control_key_active) {
144 // Restart kernel = . # matches qt console
145 IPython.notebook.restart_kernel();
146 that.control_key_active = false;
147 return false;
138 } else if (that.control_key_active) {
148 } else if (that.control_key_active) {
139 that.control_key_active = false;
149 that.control_key_active = false;
140 return true;
150 return true;
141 };
151 };
142 });
152 });
143
153
144 this.element.bind('collapse_pager', function () {
154 this.element.bind('collapse_pager', function () {
145 var app_height = $('div#main_app').height(); // content height
155 var app_height = $('div#main_app').height(); // content height
146 var splitter_height = $('div#pager_splitter').outerHeight(true);
156 var splitter_height = $('div#pager_splitter').outerHeight(true);
147 var new_height = app_height - splitter_height;
157 var new_height = app_height - splitter_height;
148 that.element.animate({height : new_height + 'px'}, 'fast');
158 that.element.animate({height : new_height + 'px'}, 'fast');
149 });
159 });
150
160
151 this.element.bind('expand_pager', function () {
161 this.element.bind('expand_pager', function () {
152 var app_height = $('div#main_app').height(); // content height
162 var app_height = $('div#main_app').height(); // content height
153 var splitter_height = $('div#pager_splitter').outerHeight(true);
163 var splitter_height = $('div#pager_splitter').outerHeight(true);
154 var pager_height = $('div#pager').outerHeight(true);
164 var pager_height = $('div#pager').outerHeight(true);
155 var new_height = app_height - pager_height - splitter_height;
165 var new_height = app_height - pager_height - splitter_height;
156 that.element.animate({height : new_height + 'px'}, 'fast');
166 that.element.animate({height : new_height + 'px'}, 'fast');
157 });
167 });
158
168
159 this.element.bind('collapse_left_panel', function () {
169 this.element.bind('collapse_left_panel', function () {
160 var splitter_width = $('div#left_panel_splitter').outerWidth(true);
170 var splitter_width = $('div#left_panel_splitter').outerWidth(true);
161 var new_margin = splitter_width;
171 var new_margin = splitter_width;
162 $('div#notebook_panel').animate({marginLeft : new_margin + 'px'}, 'fast');
172 $('div#notebook_panel').animate({marginLeft : new_margin + 'px'}, 'fast');
163 });
173 });
164
174
165 this.element.bind('expand_left_panel', function () {
175 this.element.bind('expand_left_panel', function () {
166 var splitter_width = $('div#left_panel_splitter').outerWidth(true);
176 var splitter_width = $('div#left_panel_splitter').outerWidth(true);
167 var left_panel_width = IPython.left_panel.width;
177 var left_panel_width = IPython.left_panel.width;
168 var new_margin = splitter_width + left_panel_width;
178 var new_margin = splitter_width + left_panel_width;
169 $('div#notebook_panel').animate({marginLeft : new_margin + 'px'}, 'fast');
179 $('div#notebook_panel').animate({marginLeft : new_margin + 'px'}, 'fast');
170 });
180 });
171
181
172 $(window).bind('beforeunload', function () {
182 $(window).bind('beforeunload', function () {
173 var kill_kernel = $('#kill_kernel').prop('checked');
183 var kill_kernel = $('#kill_kernel').prop('checked');
174 if (kill_kernel) {
184 if (kill_kernel) {
175 that.kernel.kill();
185 that.kernel.kill();
176 }
186 }
177 if (that.dirty) {
187 if (that.dirty) {
178 return "You have unsaved changes that will be lost if you leave this page.";
188 return "You have unsaved changes that will be lost if you leave this page.";
179 };
189 };
180 });
190 });
181 };
191 };
182
192
183
193
184 Notebook.prototype.show_keyboard_shortcuts = function () {
194 Notebook.prototype.show_keyboard_shortcuts = function () {
185 var dialog = $('<div/>');
195 var dialog = $('<div/>');
186 var shortcuts = [
196 var shortcuts = [
187 {key: 'Shift-Enter', help: 'run cell'},
197 {key: 'Shift-Enter', help: 'run cell'},
188 {key: 'Ctrl-Enter', help: 'run cell in terminal mode'},
198 {key: 'Ctrl-Enter', help: 'run cell in terminal mode'},
189 {key: 'Ctrl-Shift-L', help: 'toggle line numbering'},
199 {key: 'Ctrl-Shift-L', help: 'toggle line numbering'},
190 {key: 'Ctrl-m d', help: 'delete cell'},
200 {key: 'Ctrl-m d', help: 'delete cell'},
191 {key: 'Ctrl-m a', help: 'insert cell above'},
201 {key: 'Ctrl-m a', help: 'insert cell above'},
192 {key: 'Ctrl-m b', help: 'insert cell below'},
202 {key: 'Ctrl-m b', help: 'insert cell below'},
193 {key: 'Ctrl-m t', help: 'toggle output'},
203 {key: 'Ctrl-m t', help: 'toggle output'},
194 {key: 'Ctrl-m s', help: 'save notebook'},
204 {key: 'Ctrl-m s', help: 'save notebook'},
195 {key: 'Ctrl-m j', help: 'move cell down'},
205 {key: 'Ctrl-m j', help: 'move cell down'},
196 {key: 'Ctrl-m k', help: 'move cell up'},
206 {key: 'Ctrl-m k', help: 'move cell up'},
197 {key: 'Ctrl-m c', help: 'code cell'},
207 {key: 'Ctrl-m c', help: 'code cell'},
198 {key: 'Ctrl-m m', help: 'markdown cell'},
208 {key: 'Ctrl-m m', help: 'markdown cell'},
199 {key: 'Ctrl-m p', help: 'select previous'},
209 {key: 'Ctrl-m p', help: 'select previous'},
200 {key: 'Ctrl-m n', help: 'select next'},
210 {key: 'Ctrl-m n', help: 'select next'},
211 {key: 'Ctrl-m i', help: 'interrupt kernel'},
212 {key: 'Ctrl-m .', help: 'restart kernel'},
201 {key: 'Ctrl-m h', help: 'display keyboard shortcuts'}
213 {key: 'Ctrl-m h', help: 'display keyboard shortcuts'}
202 ];
214 ];
203 for (var i=0; i<shortcuts.length; i++) {
215 for (var i=0; i<shortcuts.length; i++) {
204 dialog.append($('<div>').
216 dialog.append($('<div>').
205 append($('<span/>').addClass('shortcut_key').html(shortcuts[i].key)).
217 append($('<span/>').addClass('shortcut_key').html(shortcuts[i].key)).
206 append($('<span/>').addClass('shortcut_descr').html(' : ' + shortcuts[i].help))
218 append($('<span/>').addClass('shortcut_descr').html(' : ' + shortcuts[i].help))
207 );
219 );
208 };
220 };
209 dialog.dialog({title: 'Keyboard shortcuts'});
221 dialog.dialog({title: 'Keyboard shortcuts'});
210 };
222 };
211
223
212
224
213 Notebook.prototype.scroll_to_bottom = function () {
225 Notebook.prototype.scroll_to_bottom = function () {
214 this.element.animate({scrollTop:this.element.get(0).scrollHeight}, 0);
226 this.element.animate({scrollTop:this.element.get(0).scrollHeight}, 0);
215 };
227 };
216
228
217
229
218 Notebook.prototype.scroll_to_top = function () {
230 Notebook.prototype.scroll_to_top = function () {
219 this.element.animate({scrollTop:0}, 0);
231 this.element.animate({scrollTop:0}, 0);
220 };
232 };
221
233
222
234
223 // Cell indexing, retrieval, etc.
235 // Cell indexing, retrieval, etc.
224
236
225
237
226 Notebook.prototype.cell_elements = function () {
238 Notebook.prototype.cell_elements = function () {
227 return this.element.children("div.cell");
239 return this.element.children("div.cell");
228 }
240 }
229
241
230
242
231 Notebook.prototype.ncells = function (cell) {
243 Notebook.prototype.ncells = function (cell) {
232 return this.cell_elements().length;
244 return this.cell_elements().length;
233 }
245 }
234
246
235
247
236 // TODO: we are often calling cells as cells()[i], which we should optimize
248 // TODO: we are often calling cells as cells()[i], which we should optimize
237 // to cells(i) or a new method.
249 // to cells(i) or a new method.
238 Notebook.prototype.cells = function () {
250 Notebook.prototype.cells = function () {
239 return this.cell_elements().toArray().map(function (e) {
251 return this.cell_elements().toArray().map(function (e) {
240 return $(e).data("cell");
252 return $(e).data("cell");
241 });
253 });
242 }
254 }
243
255
244
256
245 Notebook.prototype.find_cell_index = function (cell) {
257 Notebook.prototype.find_cell_index = function (cell) {
246 var result = null;
258 var result = null;
247 this.cell_elements().filter(function (index) {
259 this.cell_elements().filter(function (index) {
248 if ($(this).data("cell") === cell) {
260 if ($(this).data("cell") === cell) {
249 result = index;
261 result = index;
250 };
262 };
251 });
263 });
252 return result;
264 return result;
253 };
265 };
254
266
255
267
256 Notebook.prototype.index_or_selected = function (index) {
268 Notebook.prototype.index_or_selected = function (index) {
257 return index || this.selected_index() || 0;
269 return index || this.selected_index() || 0;
258 }
270 }
259
271
260
272
261 Notebook.prototype.select = function (index) {
273 Notebook.prototype.select = function (index) {
262 if (index !== undefined && index >= 0 && index < this.ncells()) {
274 if (index !== undefined && index >= 0 && index < this.ncells()) {
263 if (this.selected_index() !== null) {
275 if (this.selected_index() !== null) {
264 this.selected_cell().unselect();
276 this.selected_cell().unselect();
265 };
277 };
266 this.cells()[index].select();
278 this.cells()[index].select();
267 };
279 };
268 return this;
280 return this;
269 };
281 };
270
282
271
283
272 Notebook.prototype.select_next = function () {
284 Notebook.prototype.select_next = function () {
273 var index = this.selected_index();
285 var index = this.selected_index();
274 if (index !== null && index >= 0 && (index+1) < this.ncells()) {
286 if (index !== null && index >= 0 && (index+1) < this.ncells()) {
275 this.select(index+1);
287 this.select(index+1);
276 };
288 };
277 return this;
289 return this;
278 };
290 };
279
291
280
292
281 Notebook.prototype.select_prev = function () {
293 Notebook.prototype.select_prev = function () {
282 var index = this.selected_index();
294 var index = this.selected_index();
283 if (index !== null && index >= 0 && (index-1) < this.ncells()) {
295 if (index !== null && index >= 0 && (index-1) < this.ncells()) {
284 this.select(index-1);
296 this.select(index-1);
285 };
297 };
286 return this;
298 return this;
287 };
299 };
288
300
289
301
290 Notebook.prototype.selected_index = function () {
302 Notebook.prototype.selected_index = function () {
291 var result = null;
303 var result = null;
292 this.cell_elements().filter(function (index) {
304 this.cell_elements().filter(function (index) {
293 if ($(this).data("cell").selected === true) {
305 if ($(this).data("cell").selected === true) {
294 result = index;
306 result = index;
295 };
307 };
296 });
308 });
297 return result;
309 return result;
298 };
310 };
299
311
300
312
301 Notebook.prototype.cell_for_msg = function (msg_id) {
313 Notebook.prototype.cell_for_msg = function (msg_id) {
302 var cell_id = this.msg_cell_map[msg_id];
314 var cell_id = this.msg_cell_map[msg_id];
303 var result = null;
315 var result = null;
304 this.cell_elements().filter(function (index) {
316 this.cell_elements().filter(function (index) {
305 cell = $(this).data("cell");
317 cell = $(this).data("cell");
306 if (cell.cell_id === cell_id) {
318 if (cell.cell_id === cell_id) {
307 result = cell;
319 result = cell;
308 };
320 };
309 });
321 });
310 return result;
322 return result;
311 };
323 };
312
324
313
325
314 Notebook.prototype.selected_cell = function () {
326 Notebook.prototype.selected_cell = function () {
315 return this.cell_elements().eq(this.selected_index()).data("cell");
327 return this.cell_elements().eq(this.selected_index()).data("cell");
316 }
328 }
317
329
318
330
319 // Cell insertion, deletion and moving.
331 // Cell insertion, deletion and moving.
320
332
321
333
322 Notebook.prototype.delete_cell = function (index) {
334 Notebook.prototype.delete_cell = function (index) {
323 var i = index || this.selected_index();
335 var i = index || this.selected_index();
324 if (i !== null && i >= 0 && i < this.ncells()) {
336 if (i !== null && i >= 0 && i < this.ncells()) {
325 this.cell_elements().eq(i).remove();
337 this.cell_elements().eq(i).remove();
326 if (i === (this.ncells())) {
338 if (i === (this.ncells())) {
327 this.select(i-1);
339 this.select(i-1);
328 } else {
340 } else {
329 this.select(i);
341 this.select(i);
330 };
342 };
331 };
343 };
332 this.dirty = true;
344 this.dirty = true;
333 return this;
345 return this;
334 };
346 };
335
347
336
348
337 Notebook.prototype.append_cell = function (cell) {
349 Notebook.prototype.append_cell = function (cell) {
338 this.element.find('div.end_space').before(cell.element);
350 this.element.find('div.end_space').before(cell.element);
339 this.dirty = true;
351 this.dirty = true;
340 return this;
352 return this;
341 };
353 };
342
354
343
355
344 Notebook.prototype.insert_cell_below = function (cell, index) {
356 Notebook.prototype.insert_cell_below = function (cell, index) {
345 var ncells = this.ncells();
357 var ncells = this.ncells();
346 if (ncells === 0) {
358 if (ncells === 0) {
347 this.append_cell(cell);
359 this.append_cell(cell);
348 return this;
360 return this;
349 };
361 };
350 if (index >= 0 && index < ncells) {
362 if (index >= 0 && index < ncells) {
351 this.cell_elements().eq(index).after(cell.element);
363 this.cell_elements().eq(index).after(cell.element);
352 };
364 };
353 this.dirty = true;
365 this.dirty = true;
354 return this
366 return this
355 };
367 };
356
368
357
369
358 Notebook.prototype.insert_cell_above = function (cell, index) {
370 Notebook.prototype.insert_cell_above = function (cell, index) {
359 var ncells = this.ncells();
371 var ncells = this.ncells();
360 if (ncells === 0) {
372 if (ncells === 0) {
361 this.append_cell(cell);
373 this.append_cell(cell);
362 return this;
374 return this;
363 };
375 };
364 if (index >= 0 && index < ncells) {
376 if (index >= 0 && index < ncells) {
365 this.cell_elements().eq(index).before(cell.element);
377 this.cell_elements().eq(index).before(cell.element);
366 };
378 };
367 this.dirty = true;
379 this.dirty = true;
368 return this;
380 return this;
369 };
381 };
370
382
371
383
372 Notebook.prototype.move_cell_up = function (index) {
384 Notebook.prototype.move_cell_up = function (index) {
373 var i = index || this.selected_index();
385 var i = index || this.selected_index();
374 if (i !== null && i < this.ncells() && i > 0) {
386 if (i !== null && i < this.ncells() && i > 0) {
375 var pivot = this.cell_elements().eq(i-1);
387 var pivot = this.cell_elements().eq(i-1);
376 var tomove = this.cell_elements().eq(i);
388 var tomove = this.cell_elements().eq(i);
377 if (pivot !== null && tomove !== null) {
389 if (pivot !== null && tomove !== null) {
378 tomove.detach();
390 tomove.detach();
379 pivot.before(tomove);
391 pivot.before(tomove);
380 this.select(i-1);
392 this.select(i-1);
381 };
393 };
382 };
394 };
383 this.dirty = true;
395 this.dirty = true;
384 return this;
396 return this;
385 }
397 }
386
398
387
399
388 Notebook.prototype.move_cell_down = function (index) {
400 Notebook.prototype.move_cell_down = function (index) {
389 var i = index || this.selected_index();
401 var i = index || this.selected_index();
390 if (i !== null && i < (this.ncells()-1) && i >= 0) {
402 if (i !== null && i < (this.ncells()-1) && i >= 0) {
391 var pivot = this.cell_elements().eq(i+1)
403 var pivot = this.cell_elements().eq(i+1)
392 var tomove = this.cell_elements().eq(i)
404 var tomove = this.cell_elements().eq(i)
393 if (pivot !== null && tomove !== null) {
405 if (pivot !== null && tomove !== null) {
394 tomove.detach();
406 tomove.detach();
395 pivot.after(tomove);
407 pivot.after(tomove);
396 this.select(i+1);
408 this.select(i+1);
397 };
409 };
398 };
410 };
399 this.dirty = true;
411 this.dirty = true;
400 return this;
412 return this;
401 }
413 }
402
414
403
415
404 Notebook.prototype.sort_cells = function () {
416 Notebook.prototype.sort_cells = function () {
405 var ncells = this.ncells();
417 var ncells = this.ncells();
406 var sindex = this.selected_index();
418 var sindex = this.selected_index();
407 var swapped;
419 var swapped;
408 do {
420 do {
409 swapped = false
421 swapped = false
410 for (var i=1; i<ncells; i++) {
422 for (var i=1; i<ncells; i++) {
411 current = this.cell_elements().eq(i).data("cell");
423 current = this.cell_elements().eq(i).data("cell");
412 previous = this.cell_elements().eq(i-1).data("cell");
424 previous = this.cell_elements().eq(i-1).data("cell");
413 if (previous.input_prompt_number > current.input_prompt_number) {
425 if (previous.input_prompt_number > current.input_prompt_number) {
414 this.move_cell_up(i);
426 this.move_cell_up(i);
415 swapped = true;
427 swapped = true;
416 };
428 };
417 };
429 };
418 } while (swapped);
430 } while (swapped);
419 this.select(sindex);
431 this.select(sindex);
420 return this;
432 return this;
421 };
433 };
422
434
423
435
424 Notebook.prototype.insert_code_cell_above = function (index) {
436 Notebook.prototype.insert_code_cell_above = function (index) {
425 // TODO: Bounds check for i
437 // TODO: Bounds check for i
426 var i = this.index_or_selected(index);
438 var i = this.index_or_selected(index);
427 var cell = new IPython.CodeCell(this);
439 var cell = new IPython.CodeCell(this);
428 cell.set_input_prompt();
440 cell.set_input_prompt();
429 this.insert_cell_above(cell, i);
441 this.insert_cell_above(cell, i);
430 this.select(this.find_cell_index(cell));
442 this.select(this.find_cell_index(cell));
431 return cell;
443 return cell;
432 }
444 }
433
445
434
446
435 Notebook.prototype.insert_code_cell_below = function (index) {
447 Notebook.prototype.insert_code_cell_below = function (index) {
436 // TODO: Bounds check for i
448 // TODO: Bounds check for i
437 var i = this.index_or_selected(index);
449 var i = this.index_or_selected(index);
438 var cell = new IPython.CodeCell(this);
450 var cell = new IPython.CodeCell(this);
439 cell.set_input_prompt();
451 cell.set_input_prompt();
440 this.insert_cell_below(cell, i);
452 this.insert_cell_below(cell, i);
441 this.select(this.find_cell_index(cell));
453 this.select(this.find_cell_index(cell));
442 return cell;
454 return cell;
443 }
455 }
444
456
445
457
446 Notebook.prototype.insert_html_cell_above = function (index) {
458 Notebook.prototype.insert_html_cell_above = function (index) {
447 // TODO: Bounds check for i
459 // TODO: Bounds check for i
448 var i = this.index_or_selected(index);
460 var i = this.index_or_selected(index);
449 var cell = new IPython.HTMLCell(this);
461 var cell = new IPython.HTMLCell(this);
450 cell.config_mathjax();
462 cell.config_mathjax();
451 this.insert_cell_above(cell, i);
463 this.insert_cell_above(cell, i);
452 this.select(this.find_cell_index(cell));
464 this.select(this.find_cell_index(cell));
453 return cell;
465 return cell;
454 }
466 }
455
467
456
468
457 Notebook.prototype.insert_html_cell_below = function (index) {
469 Notebook.prototype.insert_html_cell_below = function (index) {
458 // TODO: Bounds check for i
470 // TODO: Bounds check for i
459 var i = this.index_or_selected(index);
471 var i = this.index_or_selected(index);
460 var cell = new IPython.HTMLCell(this);
472 var cell = new IPython.HTMLCell(this);
461 cell.config_mathjax();
473 cell.config_mathjax();
462 this.insert_cell_below(cell, i);
474 this.insert_cell_below(cell, i);
463 this.select(this.find_cell_index(cell));
475 this.select(this.find_cell_index(cell));
464 return cell;
476 return cell;
465 }
477 }
466
478
467
479
468 Notebook.prototype.insert_markdown_cell_above = function (index) {
480 Notebook.prototype.insert_markdown_cell_above = function (index) {
469 // TODO: Bounds check for i
481 // TODO: Bounds check for i
470 var i = this.index_or_selected(index);
482 var i = this.index_or_selected(index);
471 var cell = new IPython.MarkdownCell(this);
483 var cell = new IPython.MarkdownCell(this);
472 cell.config_mathjax();
484 cell.config_mathjax();
473 this.insert_cell_above(cell, i);
485 this.insert_cell_above(cell, i);
474 this.select(this.find_cell_index(cell));
486 this.select(this.find_cell_index(cell));
475 return cell;
487 return cell;
476 }
488 }
477
489
478
490
479 Notebook.prototype.insert_markdown_cell_below = function (index) {
491 Notebook.prototype.insert_markdown_cell_below = function (index) {
480 // TODO: Bounds check for i
492 // TODO: Bounds check for i
481 var i = this.index_or_selected(index);
493 var i = this.index_or_selected(index);
482 var cell = new IPython.MarkdownCell(this);
494 var cell = new IPython.MarkdownCell(this);
483 cell.config_mathjax();
495 cell.config_mathjax();
484 this.insert_cell_below(cell, i);
496 this.insert_cell_below(cell, i);
485 this.select(this.find_cell_index(cell));
497 this.select(this.find_cell_index(cell));
486 return cell;
498 return cell;
487 }
499 }
488
500
489
501
490 Notebook.prototype.to_code = function (index) {
502 Notebook.prototype.to_code = function (index) {
491 // TODO: Bounds check for i
503 // TODO: Bounds check for i
492 var i = this.index_or_selected(index);
504 var i = this.index_or_selected(index);
493 var source_element = this.cell_elements().eq(i);
505 var source_element = this.cell_elements().eq(i);
494 var source_cell = source_element.data("cell");
506 var source_cell = source_element.data("cell");
495 if (source_cell instanceof IPython.HTMLCell ||
507 if (source_cell instanceof IPython.HTMLCell ||
496 source_cell instanceof IPython.MarkdownCell) {
508 source_cell instanceof IPython.MarkdownCell) {
497 this.insert_code_cell_below(i);
509 this.insert_code_cell_below(i);
498 var target_cell = this.cells()[i+1];
510 var target_cell = this.cells()[i+1];
499 target_cell.set_code(source_cell.get_source());
511 target_cell.set_code(source_cell.get_source());
500 source_element.remove();
512 source_element.remove();
501 target_cell.select();
513 target_cell.select();
502 };
514 };
503 this.dirty = true;
515 this.dirty = true;
504 };
516 };
505
517
506
518
507 Notebook.prototype.to_markdown = function (index) {
519 Notebook.prototype.to_markdown = function (index) {
508 // TODO: Bounds check for i
520 // TODO: Bounds check for i
509 var i = this.index_or_selected(index);
521 var i = this.index_or_selected(index);
510 var source_element = this.cell_elements().eq(i);
522 var source_element = this.cell_elements().eq(i);
511 var source_cell = source_element.data("cell");
523 var source_cell = source_element.data("cell");
512 var target_cell = null;
524 var target_cell = null;
513 if (source_cell instanceof IPython.CodeCell) {
525 if (source_cell instanceof IPython.CodeCell) {
514 this.insert_markdown_cell_below(i);
526 this.insert_markdown_cell_below(i);
515 var target_cell = this.cells()[i+1];
527 var target_cell = this.cells()[i+1];
516 var text = source_cell.get_code();
528 var text = source_cell.get_code();
517 } else if (source_cell instanceof IPython.HTMLCell) {
529 } else if (source_cell instanceof IPython.HTMLCell) {
518 this.insert_markdown_cell_below(i);
530 this.insert_markdown_cell_below(i);
519 var target_cell = this.cells()[i+1];
531 var target_cell = this.cells()[i+1];
520 var text = source_cell.get_source();
532 var text = source_cell.get_source();
521 if (text === source_cell.placeholder) {
533 if (text === source_cell.placeholder) {
522 text = target_cell.placeholder;
534 text = target_cell.placeholder;
523 }
535 }
524 }
536 }
525 if (target_cell !== null) {
537 if (target_cell !== null) {
526 if (text === "") {text = target_cell.placeholder;};
538 if (text === "") {text = target_cell.placeholder;};
527 target_cell.set_source(text);
539 target_cell.set_source(text);
528 source_element.remove();
540 source_element.remove();
529 target_cell.edit();
541 target_cell.edit();
530 }
542 }
531 this.dirty = true;
543 this.dirty = true;
532 };
544 };
533
545
534
546
535 Notebook.prototype.to_html = function (index) {
547 Notebook.prototype.to_html = function (index) {
536 // TODO: Bounds check for i
548 // TODO: Bounds check for i
537 var i = this.index_or_selected(index);
549 var i = this.index_or_selected(index);
538 var source_element = this.cell_elements().eq(i);
550 var source_element = this.cell_elements().eq(i);
539 var source_cell = source_element.data("cell");
551 var source_cell = source_element.data("cell");
540 var target_cell = null;
552 var target_cell = null;
541 if (source_cell instanceof IPython.CodeCell) {
553 if (source_cell instanceof IPython.CodeCell) {
542 this.insert_html_cell_below(i);
554 this.insert_html_cell_below(i);
543 var target_cell = this.cells()[i+1];
555 var target_cell = this.cells()[i+1];
544 var text = source_cell.get_code();
556 var text = source_cell.get_code();
545 } else if (source_cell instanceof IPython.MarkdownCell) {
557 } else if (source_cell instanceof IPython.MarkdownCell) {
546 this.insert_html_cell_below(i);
558 this.insert_html_cell_below(i);
547 var target_cell = this.cells()[i+1];
559 var target_cell = this.cells()[i+1];
548 var text = source_cell.get_source();
560 var text = source_cell.get_source();
549 if (text === source_cell.placeholder) {
561 if (text === source_cell.placeholder) {
550 text = target_cell.placeholder;
562 text = target_cell.placeholder;
551 }
563 }
552 }
564 }
553 if (target_cell !== null) {
565 if (target_cell !== null) {
554 if (text === "") {text = target_cell.placeholder;};
566 if (text === "") {text = target_cell.placeholder;};
555 target_cell.set_source(text);
567 target_cell.set_source(text);
556 source_element.remove();
568 source_element.remove();
557 target_cell.edit();
569 target_cell.edit();
558 }
570 }
559 this.dirty = true;
571 this.dirty = true;
560 };
572 };
561
573
562
574
563 // Cell collapsing and output clearing
575 // Cell collapsing and output clearing
564
576
565 Notebook.prototype.collapse = function (index) {
577 Notebook.prototype.collapse = function (index) {
566 var i = this.index_or_selected(index);
578 var i = this.index_or_selected(index);
567 this.cells()[i].collapse();
579 this.cells()[i].collapse();
568 this.dirty = true;
580 this.dirty = true;
569 };
581 };
570
582
571
583
572 Notebook.prototype.expand = function (index) {
584 Notebook.prototype.expand = function (index) {
573 var i = this.index_or_selected(index);
585 var i = this.index_or_selected(index);
574 this.cells()[i].expand();
586 this.cells()[i].expand();
575 this.dirty = true;
587 this.dirty = true;
576 };
588 };
577
589
578
590
579 Notebook.prototype.toggle_output = function (index) {
591 Notebook.prototype.toggle_output = function (index) {
580 var i = this.index_or_selected(index);
592 var i = this.index_or_selected(index);
581 this.cells()[i].toggle_output();
593 this.cells()[i].toggle_output();
582 this.dirty = true;
594 this.dirty = true;
583 };
595 };
584
596
585
597
586 Notebook.prototype.set_autoindent = function (state) {
598 Notebook.prototype.set_autoindent = function (state) {
587 var cells = this.cells();
599 var cells = this.cells();
588 len = cells.length;
600 len = cells.length;
589 for (var i=0; i<len; i++) {
601 for (var i=0; i<len; i++) {
590 cells[i].set_autoindent(state)
602 cells[i].set_autoindent(state)
591 };
603 };
592 };
604 };
593
605
594
606
595 Notebook.prototype.clear_all_output = function () {
607 Notebook.prototype.clear_all_output = function () {
596 var ncells = this.ncells();
608 var ncells = this.ncells();
597 var cells = this.cells();
609 var cells = this.cells();
598 for (var i=0; i<ncells; i++) {
610 for (var i=0; i<ncells; i++) {
599 if (cells[i] instanceof IPython.CodeCell) {
611 if (cells[i] instanceof IPython.CodeCell) {
600 cells[i].clear_output();
612 cells[i].clear_output();
601 }
613 }
602 };
614 };
603 this.dirty = true;
615 this.dirty = true;
604 };
616 };
605
617
606
618
607 // Kernel related things
619 // Kernel related things
608
620
609 Notebook.prototype.start_kernel = function () {
621 Notebook.prototype.start_kernel = function () {
610 this.kernel = new IPython.Kernel();
622 this.kernel = new IPython.Kernel();
611 var notebook_id = IPython.save_widget.get_notebook_id();
623 var notebook_id = IPython.save_widget.get_notebook_id();
612 this.kernel.start(notebook_id, $.proxy(this.kernel_started, this));
624 this.kernel.start(notebook_id, $.proxy(this.kernel_started, this));
613 };
625 };
614
626
615
627
616 Notebook.prototype.restart_kernel = function () {
628 Notebook.prototype.restart_kernel = function () {
617 var notebook_id = IPython.save_widget.get_notebook_id();
629 var notebook_id = IPython.save_widget.get_notebook_id();
618 this.kernel.restart($.proxy(this.kernel_started, this));
630 this.kernel.restart($.proxy(this.kernel_started, this));
619 };
631 };
620
632
621
633
622 Notebook.prototype.kernel_started = function () {
634 Notebook.prototype.kernel_started = function () {
623 console.log("Kernel started: ", this.kernel.kernel_id);
635 console.log("Kernel started: ", this.kernel.kernel_id);
624 this.kernel.shell_channel.onmessage = $.proxy(this.handle_shell_reply,this);
636 this.kernel.shell_channel.onmessage = $.proxy(this.handle_shell_reply,this);
625 this.kernel.iopub_channel.onmessage = $.proxy(this.handle_iopub_reply,this);
637 this.kernel.iopub_channel.onmessage = $.proxy(this.handle_iopub_reply,this);
626 };
638 };
627
639
628
640
629 Notebook.prototype.handle_shell_reply = function (e) {
641 Notebook.prototype.handle_shell_reply = function (e) {
630 reply = $.parseJSON(e.data);
642 reply = $.parseJSON(e.data);
631 var header = reply.header;
643 var header = reply.header;
632 var content = reply.content;
644 var content = reply.content;
633 var msg_type = header.msg_type;
645 var msg_type = header.msg_type;
634 // console.log(reply);
646 // console.log(reply);
635 var cell = this.cell_for_msg(reply.parent_header.msg_id);
647 var cell = this.cell_for_msg(reply.parent_header.msg_id);
636 if (msg_type === "execute_reply") {
648 if (msg_type === "execute_reply") {
637 cell.set_input_prompt(content.execution_count);
649 cell.set_input_prompt(content.execution_count);
638 this.dirty = true;
650 this.dirty = true;
639 } else if (msg_type === "complete_reply") {
651 } else if (msg_type === "complete_reply") {
640 cell.finish_completing(content.matched_text, content.matches);
652 cell.finish_completing(content.matched_text, content.matches);
641 };
653 };
642 var payload = content.payload || [];
654 var payload = content.payload || [];
643 this.handle_payload(cell, payload);
655 this.handle_payload(cell, payload);
644 };
656 };
645
657
646
658
647 Notebook.prototype.handle_payload = function (cell, payload) {
659 Notebook.prototype.handle_payload = function (cell, payload) {
648 var l = payload.length;
660 var l = payload.length;
649 for (var i=0; i<l; i++) {
661 for (var i=0; i<l; i++) {
650 if (payload[i].source === 'IPython.zmq.page.page') {
662 if (payload[i].source === 'IPython.zmq.page.page') {
651 if (payload[i].text.trim() !== '') {
663 if (payload[i].text.trim() !== '') {
652 IPython.pager.clear();
664 IPython.pager.clear();
653 IPython.pager.expand();
665 IPython.pager.expand();
654 IPython.pager.append_text(payload[i].text);
666 IPython.pager.append_text(payload[i].text);
655 }
667 }
656 } else if (payload[i].source === 'IPython.zmq.zmqshell.ZMQInteractiveShell.set_next_input') {
668 } else if (payload[i].source === 'IPython.zmq.zmqshell.ZMQInteractiveShell.set_next_input') {
657 var index = this.find_cell_index(cell);
669 var index = this.find_cell_index(cell);
658 var new_cell = this.insert_code_cell_below(index);
670 var new_cell = this.insert_code_cell_below(index);
659 new_cell.set_code(payload[i].text);
671 new_cell.set_code(payload[i].text);
660 this.dirty = true;
672 this.dirty = true;
661 }
673 }
662 };
674 };
663 };
675 };
664
676
665
677
666 Notebook.prototype.handle_iopub_reply = function (e) {
678 Notebook.prototype.handle_iopub_reply = function (e) {
667 reply = $.parseJSON(e.data);
679 reply = $.parseJSON(e.data);
668 var content = reply.content;
680 var content = reply.content;
669 // console.log(reply);
681 // console.log(reply);
670 var msg_type = reply.header.msg_type;
682 var msg_type = reply.header.msg_type;
671 var cell = this.cell_for_msg(reply.parent_header.msg_id);
683 var cell = this.cell_for_msg(reply.parent_header.msg_id);
672 var output_types = ['stream','display_data','pyout','pyerr'];
684 var output_types = ['stream','display_data','pyout','pyerr'];
673 if (output_types.indexOf(msg_type) >= 0) {
685 if (output_types.indexOf(msg_type) >= 0) {
674 this.handle_output(cell, msg_type, content);
686 this.handle_output(cell, msg_type, content);
675 } else if (msg_type === 'status') {
687 } else if (msg_type === 'status') {
676 if (content.execution_state === 'busy') {
688 if (content.execution_state === 'busy') {
677 IPython.kernel_status_widget.status_busy();
689 IPython.kernel_status_widget.status_busy();
678 } else if (content.execution_state === 'idle') {
690 } else if (content.execution_state === 'idle') {
679 IPython.kernel_status_widget.status_idle();
691 IPython.kernel_status_widget.status_idle();
680 } else if (content.execution_state === 'dead') {
692 } else if (content.execution_state === 'dead') {
681 this.handle_status_dead();
693 this.handle_status_dead();
682 };
694 };
683 }
695 }
684 };
696 };
685
697
686
698
687 Notebook.prototype.handle_status_dead = function () {
699 Notebook.prototype.handle_status_dead = function () {
688 var that = this;
700 var that = this;
689 this.kernel.stop_channels();
701 this.kernel.stop_channels();
690 var dialog = $('<div/>');
702 var dialog = $('<div/>');
691 dialog.html('The kernel has died, would you like to restart it? If you do not restart the kernel, you will be able to save the notebook, but running code will not work until the notebook is reopened.');
703 dialog.html('The kernel has died, would you like to restart it? If you do not restart the kernel, you will be able to save the notebook, but running code will not work until the notebook is reopened.');
692 $(document).append(dialog);
704 $(document).append(dialog);
693 dialog.dialog({
705 dialog.dialog({
694 resizable: false,
706 resizable: false,
695 modal: true,
707 modal: true,
696 title: "Dead kernel",
708 title: "Dead kernel",
697 buttons : {
709 buttons : {
698 "Yes": function () {
710 "Yes": function () {
699 that.start_kernel();
711 that.start_kernel();
700 $(this).dialog('close');
712 $(this).dialog('close');
701 },
713 },
702 "No": function () {
714 "No": function () {
703 $(this).dialog('close');
715 $(this).dialog('close');
704 }
716 }
705 }
717 }
706 });
718 });
707 };
719 };
708
720
709
721
710 Notebook.prototype.handle_output = function (cell, msg_type, content) {
722 Notebook.prototype.handle_output = function (cell, msg_type, content) {
711 var json = {};
723 var json = {};
712 json.output_type = msg_type;
724 json.output_type = msg_type;
713 if (msg_type === "stream") {
725 if (msg_type === "stream") {
714 json.text = utils.fixConsole(content.data);
726 json.text = utils.fixConsole(content.data);
715 json.stream = content.name;
727 json.stream = content.name;
716 } else if (msg_type === "display_data") {
728 } else if (msg_type === "display_data") {
717 json = this.convert_mime_types(json, content.data);
729 json = this.convert_mime_types(json, content.data);
718 } else if (msg_type === "pyout") {
730 } else if (msg_type === "pyout") {
719 json.prompt_number = content.execution_count;
731 json.prompt_number = content.execution_count;
720 json = this.convert_mime_types(json, content.data);
732 json = this.convert_mime_types(json, content.data);
721 } else if (msg_type === "pyerr") {
733 } else if (msg_type === "pyerr") {
722 json.ename = content.ename;
734 json.ename = content.ename;
723 json.evalue = content.evalue;
735 json.evalue = content.evalue;
724 var traceback = [];
736 var traceback = [];
725 for (var i=0; i<content.traceback.length; i++) {
737 for (var i=0; i<content.traceback.length; i++) {
726 traceback.push(utils.fixConsole(content.traceback[i]));
738 traceback.push(utils.fixConsole(content.traceback[i]));
727 }
739 }
728 json.traceback = traceback;
740 json.traceback = traceback;
729 };
741 };
730 cell.append_output(json);
742 cell.append_output(json);
731 this.dirty = true;
743 this.dirty = true;
732 };
744 };
733
745
734
746
735 Notebook.prototype.convert_mime_types = function (json, data) {
747 Notebook.prototype.convert_mime_types = function (json, data) {
736 if (data['text/plain'] !== undefined) {
748 if (data['text/plain'] !== undefined) {
737 json.text = utils.fixConsole(data['text/plain']);
749 json.text = utils.fixConsole(data['text/plain']);
738 };
750 };
739 if (data['text/html'] !== undefined) {
751 if (data['text/html'] !== undefined) {
740 json.html = data['text/html'];
752 json.html = data['text/html'];
741 };
753 };
742 if (data['image/svg+xml'] !== undefined) {
754 if (data['image/svg+xml'] !== undefined) {
743 json.svg = data['image/svg+xml'];
755 json.svg = data['image/svg+xml'];
744 };
756 };
745 if (data['image/png'] !== undefined) {
757 if (data['image/png'] !== undefined) {
746 json.png = data['image/png'];
758 json.png = data['image/png'];
747 };
759 };
748 if (data['image/jpeg'] !== undefined) {
760 if (data['image/jpeg'] !== undefined) {
749 json.jpeg = data['image/jpeg'];
761 json.jpeg = data['image/jpeg'];
750 };
762 };
751 if (data['text/latex'] !== undefined) {
763 if (data['text/latex'] !== undefined) {
752 json.latex = data['text/latex'];
764 json.latex = data['text/latex'];
753 };
765 };
754 if (data['application/json'] !== undefined) {
766 if (data['application/json'] !== undefined) {
755 json.json = data['application/json'];
767 json.json = data['application/json'];
756 };
768 };
757 if (data['application/javascript'] !== undefined) {
769 if (data['application/javascript'] !== undefined) {
758 json.javascript = data['application/javascript'];
770 json.javascript = data['application/javascript'];
759 }
771 }
760 return json;
772 return json;
761 };
773 };
762
774
763
775
764 Notebook.prototype.execute_selected_cell = function (options) {
776 Notebook.prototype.execute_selected_cell = function (options) {
765 // add_new: should a new cell be added if we are at the end of the nb
777 // add_new: should a new cell be added if we are at the end of the nb
766 // terminal: execute in terminal mode, which stays in the current cell
778 // terminal: execute in terminal mode, which stays in the current cell
767 default_options = {terminal: false, add_new: true}
779 default_options = {terminal: false, add_new: true}
768 $.extend(default_options, options)
780 $.extend(default_options, options)
769 var that = this;
781 var that = this;
770 var cell = that.selected_cell();
782 var cell = that.selected_cell();
771 var cell_index = that.find_cell_index(cell);
783 var cell_index = that.find_cell_index(cell);
772 if (cell instanceof IPython.CodeCell) {
784 if (cell instanceof IPython.CodeCell) {
773 cell.clear_output();
785 cell.clear_output();
774 var code = cell.get_code();
786 var code = cell.get_code();
775 var msg_id = that.kernel.execute(cell.get_code());
787 var msg_id = that.kernel.execute(cell.get_code());
776 that.msg_cell_map[msg_id] = cell.cell_id;
788 that.msg_cell_map[msg_id] = cell.cell_id;
777 } else if (cell instanceof IPython.HTMLCell) {
789 } else if (cell instanceof IPython.HTMLCell) {
778 cell.render();
790 cell.render();
779 }
791 }
780 if (default_options.terminal) {
792 if (default_options.terminal) {
781 cell.select_all();
793 cell.select_all();
782 } else {
794 } else {
783 if ((cell_index === (that.ncells()-1)) && default_options.add_new) {
795 if ((cell_index === (that.ncells()-1)) && default_options.add_new) {
784 that.insert_code_cell_below();
796 that.insert_code_cell_below();
785 // If we are adding a new cell at the end, scroll down to show it.
797 // If we are adding a new cell at the end, scroll down to show it.
786 that.scroll_to_bottom();
798 that.scroll_to_bottom();
787 } else {
799 } else {
788 that.select(cell_index+1);
800 that.select(cell_index+1);
789 };
801 };
790 };
802 };
791 this.dirty = true;
803 this.dirty = true;
792 };
804 };
793
805
794
806
795 Notebook.prototype.execute_all_cells = function () {
807 Notebook.prototype.execute_all_cells = function () {
796 var ncells = this.ncells();
808 var ncells = this.ncells();
797 for (var i=0; i<ncells; i++) {
809 for (var i=0; i<ncells; i++) {
798 this.select(i);
810 this.select(i);
799 this.execute_selected_cell({add_new:false});
811 this.execute_selected_cell({add_new:false});
800 };
812 };
801 this.scroll_to_bottom();
813 this.scroll_to_bottom();
802 };
814 };
803
815
804
816
805 Notebook.prototype.complete_cell = function (cell, line, cursor_pos) {
817 Notebook.prototype.complete_cell = function (cell, line, cursor_pos) {
806 var msg_id = this.kernel.complete(line, cursor_pos);
818 var msg_id = this.kernel.complete(line, cursor_pos);
807 this.msg_cell_map[msg_id] = cell.cell_id;
819 this.msg_cell_map[msg_id] = cell.cell_id;
808 };
820 };
809
821
810 // Persistance and loading
822 // Persistance and loading
811
823
812
824
813 Notebook.prototype.fromJSON = function (data) {
825 Notebook.prototype.fromJSON = function (data) {
814 var ncells = this.ncells();
826 var ncells = this.ncells();
815 for (var i=0; i<ncells; i++) {
827 for (var i=0; i<ncells; i++) {
816 // Always delete cell 0 as they get renumbered as they are deleted.
828 // Always delete cell 0 as they get renumbered as they are deleted.
817 this.delete_cell(0);
829 this.delete_cell(0);
818 };
830 };
819 // Save the metadata
831 // Save the metadata
820 this.metadata = data.metadata;
832 this.metadata = data.metadata;
821 // Only handle 1 worksheet for now.
833 // Only handle 1 worksheet for now.
822 var worksheet = data.worksheets[0];
834 var worksheet = data.worksheets[0];
823 if (worksheet !== undefined) {
835 if (worksheet !== undefined) {
824 var new_cells = worksheet.cells;
836 var new_cells = worksheet.cells;
825 ncells = new_cells.length;
837 ncells = new_cells.length;
826 var cell_data = null;
838 var cell_data = null;
827 var new_cell = null;
839 var new_cell = null;
828 for (var i=0; i<ncells; i++) {
840 for (var i=0; i<ncells; i++) {
829 cell_data = new_cells[i];
841 cell_data = new_cells[i];
830 if (cell_data.cell_type == 'code') {
842 if (cell_data.cell_type == 'code') {
831 new_cell = this.insert_code_cell_below();
843 new_cell = this.insert_code_cell_below();
832 new_cell.fromJSON(cell_data);
844 new_cell.fromJSON(cell_data);
833 } else if (cell_data.cell_type === 'html') {
845 } else if (cell_data.cell_type === 'html') {
834 new_cell = this.insert_html_cell_below();
846 new_cell = this.insert_html_cell_below();
835 new_cell.fromJSON(cell_data);
847 new_cell.fromJSON(cell_data);
836 } else if (cell_data.cell_type === 'markdown') {
848 } else if (cell_data.cell_type === 'markdown') {
837 new_cell = this.insert_markdown_cell_below();
849 new_cell = this.insert_markdown_cell_below();
838 new_cell.fromJSON(cell_data);
850 new_cell.fromJSON(cell_data);
839 };
851 };
840 };
852 };
841 };
853 };
842 };
854 };
843
855
844
856
845 Notebook.prototype.toJSON = function () {
857 Notebook.prototype.toJSON = function () {
846 var cells = this.cells();
858 var cells = this.cells();
847 var ncells = cells.length;
859 var ncells = cells.length;
848 cell_array = new Array(ncells);
860 cell_array = new Array(ncells);
849 for (var i=0; i<ncells; i++) {
861 for (var i=0; i<ncells; i++) {
850 cell_array[i] = cells[i].toJSON();
862 cell_array[i] = cells[i].toJSON();
851 };
863 };
852 data = {
864 data = {
853 // Only handle 1 worksheet for now.
865 // Only handle 1 worksheet for now.
854 worksheets : [{cells:cell_array}],
866 worksheets : [{cells:cell_array}],
855 metadata : this.metadata
867 metadata : this.metadata
856 }
868 }
857 return data
869 return data
858 };
870 };
859
871
860 Notebook.prototype.save_notebook = function () {
872 Notebook.prototype.save_notebook = function () {
861 if (IPython.save_widget.test_notebook_name()) {
873 if (IPython.save_widget.test_notebook_name()) {
862 var notebook_id = IPython.save_widget.get_notebook_id();
874 var notebook_id = IPython.save_widget.get_notebook_id();
863 var nbname = IPython.save_widget.get_notebook_name();
875 var nbname = IPython.save_widget.get_notebook_name();
864 // We may want to move the name/id/nbformat logic inside toJSON?
876 // We may want to move the name/id/nbformat logic inside toJSON?
865 var data = this.toJSON();
877 var data = this.toJSON();
866 data.metadata.name = nbname;
878 data.metadata.name = nbname;
867 data.nbformat = 2;
879 data.nbformat = 2;
868 // We do the call with settings so we can set cache to false.
880 // We do the call with settings so we can set cache to false.
869 var settings = {
881 var settings = {
870 processData : false,
882 processData : false,
871 cache : false,
883 cache : false,
872 type : "PUT",
884 type : "PUT",
873 data : JSON.stringify(data),
885 data : JSON.stringify(data),
874 headers : {'Content-Type': 'application/json'},
886 headers : {'Content-Type': 'application/json'},
875 success : $.proxy(this.notebook_saved,this)
887 success : $.proxy(this.notebook_saved,this)
876 };
888 };
877 IPython.save_widget.status_saving();
889 IPython.save_widget.status_saving();
878 $.ajax("/notebooks/" + notebook_id, settings);
890 $.ajax("/notebooks/" + notebook_id, settings);
879 };
891 };
880 };
892 };
881
893
882
894
883 Notebook.prototype.notebook_saved = function (data, status, xhr) {
895 Notebook.prototype.notebook_saved = function (data, status, xhr) {
884 this.dirty = false;
896 this.dirty = false;
885 setTimeout($.proxy(IPython.save_widget.status_save,IPython.save_widget),500);
897 setTimeout($.proxy(IPython.save_widget.status_save,IPython.save_widget),500);
886 }
898 }
887
899
888
900
889 Notebook.prototype.load_notebook = function (callback) {
901 Notebook.prototype.load_notebook = function (callback) {
890 var that = this;
902 var that = this;
891 var notebook_id = IPython.save_widget.get_notebook_id();
903 var notebook_id = IPython.save_widget.get_notebook_id();
892 // We do the call with settings so we can set cache to false.
904 // We do the call with settings so we can set cache to false.
893 var settings = {
905 var settings = {
894 processData : false,
906 processData : false,
895 cache : false,
907 cache : false,
896 type : "GET",
908 type : "GET",
897 dataType : "json",
909 dataType : "json",
898 success : function (data, status, xhr) {
910 success : function (data, status, xhr) {
899 that.notebook_loaded(data, status, xhr);
911 that.notebook_loaded(data, status, xhr);
900 if (callback !== undefined) {
912 if (callback !== undefined) {
901 callback();
913 callback();
902 };
914 };
903 }
915 }
904 };
916 };
905 IPython.save_widget.status_loading();
917 IPython.save_widget.status_loading();
906 $.ajax("/notebooks/" + notebook_id, settings);
918 $.ajax("/notebooks/" + notebook_id, settings);
907 }
919 }
908
920
909
921
910 Notebook.prototype.notebook_loaded = function (data, status, xhr) {
922 Notebook.prototype.notebook_loaded = function (data, status, xhr) {
911 this.fromJSON(data);
923 this.fromJSON(data);
912 if (this.ncells() === 0) {
924 if (this.ncells() === 0) {
913 this.insert_code_cell_below();
925 this.insert_code_cell_below();
914 };
926 };
915 IPython.save_widget.status_save();
927 IPython.save_widget.status_save();
916 IPython.save_widget.set_notebook_name(data.metadata.name);
928 IPython.save_widget.set_notebook_name(data.metadata.name);
917 this.start_kernel();
929 this.start_kernel();
918 this.dirty = false;
930 this.dirty = false;
919 // fromJSON always selects the last cell inserted. We need to wait
931 // fromJSON always selects the last cell inserted. We need to wait
920 // until that is done before scrolling to the top.
932 // until that is done before scrolling to the top.
921 setTimeout(function () {
933 setTimeout(function () {
922 IPython.notebook.select(0);
934 IPython.notebook.select(0);
923 IPython.notebook.scroll_to_top();
935 IPython.notebook.scroll_to_top();
924 }, 50);
936 }, 50);
925 };
937 };
926
938
927 IPython.Notebook = Notebook;
939 IPython.Notebook = Notebook;
928
940
929 return IPython;
941 return IPython;
930
942
931 }(IPython));
943 }(IPython));
932
944
General Comments 0
You need to be logged in to leave comments. Login now