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