##// END OF EJS Templates
Merge pull request #4853 from minrk/imgmd...
Brian E. Granger -
r14888:6e967615 merge
parent child Browse files
Show More
@@ -0,0 +1,64
1 //
2 // Test display of images
3 //
4 // The effect of shape metadata is validated,
5 // using Image(retina=True)
6 //
7
8
9 // 2x2 black square in b64 jpeg and png
10 b64_image_data = {
11 "image/png" : "b'iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAIAAAD91JpzAAAAC0lEQVR4nGNgQAYAAA4AAamRc7EA\\nAAAASUVORK5CYII='",
12 "image/jpeg" : "b'/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0a\\nHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIy\\nMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAACAAIDASIA\\nAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQA\\nAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3\\nODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWm\\np6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEA\\nAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSEx\\nBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElK\\nU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3\\nuLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD5/ooo\\noA//2Q=='"
13 }
14
15
16 casper.notebook_test(function () {
17 // this.printLog();
18 this.test_img_shape = function(fmt, retina) {
19 this.thenEvaluate(function (b64data, retina) {
20 IPython.notebook.get_cell(0).clear_output();
21 var cell = IPython.notebook.get_cell(0);
22 cell.set_text([
23 "import base64",
24 "from IPython.display import display, Image",
25 "data = base64.decodestring(" + b64data + ")",
26 "retina = bool(" + retina + ")",
27 "display(Image(data, retina=retina))"
28 ].join("\n"));
29 cell.execute();
30 }, {b64data : b64_image_data[fmt], retina : retina ? 1:0 });
31
32 this.wait_for_output(0);
33
34 this.then(function() {
35 var img = this.evaluate(function() {
36 // get a summary of the image that was just displayed
37 var cell = IPython.notebook.get_cell(0);
38 var img = $(cell.output_area.element.find("img")[0]);
39 return {
40 src : img.attr("src"),
41 width : img.width(),
42 height : img.height(),
43 width_attr : img.attr("width"),
44 height_attr : img.attr("height")
45 };
46 });
47 var prefix = "Image('" + fmt + "', retina=" + retina + ") ";
48 this.test.assertType(img, "object", prefix + "img was displayed");
49 this.test.assertEquals(img.src.split(',')[0], "data:" + fmt + ";base64",
50 prefix + "data-uri prefix"
51 );
52 var sz = retina ? 1 : 2;
53 var sz_attr = retina ? "1" : undefined;
54 this.test.assertEquals(img.height, sz, prefix + "measured height");
55 this.test.assertEquals(img.width, sz, prefix + "measured width");
56 this.test.assertEquals(img.height_attr, sz_attr, prefix + "height attr");
57 this.test.assertEquals(img.width_attr, sz_attr, prefix + "width attr");
58 });
59 };
60 this.test_img_shape("image/png", false);
61 this.test_img_shape("image/png", true);
62 this.test_img_shape("image/jpeg", false);
63 this.test_img_shape("image/jpeg", true);
64 });
@@ -1,819 +1,815
1 //----------------------------------------------------------------------------
1 //----------------------------------------------------------------------------
2 // Copyright (C) 2008 The IPython Development Team
2 // Copyright (C) 2008 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 // OutputArea
9 // OutputArea
10 //============================================================================
10 //============================================================================
11
11
12 /**
12 /**
13 * @module IPython
13 * @module IPython
14 * @namespace IPython
14 * @namespace IPython
15 * @submodule OutputArea
15 * @submodule OutputArea
16 */
16 */
17 var IPython = (function (IPython) {
17 var IPython = (function (IPython) {
18 "use strict";
18 "use strict";
19
19
20 var utils = IPython.utils;
20 var utils = IPython.utils;
21
21
22 /**
22 /**
23 * @class OutputArea
23 * @class OutputArea
24 *
24 *
25 * @constructor
25 * @constructor
26 */
26 */
27
27
28 var OutputArea = function (selector, prompt_area) {
28 var OutputArea = function (selector, prompt_area) {
29 this.selector = selector;
29 this.selector = selector;
30 this.wrapper = $(selector);
30 this.wrapper = $(selector);
31 this.outputs = [];
31 this.outputs = [];
32 this.collapsed = false;
32 this.collapsed = false;
33 this.scrolled = false;
33 this.scrolled = false;
34 this.clear_queued = null;
34 this.clear_queued = null;
35 if (prompt_area === undefined) {
35 if (prompt_area === undefined) {
36 this.prompt_area = true;
36 this.prompt_area = true;
37 } else {
37 } else {
38 this.prompt_area = prompt_area;
38 this.prompt_area = prompt_area;
39 }
39 }
40 this.create_elements();
40 this.create_elements();
41 this.style();
41 this.style();
42 this.bind_events();
42 this.bind_events();
43 };
43 };
44
44
45 OutputArea.prototype.create_elements = function () {
45 OutputArea.prototype.create_elements = function () {
46 this.element = $("<div/>");
46 this.element = $("<div/>");
47 this.collapse_button = $("<div/>");
47 this.collapse_button = $("<div/>");
48 this.prompt_overlay = $("<div/>");
48 this.prompt_overlay = $("<div/>");
49 this.wrapper.append(this.prompt_overlay);
49 this.wrapper.append(this.prompt_overlay);
50 this.wrapper.append(this.element);
50 this.wrapper.append(this.element);
51 this.wrapper.append(this.collapse_button);
51 this.wrapper.append(this.collapse_button);
52 };
52 };
53
53
54
54
55 OutputArea.prototype.style = function () {
55 OutputArea.prototype.style = function () {
56 this.collapse_button.hide();
56 this.collapse_button.hide();
57 this.prompt_overlay.hide();
57 this.prompt_overlay.hide();
58
58
59 this.wrapper.addClass('output_wrapper');
59 this.wrapper.addClass('output_wrapper');
60 this.element.addClass('output');
60 this.element.addClass('output');
61
61
62 this.collapse_button.addClass("btn output_collapsed");
62 this.collapse_button.addClass("btn output_collapsed");
63 this.collapse_button.attr('title', 'click to expand output');
63 this.collapse_button.attr('title', 'click to expand output');
64 this.collapse_button.text('. . .');
64 this.collapse_button.text('. . .');
65
65
66 this.prompt_overlay.addClass('out_prompt_overlay prompt');
66 this.prompt_overlay.addClass('out_prompt_overlay prompt');
67 this.prompt_overlay.attr('title', 'click to expand output; double click to hide output');
67 this.prompt_overlay.attr('title', 'click to expand output; double click to hide output');
68
68
69 this.collapse();
69 this.collapse();
70 };
70 };
71
71
72 /**
72 /**
73 * Should the OutputArea scroll?
73 * Should the OutputArea scroll?
74 * Returns whether the height (in lines) exceeds a threshold.
74 * Returns whether the height (in lines) exceeds a threshold.
75 *
75 *
76 * @private
76 * @private
77 * @method _should_scroll
77 * @method _should_scroll
78 * @param [lines=100]{Integer}
78 * @param [lines=100]{Integer}
79 * @return {Bool}
79 * @return {Bool}
80 *
80 *
81 */
81 */
82 OutputArea.prototype._should_scroll = function (lines) {
82 OutputArea.prototype._should_scroll = function (lines) {
83 if (lines <=0 ){ return }
83 if (lines <=0 ){ return }
84 if (!lines) {
84 if (!lines) {
85 lines = 100;
85 lines = 100;
86 }
86 }
87 // line-height from http://stackoverflow.com/questions/1185151
87 // line-height from http://stackoverflow.com/questions/1185151
88 var fontSize = this.element.css('font-size');
88 var fontSize = this.element.css('font-size');
89 var lineHeight = Math.floor(parseInt(fontSize.replace('px','')) * 1.5);
89 var lineHeight = Math.floor(parseInt(fontSize.replace('px','')) * 1.5);
90
90
91 return (this.element.height() > lines * lineHeight);
91 return (this.element.height() > lines * lineHeight);
92 };
92 };
93
93
94
94
95 OutputArea.prototype.bind_events = function () {
95 OutputArea.prototype.bind_events = function () {
96 var that = this;
96 var that = this;
97 this.prompt_overlay.dblclick(function () { that.toggle_output(); });
97 this.prompt_overlay.dblclick(function () { that.toggle_output(); });
98 this.prompt_overlay.click(function () { that.toggle_scroll(); });
98 this.prompt_overlay.click(function () { that.toggle_scroll(); });
99
99
100 this.element.resize(function () {
100 this.element.resize(function () {
101 // FIXME: Firefox on Linux misbehaves, so automatic scrolling is disabled
101 // FIXME: Firefox on Linux misbehaves, so automatic scrolling is disabled
102 if ( IPython.utils.browser[0] === "Firefox" ) {
102 if ( IPython.utils.browser[0] === "Firefox" ) {
103 return;
103 return;
104 }
104 }
105 // maybe scroll output,
105 // maybe scroll output,
106 // if it's grown large enough and hasn't already been scrolled.
106 // if it's grown large enough and hasn't already been scrolled.
107 if ( !that.scrolled && that._should_scroll(OutputArea.auto_scroll_threshold)) {
107 if ( !that.scrolled && that._should_scroll(OutputArea.auto_scroll_threshold)) {
108 that.scroll_area();
108 that.scroll_area();
109 }
109 }
110 });
110 });
111 this.collapse_button.click(function () {
111 this.collapse_button.click(function () {
112 that.expand();
112 that.expand();
113 });
113 });
114 };
114 };
115
115
116
116
117 OutputArea.prototype.collapse = function () {
117 OutputArea.prototype.collapse = function () {
118 if (!this.collapsed) {
118 if (!this.collapsed) {
119 this.element.hide();
119 this.element.hide();
120 this.prompt_overlay.hide();
120 this.prompt_overlay.hide();
121 if (this.element.html()){
121 if (this.element.html()){
122 this.collapse_button.show();
122 this.collapse_button.show();
123 }
123 }
124 this.collapsed = true;
124 this.collapsed = true;
125 }
125 }
126 };
126 };
127
127
128
128
129 OutputArea.prototype.expand = function () {
129 OutputArea.prototype.expand = function () {
130 if (this.collapsed) {
130 if (this.collapsed) {
131 this.collapse_button.hide();
131 this.collapse_button.hide();
132 this.element.show();
132 this.element.show();
133 this.prompt_overlay.show();
133 this.prompt_overlay.show();
134 this.collapsed = false;
134 this.collapsed = false;
135 }
135 }
136 };
136 };
137
137
138
138
139 OutputArea.prototype.toggle_output = function () {
139 OutputArea.prototype.toggle_output = function () {
140 if (this.collapsed) {
140 if (this.collapsed) {
141 this.expand();
141 this.expand();
142 } else {
142 } else {
143 this.collapse();
143 this.collapse();
144 }
144 }
145 };
145 };
146
146
147
147
148 OutputArea.prototype.scroll_area = function () {
148 OutputArea.prototype.scroll_area = function () {
149 this.element.addClass('output_scroll');
149 this.element.addClass('output_scroll');
150 this.prompt_overlay.attr('title', 'click to unscroll output; double click to hide');
150 this.prompt_overlay.attr('title', 'click to unscroll output; double click to hide');
151 this.scrolled = true;
151 this.scrolled = true;
152 };
152 };
153
153
154
154
155 OutputArea.prototype.unscroll_area = function () {
155 OutputArea.prototype.unscroll_area = function () {
156 this.element.removeClass('output_scroll');
156 this.element.removeClass('output_scroll');
157 this.prompt_overlay.attr('title', 'click to scroll output; double click to hide');
157 this.prompt_overlay.attr('title', 'click to scroll output; double click to hide');
158 this.scrolled = false;
158 this.scrolled = false;
159 };
159 };
160
160
161 /**
161 /**
162 * Threshold to trigger autoscroll when the OutputArea is resized,
162 * Threshold to trigger autoscroll when the OutputArea is resized,
163 * typically when new outputs are added.
163 * typically when new outputs are added.
164 *
164 *
165 * Behavior is undefined if autoscroll is lower than minimum_scroll_threshold,
165 * Behavior is undefined if autoscroll is lower than minimum_scroll_threshold,
166 * unless it is < 0, in which case autoscroll will never be triggered
166 * unless it is < 0, in which case autoscroll will never be triggered
167 *
167 *
168 * @property auto_scroll_threshold
168 * @property auto_scroll_threshold
169 * @type Number
169 * @type Number
170 * @default 100
170 * @default 100
171 *
171 *
172 **/
172 **/
173 OutputArea.auto_scroll_threshold = 100;
173 OutputArea.auto_scroll_threshold = 100;
174
174
175
175
176 /**
176 /**
177 * Lower limit (in lines) for OutputArea to be made scrollable. OutputAreas
177 * Lower limit (in lines) for OutputArea to be made scrollable. OutputAreas
178 * shorter than this are never scrolled.
178 * shorter than this are never scrolled.
179 *
179 *
180 * @property minimum_scroll_threshold
180 * @property minimum_scroll_threshold
181 * @type Number
181 * @type Number
182 * @default 20
182 * @default 20
183 *
183 *
184 **/
184 **/
185 OutputArea.minimum_scroll_threshold = 20;
185 OutputArea.minimum_scroll_threshold = 20;
186
186
187
187
188 /**
188 /**
189 *
189 *
190 * Scroll OutputArea if height supperior than a threshold (in lines).
190 * Scroll OutputArea if height supperior than a threshold (in lines).
191 *
191 *
192 * Threshold is a maximum number of lines. If unspecified, defaults to
192 * Threshold is a maximum number of lines. If unspecified, defaults to
193 * OutputArea.minimum_scroll_threshold.
193 * OutputArea.minimum_scroll_threshold.
194 *
194 *
195 * Negative threshold will prevent the OutputArea from ever scrolling.
195 * Negative threshold will prevent the OutputArea from ever scrolling.
196 *
196 *
197 * @method scroll_if_long
197 * @method scroll_if_long
198 *
198 *
199 * @param [lines=20]{Number} Default to 20 if not set,
199 * @param [lines=20]{Number} Default to 20 if not set,
200 * behavior undefined for value of `0`.
200 * behavior undefined for value of `0`.
201 *
201 *
202 **/
202 **/
203 OutputArea.prototype.scroll_if_long = function (lines) {
203 OutputArea.prototype.scroll_if_long = function (lines) {
204 var n = lines | OutputArea.minimum_scroll_threshold;
204 var n = lines | OutputArea.minimum_scroll_threshold;
205 if(n <= 0){
205 if(n <= 0){
206 return
206 return
207 }
207 }
208
208
209 if (this._should_scroll(n)) {
209 if (this._should_scroll(n)) {
210 // only allow scrolling long-enough output
210 // only allow scrolling long-enough output
211 this.scroll_area();
211 this.scroll_area();
212 }
212 }
213 };
213 };
214
214
215
215
216 OutputArea.prototype.toggle_scroll = function () {
216 OutputArea.prototype.toggle_scroll = function () {
217 if (this.scrolled) {
217 if (this.scrolled) {
218 this.unscroll_area();
218 this.unscroll_area();
219 } else {
219 } else {
220 // only allow scrolling long-enough output
220 // only allow scrolling long-enough output
221 this.scroll_if_long();
221 this.scroll_if_long();
222 }
222 }
223 };
223 };
224
224
225
225
226 // typeset with MathJax if MathJax is available
226 // typeset with MathJax if MathJax is available
227 OutputArea.prototype.typeset = function () {
227 OutputArea.prototype.typeset = function () {
228 if (window.MathJax){
228 if (window.MathJax){
229 MathJax.Hub.Queue(["Typeset",MathJax.Hub]);
229 MathJax.Hub.Queue(["Typeset",MathJax.Hub]);
230 }
230 }
231 };
231 };
232
232
233
233
234 OutputArea.prototype.handle_output = function (msg) {
234 OutputArea.prototype.handle_output = function (msg) {
235 var json = {};
235 var json = {};
236 var msg_type = json.output_type = msg.header.msg_type;
236 var msg_type = json.output_type = msg.header.msg_type;
237 var content = msg.content;
237 var content = msg.content;
238 if (msg_type === "stream") {
238 if (msg_type === "stream") {
239 json.text = content.data;
239 json.text = content.data;
240 json.stream = content.name;
240 json.stream = content.name;
241 } else if (msg_type === "display_data") {
241 } else if (msg_type === "display_data") {
242 json = content.data;
242 json = content.data;
243 json.output_type = msg_type;
243 json.output_type = msg_type;
244 json.metadata = content.metadata;
244 json.metadata = content.metadata;
245 } else if (msg_type === "pyout") {
245 } else if (msg_type === "pyout") {
246 json = content.data;
246 json = content.data;
247 json.output_type = msg_type;
247 json.output_type = msg_type;
248 json.metadata = content.metadata;
248 json.metadata = content.metadata;
249 json.prompt_number = content.execution_count;
249 json.prompt_number = content.execution_count;
250 } else if (msg_type === "pyerr") {
250 } else if (msg_type === "pyerr") {
251 json.ename = content.ename;
251 json.ename = content.ename;
252 json.evalue = content.evalue;
252 json.evalue = content.evalue;
253 json.traceback = content.traceback;
253 json.traceback = content.traceback;
254 }
254 }
255 this.append_output(json);
255 this.append_output(json);
256 };
256 };
257
257
258 OutputArea.mime_map = {
258 OutputArea.mime_map = {
259 "text/plain" : "text",
259 "text/plain" : "text",
260 "text/html" : "html",
260 "text/html" : "html",
261 "image/svg+xml" : "svg",
261 "image/svg+xml" : "svg",
262 "image/png" : "png",
262 "image/png" : "png",
263 "image/jpeg" : "jpeg",
263 "image/jpeg" : "jpeg",
264 "text/latex" : "latex",
264 "text/latex" : "latex",
265 "application/json" : "json",
265 "application/json" : "json",
266 "application/javascript" : "javascript",
266 "application/javascript" : "javascript",
267 };
267 };
268
268
269 OutputArea.mime_map_r = {
269 OutputArea.mime_map_r = {
270 "text" : "text/plain",
270 "text" : "text/plain",
271 "html" : "text/html",
271 "html" : "text/html",
272 "svg" : "image/svg+xml",
272 "svg" : "image/svg+xml",
273 "png" : "image/png",
273 "png" : "image/png",
274 "jpeg" : "image/jpeg",
274 "jpeg" : "image/jpeg",
275 "latex" : "text/latex",
275 "latex" : "text/latex",
276 "json" : "application/json",
276 "json" : "application/json",
277 "javascript" : "application/javascript",
277 "javascript" : "application/javascript",
278 };
278 };
279
279
280 OutputArea.prototype.rename_keys = function (data, key_map) {
280 OutputArea.prototype.rename_keys = function (data, key_map) {
281 var remapped = {};
281 var remapped = {};
282 for (var key in data) {
282 for (var key in data) {
283 var new_key = key_map[key] || key;
283 var new_key = key_map[key] || key;
284 remapped[new_key] = data[key];
284 remapped[new_key] = data[key];
285 }
285 }
286 return remapped;
286 return remapped;
287 };
287 };
288
288
289
289
290 OutputArea.output_types = [
290 OutputArea.output_types = [
291 'application/javascript',
291 'application/javascript',
292 'text/html',
292 'text/html',
293 'text/latex',
293 'text/latex',
294 'image/svg+xml',
294 'image/svg+xml',
295 'image/png',
295 'image/png',
296 'image/jpeg',
296 'image/jpeg',
297 'text/plain'
297 'text/plain'
298 ];
298 ];
299
299
300 OutputArea.prototype.validate_output = function (json) {
300 OutputArea.prototype.validate_output = function (json) {
301 // scrub invalid outputs
301 // scrub invalid outputs
302 // TODO: right now everything is a string, but JSON really shouldn't be.
302 // TODO: right now everything is a string, but JSON really shouldn't be.
303 // nbformat 4 will fix that.
303 // nbformat 4 will fix that.
304 $.map(OutputArea.output_types, function(key){
304 $.map(OutputArea.output_types, function(key){
305 if (json[key] !== undefined && typeof json[key] !== 'string') {
305 if (json[key] !== undefined && typeof json[key] !== 'string') {
306 console.log("Invalid type for " + key, json[key]);
306 console.log("Invalid type for " + key, json[key]);
307 delete json[key];
307 delete json[key];
308 }
308 }
309 });
309 });
310 return json;
310 return json;
311 };
311 };
312
312
313 OutputArea.prototype.append_output = function (json) {
313 OutputArea.prototype.append_output = function (json) {
314 this.expand();
314 this.expand();
315 // Clear the output if clear is queued.
315 // Clear the output if clear is queued.
316 var needs_height_reset = false;
316 var needs_height_reset = false;
317 if (this.clear_queued) {
317 if (this.clear_queued) {
318 this.clear_output(false);
318 this.clear_output(false);
319 needs_height_reset = true;
319 needs_height_reset = true;
320 }
320 }
321
321
322 // validate output data types
322 // validate output data types
323 json = this.validate_output(json);
323 json = this.validate_output(json);
324
324
325 if (json.output_type === 'pyout') {
325 if (json.output_type === 'pyout') {
326 this.append_pyout(json);
326 this.append_pyout(json);
327 } else if (json.output_type === 'pyerr') {
327 } else if (json.output_type === 'pyerr') {
328 this.append_pyerr(json);
328 this.append_pyerr(json);
329 } else if (json.output_type === 'display_data') {
329 } else if (json.output_type === 'display_data') {
330 this.append_display_data(json);
330 this.append_display_data(json);
331 } else if (json.output_type === 'stream') {
331 } else if (json.output_type === 'stream') {
332 this.append_stream(json);
332 this.append_stream(json);
333 }
333 }
334 this.outputs.push(json);
334 this.outputs.push(json);
335
335
336 // Only reset the height to automatic if the height is currently
336 // Only reset the height to automatic if the height is currently
337 // fixed (done by wait=True flag on clear_output).
337 // fixed (done by wait=True flag on clear_output).
338 if (needs_height_reset) {
338 if (needs_height_reset) {
339 this.element.height('');
339 this.element.height('');
340 }
340 }
341
341
342 var that = this;
342 var that = this;
343 setTimeout(function(){that.element.trigger('resize');}, 100);
343 setTimeout(function(){that.element.trigger('resize');}, 100);
344 };
344 };
345
345
346
346
347 OutputArea.prototype.create_output_area = function () {
347 OutputArea.prototype.create_output_area = function () {
348 var oa = $("<div/>").addClass("output_area");
348 var oa = $("<div/>").addClass("output_area");
349 if (this.prompt_area) {
349 if (this.prompt_area) {
350 oa.append($('<div/>').addClass('prompt'));
350 oa.append($('<div/>').addClass('prompt'));
351 }
351 }
352 return oa;
352 return oa;
353 };
353 };
354
354
355
355
356 function _get_metadata_key(metadata, key, mime) {
356 function _get_metadata_key(metadata, key, mime) {
357 var mime_md = metadata[mime];
357 var mime_md = metadata[mime];
358 // mime-specific higher priority
358 // mime-specific higher priority
359 if (mime_md && mime_md[key] !== undefined) {
359 if (mime_md && mime_md[key] !== undefined) {
360 return mime_md[key];
360 return mime_md[key];
361 }
361 }
362 // fallback on global
362 // fallback on global
363 return metadata[key];
363 return metadata[key];
364 }
364 }
365
365
366 OutputArea.prototype.create_output_subarea = function(md, classes, mime) {
366 OutputArea.prototype.create_output_subarea = function(md, classes, mime) {
367 var subarea = $('<div/>').addClass('output_subarea').addClass(classes);
367 var subarea = $('<div/>').addClass('output_subarea').addClass(classes);
368 if (_get_metadata_key(md, 'isolated', mime)) {
368 if (_get_metadata_key(md, 'isolated', mime)) {
369 // Create an iframe to isolate the subarea from the rest of the
369 // Create an iframe to isolate the subarea from the rest of the
370 // document
370 // document
371 var iframe = $('<iframe/>').addClass('box-flex1');
371 var iframe = $('<iframe/>').addClass('box-flex1');
372 iframe.css({'height':1, 'width':'100%', 'display':'block'});
372 iframe.css({'height':1, 'width':'100%', 'display':'block'});
373 iframe.attr('frameborder', 0);
373 iframe.attr('frameborder', 0);
374 iframe.attr('scrolling', 'auto');
374 iframe.attr('scrolling', 'auto');
375
375
376 // Once the iframe is loaded, the subarea is dynamically inserted
376 // Once the iframe is loaded, the subarea is dynamically inserted
377 iframe.on('load', function() {
377 iframe.on('load', function() {
378 // Workaround needed by Firefox, to properly render svg inside
378 // Workaround needed by Firefox, to properly render svg inside
379 // iframes, see http://stackoverflow.com/questions/10177190/
379 // iframes, see http://stackoverflow.com/questions/10177190/
380 // svg-dynamically-added-to-iframe-does-not-render-correctly
380 // svg-dynamically-added-to-iframe-does-not-render-correctly
381 this.contentDocument.open();
381 this.contentDocument.open();
382
382
383 // Insert the subarea into the iframe
383 // Insert the subarea into the iframe
384 // We must directly write the html. When using Jquery's append
384 // We must directly write the html. When using Jquery's append
385 // method, javascript is evaluated in the parent document and
385 // method, javascript is evaluated in the parent document and
386 // not in the iframe document.
386 // not in the iframe document.
387 this.contentDocument.write(subarea.html());
387 this.contentDocument.write(subarea.html());
388
388
389 this.contentDocument.close();
389 this.contentDocument.close();
390
390
391 var body = this.contentDocument.body;
391 var body = this.contentDocument.body;
392 // Adjust the iframe height automatically
392 // Adjust the iframe height automatically
393 iframe.height(body.scrollHeight + 'px');
393 iframe.height(body.scrollHeight + 'px');
394 });
394 });
395
395
396 // Elements should be appended to the inner subarea and not to the
396 // Elements should be appended to the inner subarea and not to the
397 // iframe
397 // iframe
398 iframe.append = function(that) {
398 iframe.append = function(that) {
399 subarea.append(that);
399 subarea.append(that);
400 };
400 };
401
401
402 return iframe;
402 return iframe;
403 } else {
403 } else {
404 return subarea;
404 return subarea;
405 }
405 }
406 }
406 }
407
407
408
408
409 OutputArea.prototype._append_javascript_error = function (err, element) {
409 OutputArea.prototype._append_javascript_error = function (err, element) {
410 // display a message when a javascript error occurs in display output
410 // display a message when a javascript error occurs in display output
411 var msg = "Javascript error adding output!"
411 var msg = "Javascript error adding output!"
412 if ( element === undefined ) return;
412 if ( element === undefined ) return;
413 element.append(
413 element.append(
414 $('<div/>').html(msg + "<br/>" +
414 $('<div/>').html(msg + "<br/>" +
415 err.toString() +
415 err.toString() +
416 '<br/>See your browser Javascript console for more details.'
416 '<br/>See your browser Javascript console for more details.'
417 ).addClass('js-error')
417 ).addClass('js-error')
418 );
418 );
419 };
419 };
420
420
421 OutputArea.prototype._safe_append = function (toinsert) {
421 OutputArea.prototype._safe_append = function (toinsert) {
422 // safely append an item to the document
422 // safely append an item to the document
423 // this is an object created by user code,
423 // this is an object created by user code,
424 // and may have errors, which should not be raised
424 // and may have errors, which should not be raised
425 // under any circumstances.
425 // under any circumstances.
426 try {
426 try {
427 this.element.append(toinsert);
427 this.element.append(toinsert);
428 } catch(err) {
428 } catch(err) {
429 console.log(err);
429 console.log(err);
430 // Create an actual output_area and output_subarea, which creates
430 // Create an actual output_area and output_subarea, which creates
431 // the prompt area and the proper indentation.
431 // the prompt area and the proper indentation.
432 var toinsert = this.create_output_area();
432 var toinsert = this.create_output_area();
433 var subarea = $('<div/>').addClass('output_subarea');
433 var subarea = $('<div/>').addClass('output_subarea');
434 toinsert.append(subarea);
434 toinsert.append(subarea);
435 this._append_javascript_error(err, subarea);
435 this._append_javascript_error(err, subarea);
436 this.element.append(toinsert);
436 this.element.append(toinsert);
437 }
437 }
438 };
438 };
439
439
440
440
441 OutputArea.prototype.append_pyout = function (json) {
441 OutputArea.prototype.append_pyout = function (json) {
442 var n = json.prompt_number || ' ';
442 var n = json.prompt_number || ' ';
443 var toinsert = this.create_output_area();
443 var toinsert = this.create_output_area();
444 if (this.prompt_area) {
444 if (this.prompt_area) {
445 toinsert.find('div.prompt').addClass('output_prompt').text('Out[' + n + ']:');
445 toinsert.find('div.prompt').addClass('output_prompt').text('Out[' + n + ']:');
446 }
446 }
447 this.append_mime_type(json, toinsert);
447 this.append_mime_type(json, toinsert);
448 this._safe_append(toinsert);
448 this._safe_append(toinsert);
449 // If we just output latex, typeset it.
449 // If we just output latex, typeset it.
450 if ((json['text/latex'] !== undefined) || (json['text/html'] !== undefined)) {
450 if ((json['text/latex'] !== undefined) || (json['text/html'] !== undefined)) {
451 this.typeset();
451 this.typeset();
452 }
452 }
453 };
453 };
454
454
455
455
456 OutputArea.prototype.append_pyerr = function (json) {
456 OutputArea.prototype.append_pyerr = function (json) {
457 var tb = json.traceback;
457 var tb = json.traceback;
458 if (tb !== undefined && tb.length > 0) {
458 if (tb !== undefined && tb.length > 0) {
459 var s = '';
459 var s = '';
460 var len = tb.length;
460 var len = tb.length;
461 for (var i=0; i<len; i++) {
461 for (var i=0; i<len; i++) {
462 s = s + tb[i] + '\n';
462 s = s + tb[i] + '\n';
463 }
463 }
464 s = s + '\n';
464 s = s + '\n';
465 var toinsert = this.create_output_area();
465 var toinsert = this.create_output_area();
466 this.append_text(s, {}, toinsert);
466 this.append_text(s, {}, toinsert);
467 this._safe_append(toinsert);
467 this._safe_append(toinsert);
468 }
468 }
469 };
469 };
470
470
471
471
472 OutputArea.prototype.append_stream = function (json) {
472 OutputArea.prototype.append_stream = function (json) {
473 // temporary fix: if stream undefined (json file written prior to this patch),
473 // temporary fix: if stream undefined (json file written prior to this patch),
474 // default to most likely stdout:
474 // default to most likely stdout:
475 if (json.stream == undefined){
475 if (json.stream == undefined){
476 json.stream = 'stdout';
476 json.stream = 'stdout';
477 }
477 }
478 var text = json.text;
478 var text = json.text;
479 var subclass = "output_"+json.stream;
479 var subclass = "output_"+json.stream;
480 if (this.outputs.length > 0){
480 if (this.outputs.length > 0){
481 // have at least one output to consider
481 // have at least one output to consider
482 var last = this.outputs[this.outputs.length-1];
482 var last = this.outputs[this.outputs.length-1];
483 if (last.output_type == 'stream' && json.stream == last.stream){
483 if (last.output_type == 'stream' && json.stream == last.stream){
484 // latest output was in the same stream,
484 // latest output was in the same stream,
485 // so append directly into its pre tag
485 // so append directly into its pre tag
486 // escape ANSI & HTML specials:
486 // escape ANSI & HTML specials:
487 var pre = this.element.find('div.'+subclass).last().find('pre');
487 var pre = this.element.find('div.'+subclass).last().find('pre');
488 var html = utils.fixCarriageReturn(
488 var html = utils.fixCarriageReturn(
489 pre.html() + utils.fixConsole(text));
489 pre.html() + utils.fixConsole(text));
490 pre.html(html);
490 pre.html(html);
491 return;
491 return;
492 }
492 }
493 }
493 }
494
494
495 if (!text.replace("\r", "")) {
495 if (!text.replace("\r", "")) {
496 // text is nothing (empty string, \r, etc.)
496 // text is nothing (empty string, \r, etc.)
497 // so don't append any elements, which might add undesirable space
497 // so don't append any elements, which might add undesirable space
498 return;
498 return;
499 }
499 }
500
500
501 // If we got here, attach a new div
501 // If we got here, attach a new div
502 var toinsert = this.create_output_area();
502 var toinsert = this.create_output_area();
503 this.append_text(text, {}, toinsert, "output_stream "+subclass);
503 this.append_text(text, {}, toinsert, "output_stream "+subclass);
504 this._safe_append(toinsert);
504 this._safe_append(toinsert);
505 };
505 };
506
506
507
507
508 OutputArea.prototype.append_display_data = function (json) {
508 OutputArea.prototype.append_display_data = function (json) {
509 var toinsert = this.create_output_area();
509 var toinsert = this.create_output_area();
510 if (this.append_mime_type(json, toinsert)) {
510 if (this.append_mime_type(json, toinsert)) {
511 this._safe_append(toinsert);
511 this._safe_append(toinsert);
512 // If we just output latex, typeset it.
512 // If we just output latex, typeset it.
513 if ((json['text/latex'] !== undefined) || (json['text/html'] !== undefined)) {
513 if ((json['text/latex'] !== undefined) || (json['text/html'] !== undefined)) {
514 this.typeset();
514 this.typeset();
515 }
515 }
516 }
516 }
517 };
517 };
518
518
519 OutputArea.display_order = [
519 OutputArea.display_order = [
520 'application/javascript',
520 'application/javascript',
521 'text/html',
521 'text/html',
522 'text/latex',
522 'text/latex',
523 'image/svg+xml',
523 'image/svg+xml',
524 'image/png',
524 'image/png',
525 'image/jpeg',
525 'image/jpeg',
526 'text/plain'
526 'text/plain'
527 ];
527 ];
528
528
529 OutputArea.prototype.append_mime_type = function (json, element) {
529 OutputArea.prototype.append_mime_type = function (json, element) {
530
530
531 for (var type_i in OutputArea.display_order) {
531 for (var type_i in OutputArea.display_order) {
532 var type = OutputArea.display_order[type_i];
532 var type = OutputArea.display_order[type_i];
533 var append = OutputArea.append_map[type];
533 var append = OutputArea.append_map[type];
534 if ((json[type] !== undefined) && append) {
534 if ((json[type] !== undefined) && append) {
535 var md = json.metadata || {};
535 var md = json.metadata || {};
536 append.apply(this, [json[type], md, element]);
536 append.apply(this, [json[type], md, element]);
537 return true;
537 return true;
538 }
538 }
539 }
539 }
540 return false;
540 return false;
541 };
541 };
542
542
543
543
544 OutputArea.prototype.append_html = function (html, md, element) {
544 OutputArea.prototype.append_html = function (html, md, element) {
545 var type = 'text/html';
545 var type = 'text/html';
546 var toinsert = this.create_output_subarea(md, "output_html rendered_html", type);
546 var toinsert = this.create_output_subarea(md, "output_html rendered_html", type);
547 IPython.keyboard_manager.register_events(toinsert);
547 IPython.keyboard_manager.register_events(toinsert);
548 toinsert.append(html);
548 toinsert.append(html);
549 element.append(toinsert);
549 element.append(toinsert);
550 };
550 };
551
551
552
552
553 OutputArea.prototype.append_javascript = function (js, md, container) {
553 OutputArea.prototype.append_javascript = function (js, md, container) {
554 // We just eval the JS code, element appears in the local scope.
554 // We just eval the JS code, element appears in the local scope.
555 var type = 'application/javascript';
555 var type = 'application/javascript';
556 var element = this.create_output_subarea(md, "output_javascript", type);
556 var element = this.create_output_subarea(md, "output_javascript", type);
557 IPython.keyboard_manager.register_events(element);
557 IPython.keyboard_manager.register_events(element);
558 container.append(element);
558 container.append(element);
559 try {
559 try {
560 eval(js);
560 eval(js);
561 } catch(err) {
561 } catch(err) {
562 console.log(err);
562 console.log(err);
563 this._append_javascript_error(err, element);
563 this._append_javascript_error(err, element);
564 }
564 }
565 };
565 };
566
566
567
567
568 OutputArea.prototype.append_text = function (data, md, element, extra_class) {
568 OutputArea.prototype.append_text = function (data, md, element, extra_class) {
569 var type = 'text/plain';
569 var type = 'text/plain';
570 var toinsert = this.create_output_subarea(md, "output_text", type);
570 var toinsert = this.create_output_subarea(md, "output_text", type);
571 // escape ANSI & HTML specials in plaintext:
571 // escape ANSI & HTML specials in plaintext:
572 data = utils.fixConsole(data);
572 data = utils.fixConsole(data);
573 data = utils.fixCarriageReturn(data);
573 data = utils.fixCarriageReturn(data);
574 data = utils.autoLinkUrls(data);
574 data = utils.autoLinkUrls(data);
575 if (extra_class){
575 if (extra_class){
576 toinsert.addClass(extra_class);
576 toinsert.addClass(extra_class);
577 }
577 }
578 toinsert.append($("<pre/>").html(data));
578 toinsert.append($("<pre/>").html(data));
579 element.append(toinsert);
579 element.append(toinsert);
580 };
580 };
581
581
582
582
583 OutputArea.prototype.append_svg = function (svg, md, element) {
583 OutputArea.prototype.append_svg = function (svg, md, element) {
584 var type = 'image/svg+xml';
584 var type = 'image/svg+xml';
585 var toinsert = this.create_output_subarea(md, "output_svg", type);
585 var toinsert = this.create_output_subarea(md, "output_svg", type);
586 toinsert.append(svg);
586 toinsert.append(svg);
587 element.append(toinsert);
587 element.append(toinsert);
588 };
588 };
589
589
590
590
591 OutputArea.prototype._dblclick_to_reset_size = function (img) {
591 OutputArea.prototype._dblclick_to_reset_size = function (img) {
592 // schedule wrapping image in resizable after a delay,
592 // schedule wrapping image in resizable after a delay,
593 // so we don't end up calling resize on a zero-size object
593 // so we don't end up calling resize on a zero-size object
594 var that = this;
594 var that = this;
595 setTimeout(function () {
595 setTimeout(function () {
596 var h0 = img.height();
596 var h0 = img.height();
597 var w0 = img.width();
597 var w0 = img.width();
598 if (!(h0 && w0)) {
598 if (!(h0 && w0)) {
599 // zero size, schedule another timeout
599 // zero size, schedule another timeout
600 that._dblclick_to_reset_size(img);
600 that._dblclick_to_reset_size(img);
601 return;
601 return;
602 }
602 }
603 img.resizable({
603 img.resizable({
604 aspectRatio: true,
604 aspectRatio: true,
605 autoHide: true
605 autoHide: true
606 });
606 });
607 img.dblclick(function () {
607 img.dblclick(function () {
608 // resize wrapper & image together for some reason:
608 // resize wrapper & image together for some reason:
609 img.parent().height(h0);
609 img.parent().height(h0);
610 img.height(h0);
610 img.height(h0);
611 img.parent().width(w0);
611 img.parent().width(w0);
612 img.width(w0);
612 img.width(w0);
613 });
613 });
614 }, 250);
614 }, 250);
615 };
615 };
616
616
617
617 var set_width_height = function (img, md, mime) {
618 // set width and height of an img element from metadata
619 var height = _get_metadata_key(md, 'height', mime);
620 if (height !== undefined) img.attr('height', height);
621 var width = _get_metadata_key(md, 'width', mime);
622 if (width !== undefined) img.attr('width', width);
623 };
624
618 OutputArea.prototype.append_png = function (png, md, element) {
625 OutputArea.prototype.append_png = function (png, md, element) {
619 var type = 'image/png';
626 var type = 'image/png';
620 var toinsert = this.create_output_subarea(md, "output_png", type);
627 var toinsert = this.create_output_subarea(md, "output_png", type);
621 var img = $("<img/>");
628 var img = $("<img/>").attr('src','data:image/png;base64,'+png);
622 img[0].setAttribute('src','data:image/png;base64,'+png);
629 set_width_height(img, md, 'image/png');
623 if (md['height']) {
624 img[0].setAttribute('height', md['height']);
625 }
626 if (md['width']) {
627 img[0].setAttribute('width', md['width']);
628 }
629 this._dblclick_to_reset_size(img);
630 this._dblclick_to_reset_size(img);
630 toinsert.append(img);
631 toinsert.append(img);
631 element.append(toinsert);
632 element.append(toinsert);
632 };
633 };
633
634
634
635
635 OutputArea.prototype.append_jpeg = function (jpeg, md, element) {
636 OutputArea.prototype.append_jpeg = function (jpeg, md, element) {
636 var type = 'image/jpeg';
637 var type = 'image/jpeg';
637 var toinsert = this.create_output_subarea(md, "output_jpeg", type);
638 var toinsert = this.create_output_subarea(md, "output_jpeg", type);
638 var img = $("<img/>").attr('src','data:image/jpeg;base64,'+jpeg);
639 var img = $("<img/>").attr('src','data:image/jpeg;base64,'+jpeg);
639 if (md['height']) {
640 set_width_height(img, md, 'image/jpeg');
640 img.attr('height', md['height']);
641 }
642 if (md['width']) {
643 img.attr('width', md['width']);
644 }
645 this._dblclick_to_reset_size(img);
641 this._dblclick_to_reset_size(img);
646 toinsert.append(img);
642 toinsert.append(img);
647 element.append(toinsert);
643 element.append(toinsert);
648 };
644 };
649
645
650
646
651 OutputArea.prototype.append_latex = function (latex, md, element) {
647 OutputArea.prototype.append_latex = function (latex, md, element) {
652 // This method cannot do the typesetting because the latex first has to
648 // This method cannot do the typesetting because the latex first has to
653 // be on the page.
649 // be on the page.
654 var type = 'text/latex';
650 var type = 'text/latex';
655 var toinsert = this.create_output_subarea(md, "output_latex", type);
651 var toinsert = this.create_output_subarea(md, "output_latex", type);
656 toinsert.append(latex);
652 toinsert.append(latex);
657 element.append(toinsert);
653 element.append(toinsert);
658 };
654 };
659
655
660 OutputArea.append_map = {
656 OutputArea.append_map = {
661 "text/plain" : OutputArea.prototype.append_text,
657 "text/plain" : OutputArea.prototype.append_text,
662 "text/html" : OutputArea.prototype.append_html,
658 "text/html" : OutputArea.prototype.append_html,
663 "image/svg+xml" : OutputArea.prototype.append_svg,
659 "image/svg+xml" : OutputArea.prototype.append_svg,
664 "image/png" : OutputArea.prototype.append_png,
660 "image/png" : OutputArea.prototype.append_png,
665 "image/jpeg" : OutputArea.prototype.append_jpeg,
661 "image/jpeg" : OutputArea.prototype.append_jpeg,
666 "text/latex" : OutputArea.prototype.append_latex,
662 "text/latex" : OutputArea.prototype.append_latex,
667 "application/json" : OutputArea.prototype.append_json,
663 "application/json" : OutputArea.prototype.append_json,
668 "application/javascript" : OutputArea.prototype.append_javascript,
664 "application/javascript" : OutputArea.prototype.append_javascript,
669 };
665 };
670
666
671 OutputArea.prototype.append_raw_input = function (msg) {
667 OutputArea.prototype.append_raw_input = function (msg) {
672 var that = this;
668 var that = this;
673 this.expand();
669 this.expand();
674 var content = msg.content;
670 var content = msg.content;
675 var area = this.create_output_area();
671 var area = this.create_output_area();
676
672
677 // disable any other raw_inputs, if they are left around
673 // disable any other raw_inputs, if they are left around
678 $("div.output_subarea.raw_input").remove();
674 $("div.output_subarea.raw_input").remove();
679
675
680 area.append(
676 area.append(
681 $("<div/>")
677 $("<div/>")
682 .addClass("box-flex1 output_subarea raw_input")
678 .addClass("box-flex1 output_subarea raw_input")
683 .append(
679 .append(
684 $("<span/>")
680 $("<span/>")
685 .addClass("input_prompt")
681 .addClass("input_prompt")
686 .text(content.prompt)
682 .text(content.prompt)
687 )
683 )
688 .append(
684 .append(
689 $("<input/>")
685 $("<input/>")
690 .addClass("raw_input")
686 .addClass("raw_input")
691 .attr('type', 'text')
687 .attr('type', 'text')
692 .attr("size", 47)
688 .attr("size", 47)
693 .keydown(function (event, ui) {
689 .keydown(function (event, ui) {
694 // make sure we submit on enter,
690 // make sure we submit on enter,
695 // and don't re-execute the *cell* on shift-enter
691 // and don't re-execute the *cell* on shift-enter
696 if (event.which === utils.keycodes.ENTER) {
692 if (event.which === utils.keycodes.ENTER) {
697 that._submit_raw_input();
693 that._submit_raw_input();
698 return false;
694 return false;
699 }
695 }
700 })
696 })
701 )
697 )
702 );
698 );
703
699
704 this.element.append(area);
700 this.element.append(area);
705 var raw_input = area.find('input.raw_input');
701 var raw_input = area.find('input.raw_input');
706 // Register events that enable/disable the keyboard manager while raw
702 // Register events that enable/disable the keyboard manager while raw
707 // input is focused.
703 // input is focused.
708 IPython.keyboard_manager.register_events(raw_input);
704 IPython.keyboard_manager.register_events(raw_input);
709 // Note, the following line used to read raw_input.focus().focus().
705 // Note, the following line used to read raw_input.focus().focus().
710 // This seemed to be needed otherwise only the cell would be focused.
706 // This seemed to be needed otherwise only the cell would be focused.
711 // But with the modal UI, this seems to work fine with one call to focus().
707 // But with the modal UI, this seems to work fine with one call to focus().
712 raw_input.focus();
708 raw_input.focus();
713 }
709 }
714
710
715 OutputArea.prototype._submit_raw_input = function (evt) {
711 OutputArea.prototype._submit_raw_input = function (evt) {
716 var container = this.element.find("div.raw_input");
712 var container = this.element.find("div.raw_input");
717 var theprompt = container.find("span.input_prompt");
713 var theprompt = container.find("span.input_prompt");
718 var theinput = container.find("input.raw_input");
714 var theinput = container.find("input.raw_input");
719 var value = theinput.val();
715 var value = theinput.val();
720 var content = {
716 var content = {
721 output_type : 'stream',
717 output_type : 'stream',
722 name : 'stdout',
718 name : 'stdout',
723 text : theprompt.text() + value + '\n'
719 text : theprompt.text() + value + '\n'
724 }
720 }
725 // remove form container
721 // remove form container
726 container.parent().remove();
722 container.parent().remove();
727 // replace with plaintext version in stdout
723 // replace with plaintext version in stdout
728 this.append_output(content, false);
724 this.append_output(content, false);
729 $([IPython.events]).trigger('send_input_reply.Kernel', value);
725 $([IPython.events]).trigger('send_input_reply.Kernel', value);
730 }
726 }
731
727
732
728
733 OutputArea.prototype.handle_clear_output = function (msg) {
729 OutputArea.prototype.handle_clear_output = function (msg) {
734 this.clear_output(msg.content.wait);
730 this.clear_output(msg.content.wait);
735 };
731 };
736
732
737
733
738 OutputArea.prototype.clear_output = function(wait) {
734 OutputArea.prototype.clear_output = function(wait) {
739 if (wait) {
735 if (wait) {
740
736
741 // If a clear is queued, clear before adding another to the queue.
737 // If a clear is queued, clear before adding another to the queue.
742 if (this.clear_queued) {
738 if (this.clear_queued) {
743 this.clear_output(false);
739 this.clear_output(false);
744 };
740 };
745
741
746 this.clear_queued = true;
742 this.clear_queued = true;
747 } else {
743 } else {
748
744
749 // Fix the output div's height if the clear_output is waiting for
745 // Fix the output div's height if the clear_output is waiting for
750 // new output (it is being used in an animation).
746 // new output (it is being used in an animation).
751 if (this.clear_queued) {
747 if (this.clear_queued) {
752 var height = this.element.height();
748 var height = this.element.height();
753 this.element.height(height);
749 this.element.height(height);
754 this.clear_queued = false;
750 this.clear_queued = false;
755 }
751 }
756
752
757 // clear all, no need for logic
753 // clear all, no need for logic
758 this.element.html("");
754 this.element.html("");
759 this.outputs = [];
755 this.outputs = [];
760 this.unscroll_area();
756 this.unscroll_area();
761 return;
757 return;
762 };
758 };
763 };
759 };
764
760
765
761
766 // JSON serialization
762 // JSON serialization
767
763
768 OutputArea.prototype.fromJSON = function (outputs) {
764 OutputArea.prototype.fromJSON = function (outputs) {
769 var len = outputs.length;
765 var len = outputs.length;
770 var data;
766 var data;
771
767
772 // We don't want to display javascript on load, so remove it from the
768 // We don't want to display javascript on load, so remove it from the
773 // display order for the duration of this function call, but be sure to
769 // display order for the duration of this function call, but be sure to
774 // put it back in there so incoming messages that contain javascript
770 // put it back in there so incoming messages that contain javascript
775 // representations get displayed
771 // representations get displayed
776 var js_index = OutputArea.display_order.indexOf('application/javascript');
772 var js_index = OutputArea.display_order.indexOf('application/javascript');
777 OutputArea.display_order.splice(js_index, 1);
773 OutputArea.display_order.splice(js_index, 1);
778
774
779 for (var i=0; i<len; i++) {
775 for (var i=0; i<len; i++) {
780 data = outputs[i];
776 data = outputs[i];
781 var msg_type = data.output_type;
777 var msg_type = data.output_type;
782 if (msg_type === "display_data" || msg_type === "pyout") {
778 if (msg_type === "display_data" || msg_type === "pyout") {
783 // convert short keys to mime keys
779 // convert short keys to mime keys
784 // TODO: remove mapping of short keys when we update to nbformat 4
780 // TODO: remove mapping of short keys when we update to nbformat 4
785 data = this.rename_keys(data, OutputArea.mime_map_r);
781 data = this.rename_keys(data, OutputArea.mime_map_r);
786 data.metadata = this.rename_keys(data.metadata, OutputArea.mime_map_r);
782 data.metadata = this.rename_keys(data.metadata, OutputArea.mime_map_r);
787 }
783 }
788
784
789 this.append_output(data);
785 this.append_output(data);
790 }
786 }
791
787
792 // reinsert javascript into display order, see note above
788 // reinsert javascript into display order, see note above
793 OutputArea.display_order.splice(js_index, 0, 'application/javascript');
789 OutputArea.display_order.splice(js_index, 0, 'application/javascript');
794 };
790 };
795
791
796
792
797 OutputArea.prototype.toJSON = function () {
793 OutputArea.prototype.toJSON = function () {
798 var outputs = [];
794 var outputs = [];
799 var len = this.outputs.length;
795 var len = this.outputs.length;
800 var data;
796 var data;
801 for (var i=0; i<len; i++) {
797 for (var i=0; i<len; i++) {
802 data = this.outputs[i];
798 data = this.outputs[i];
803 var msg_type = data.output_type;
799 var msg_type = data.output_type;
804 if (msg_type === "display_data" || msg_type === "pyout") {
800 if (msg_type === "display_data" || msg_type === "pyout") {
805 // convert mime keys to short keys
801 // convert mime keys to short keys
806 data = this.rename_keys(data, OutputArea.mime_map);
802 data = this.rename_keys(data, OutputArea.mime_map);
807 data.metadata = this.rename_keys(data.metadata, OutputArea.mime_map);
803 data.metadata = this.rename_keys(data.metadata, OutputArea.mime_map);
808 }
804 }
809 outputs[i] = data;
805 outputs[i] = data;
810 }
806 }
811 return outputs;
807 return outputs;
812 };
808 };
813
809
814
810
815 IPython.OutputArea = OutputArea;
811 IPython.OutputArea = OutputArea;
816
812
817 return IPython;
813 return IPython;
818
814
819 }(IPython));
815 }(IPython));
General Comments 0
You need to be logged in to leave comments. Login now