|
|
- {
- "cells": [
- {
- "cell_type": "code",
- "execution_count": 3,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "Generating statistics: https://hoxhunt.com/\n"
- ]
- },
- {
- "data": {
- "application/javascript": [
- "/* Put everything inside the global mpl namespace */\n",
- "window.mpl = {};\n",
- "\n",
- "\n",
- "mpl.get_websocket_type = function() {\n",
- " if (typeof(WebSocket) !== 'undefined') {\n",
- " return WebSocket;\n",
- " } else if (typeof(MozWebSocket) !== 'undefined') {\n",
- " return MozWebSocket;\n",
- " } else {\n",
- " alert('Your browser does not have WebSocket support. ' +\n",
- " 'Please try Chrome, Safari or Firefox ≥ 6. ' +\n",
- " 'Firefox 4 and 5 are also supported but you ' +\n",
- " 'have to enable WebSockets in about:config.');\n",
- " };\n",
- "}\n",
- "\n",
- "mpl.figure = function(figure_id, websocket, ondownload, parent_element) {\n",
- " this.id = figure_id;\n",
- "\n",
- " this.ws = websocket;\n",
- "\n",
- " this.supports_binary = (this.ws.binaryType != undefined);\n",
- "\n",
- " if (!this.supports_binary) {\n",
- " var warnings = document.getElementById(\"mpl-warnings\");\n",
- " if (warnings) {\n",
- " warnings.style.display = 'block';\n",
- " warnings.textContent = (\n",
- " \"This browser does not support binary websocket messages. \" +\n",
- " \"Performance may be slow.\");\n",
- " }\n",
- " }\n",
- "\n",
- " this.imageObj = new Image();\n",
- "\n",
- " this.context = undefined;\n",
- " this.message = undefined;\n",
- " this.canvas = undefined;\n",
- " this.rubberband_canvas = undefined;\n",
- " this.rubberband_context = undefined;\n",
- " this.format_dropdown = undefined;\n",
- "\n",
- " this.image_mode = 'full';\n",
- "\n",
- " this.root = $('<div/>');\n",
- " this._root_extra_style(this.root)\n",
- " this.root.attr('style', 'display: inline-block');\n",
- "\n",
- " $(parent_element).append(this.root);\n",
- "\n",
- " this._init_header(this);\n",
- " this._init_canvas(this);\n",
- " this._init_toolbar(this);\n",
- "\n",
- " var fig = this;\n",
- "\n",
- " this.waiting = false;\n",
- "\n",
- " this.ws.onopen = function () {\n",
- " fig.send_message(\"supports_binary\", {value: fig.supports_binary});\n",
- " fig.send_message(\"send_image_mode\", {});\n",
- " if (mpl.ratio != 1) {\n",
- " fig.send_message(\"set_dpi_ratio\", {'dpi_ratio': mpl.ratio});\n",
- " }\n",
- " fig.send_message(\"refresh\", {});\n",
- " }\n",
- "\n",
- " this.imageObj.onload = function() {\n",
- " if (fig.image_mode == 'full') {\n",
- " // Full images could contain transparency (where diff images\n",
- " // almost always do), so we need to clear the canvas so that\n",
- " // there is no ghosting.\n",
- " fig.context.clearRect(0, 0, fig.canvas.width, fig.canvas.height);\n",
- " }\n",
- " fig.context.drawImage(fig.imageObj, 0, 0);\n",
- " };\n",
- "\n",
- " this.imageObj.onunload = function() {\n",
- " fig.ws.close();\n",
- " }\n",
- "\n",
- " this.ws.onmessage = this._make_on_message_function(this);\n",
- "\n",
- " this.ondownload = ondownload;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_header = function() {\n",
- " var titlebar = $(\n",
- " '<div class=\"ui-dialog-titlebar ui-widget-header ui-corner-all ' +\n",
- " 'ui-helper-clearfix\"/>');\n",
- " var titletext = $(\n",
- " '<div class=\"ui-dialog-title\" style=\"width: 100%; ' +\n",
- " 'text-align: center; padding: 3px;\"/>');\n",
- " titlebar.append(titletext)\n",
- " this.root.append(titlebar);\n",
- " this.header = titletext[0];\n",
- "}\n",
- "\n",
- "\n",
- "\n",
- "mpl.figure.prototype._canvas_extra_style = function(canvas_div) {\n",
- "\n",
- "}\n",
- "\n",
- "\n",
- "mpl.figure.prototype._root_extra_style = function(canvas_div) {\n",
- "\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_canvas = function() {\n",
- " var fig = this;\n",
- "\n",
- " var canvas_div = $('<div/>');\n",
- "\n",
- " canvas_div.attr('style', 'position: relative; clear: both; outline: 0');\n",
- "\n",
- " function canvas_keyboard_event(event) {\n",
- " return fig.key_event(event, event['data']);\n",
- " }\n",
- "\n",
- " canvas_div.keydown('key_press', canvas_keyboard_event);\n",
- " canvas_div.keyup('key_release', canvas_keyboard_event);\n",
- " this.canvas_div = canvas_div\n",
- " this._canvas_extra_style(canvas_div)\n",
- " this.root.append(canvas_div);\n",
- "\n",
- " var canvas = $('<canvas/>');\n",
- " canvas.addClass('mpl-canvas');\n",
- " canvas.attr('style', \"left: 0; top: 0; z-index: 0; outline: 0\")\n",
- "\n",
- " this.canvas = canvas[0];\n",
- " this.context = canvas[0].getContext(\"2d\");\n",
- "\n",
- " var backingStore = this.context.backingStorePixelRatio ||\n",
- "\tthis.context.webkitBackingStorePixelRatio ||\n",
- "\tthis.context.mozBackingStorePixelRatio ||\n",
- "\tthis.context.msBackingStorePixelRatio ||\n",
- "\tthis.context.oBackingStorePixelRatio ||\n",
- "\tthis.context.backingStorePixelRatio || 1;\n",
- "\n",
- " mpl.ratio = (window.devicePixelRatio || 1) / backingStore;\n",
- "\n",
- " var rubberband = $('<canvas/>');\n",
- " rubberband.attr('style', \"position: absolute; left: 0; top: 0; z-index: 1;\")\n",
- "\n",
- " var pass_mouse_events = true;\n",
- "\n",
- " canvas_div.resizable({\n",
- " start: function(event, ui) {\n",
- " pass_mouse_events = false;\n",
- " },\n",
- " resize: function(event, ui) {\n",
- " fig.request_resize(ui.size.width, ui.size.height);\n",
- " },\n",
- " stop: function(event, ui) {\n",
- " pass_mouse_events = true;\n",
- " fig.request_resize(ui.size.width, ui.size.height);\n",
- " },\n",
- " });\n",
- "\n",
- " function mouse_event_fn(event) {\n",
- " if (pass_mouse_events)\n",
- " return fig.mouse_event(event, event['data']);\n",
- " }\n",
- "\n",
- " rubberband.mousedown('button_press', mouse_event_fn);\n",
- " rubberband.mouseup('button_release', mouse_event_fn);\n",
- " // Throttle sequential mouse events to 1 every 20ms.\n",
- " rubberband.mousemove('motion_notify', mouse_event_fn);\n",
- "\n",
- " rubberband.mouseenter('figure_enter', mouse_event_fn);\n",
- " rubberband.mouseleave('figure_leave', mouse_event_fn);\n",
- "\n",
- " canvas_div.on(\"wheel\", function (event) {\n",
- " event = event.originalEvent;\n",
- " event['data'] = 'scroll'\n",
- " if (event.deltaY < 0) {\n",
- " event.step = 1;\n",
- " } else {\n",
- " event.step = -1;\n",
- " }\n",
- " mouse_event_fn(event);\n",
- " });\n",
- "\n",
- " canvas_div.append(canvas);\n",
- " canvas_div.append(rubberband);\n",
- "\n",
- " this.rubberband = rubberband;\n",
- " this.rubberband_canvas = rubberband[0];\n",
- " this.rubberband_context = rubberband[0].getContext(\"2d\");\n",
- " this.rubberband_context.strokeStyle = \"#000000\";\n",
- "\n",
- " this._resize_canvas = function(width, height) {\n",
- " // Keep the size of the canvas, canvas container, and rubber band\n",
- " // canvas in synch.\n",
- " canvas_div.css('width', width)\n",
- " canvas_div.css('height', height)\n",
- "\n",
- " canvas.attr('width', width * mpl.ratio);\n",
- " canvas.attr('height', height * mpl.ratio);\n",
- " canvas.attr('style', 'width: ' + width + 'px; height: ' + height + 'px;');\n",
- "\n",
- " rubberband.attr('width', width);\n",
- " rubberband.attr('height', height);\n",
- " }\n",
- "\n",
- " // Set the figure to an initial 600x600px, this will subsequently be updated\n",
- " // upon first draw.\n",
- " this._resize_canvas(600, 600);\n",
- "\n",
- " // Disable right mouse context menu.\n",
- " $(this.rubberband_canvas).bind(\"contextmenu\",function(e){\n",
- " return false;\n",
- " });\n",
- "\n",
- " function set_focus () {\n",
- " canvas.focus();\n",
- " canvas_div.focus();\n",
- " }\n",
- "\n",
- " window.setTimeout(set_focus, 100);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_toolbar = function() {\n",
- " var fig = this;\n",
- "\n",
- " var nav_element = $('<div/>');\n",
- " nav_element.attr('style', 'width: 100%');\n",
- " this.root.append(nav_element);\n",
- "\n",
- " // Define a callback function for later on.\n",
- " function toolbar_event(event) {\n",
- " return fig.toolbar_button_onclick(event['data']);\n",
- " }\n",
- " function toolbar_mouse_event(event) {\n",
- " return fig.toolbar_button_onmouseover(event['data']);\n",
- " }\n",
- "\n",
- " for(var toolbar_ind in mpl.toolbar_items) {\n",
- " var name = mpl.toolbar_items[toolbar_ind][0];\n",
- " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n",
- " var image = mpl.toolbar_items[toolbar_ind][2];\n",
- " var method_name = mpl.toolbar_items[toolbar_ind][3];\n",
- "\n",
- " if (!name) {\n",
- " // put a spacer in here.\n",
- " continue;\n",
- " }\n",
- " var button = $('<button/>');\n",
- " button.addClass('ui-button ui-widget ui-state-default ui-corner-all ' +\n",
- " 'ui-button-icon-only');\n",
- " button.attr('role', 'button');\n",
- " button.attr('aria-disabled', 'false');\n",
- " button.click(method_name, toolbar_event);\n",
- " button.mouseover(tooltip, toolbar_mouse_event);\n",
- "\n",
- " var icon_img = $('<span/>');\n",
- " icon_img.addClass('ui-button-icon-primary ui-icon');\n",
- " icon_img.addClass(image);\n",
- " icon_img.addClass('ui-corner-all');\n",
- "\n",
- " var tooltip_span = $('<span/>');\n",
- " tooltip_span.addClass('ui-button-text');\n",
- " tooltip_span.html(tooltip);\n",
- "\n",
- " button.append(icon_img);\n",
- " button.append(tooltip_span);\n",
- "\n",
- " nav_element.append(button);\n",
- " }\n",
- "\n",
- " var fmt_picker_span = $('<span/>');\n",
- "\n",
- " var fmt_picker = $('<select/>');\n",
- " fmt_picker.addClass('mpl-toolbar-option ui-widget ui-widget-content');\n",
- " fmt_picker_span.append(fmt_picker);\n",
- " nav_element.append(fmt_picker_span);\n",
- " this.format_dropdown = fmt_picker[0];\n",
- "\n",
- " for (var ind in mpl.extensions) {\n",
- " var fmt = mpl.extensions[ind];\n",
- " var option = $(\n",
- " '<option/>', {selected: fmt === mpl.default_extension}).html(fmt);\n",
- " fmt_picker.append(option);\n",
- " }\n",
- "\n",
- " // Add hover states to the ui-buttons\n",
- " $( \".ui-button\" ).hover(\n",
- " function() { $(this).addClass(\"ui-state-hover\");},\n",
- " function() { $(this).removeClass(\"ui-state-hover\");}\n",
- " );\n",
- "\n",
- " var status_bar = $('<span class=\"mpl-message\"/>');\n",
- " nav_element.append(status_bar);\n",
- " this.message = status_bar[0];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.request_resize = function(x_pixels, y_pixels) {\n",
- " // Request matplotlib to resize the figure. Matplotlib will then trigger a resize in the client,\n",
- " // which will in turn request a refresh of the image.\n",
- " this.send_message('resize', {'width': x_pixels, 'height': y_pixels});\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.send_message = function(type, properties) {\n",
- " properties['type'] = type;\n",
- " properties['figure_id'] = this.id;\n",
- " this.ws.send(JSON.stringify(properties));\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.send_draw_message = function() {\n",
- " if (!this.waiting) {\n",
- " this.waiting = true;\n",
- " this.ws.send(JSON.stringify({type: \"draw\", figure_id: this.id}));\n",
- " }\n",
- "}\n",
- "\n",
- "\n",
- "mpl.figure.prototype.handle_save = function(fig, msg) {\n",
- " var format_dropdown = fig.format_dropdown;\n",
- " var format = format_dropdown.options[format_dropdown.selectedIndex].value;\n",
- " fig.ondownload(fig, format);\n",
- "}\n",
- "\n",
- "\n",
- "mpl.figure.prototype.handle_resize = function(fig, msg) {\n",
- " var size = msg['size'];\n",
- " if (size[0] != fig.canvas.width || size[1] != fig.canvas.height) {\n",
- " fig._resize_canvas(size[0], size[1]);\n",
- " fig.send_message(\"refresh\", {});\n",
- " };\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_rubberband = function(fig, msg) {\n",
- " var x0 = msg['x0'] / mpl.ratio;\n",
- " var y0 = (fig.canvas.height - msg['y0']) / mpl.ratio;\n",
- " var x1 = msg['x1'] / mpl.ratio;\n",
- " var y1 = (fig.canvas.height - msg['y1']) / mpl.ratio;\n",
- " x0 = Math.floor(x0) + 0.5;\n",
- " y0 = Math.floor(y0) + 0.5;\n",
- " x1 = Math.floor(x1) + 0.5;\n",
- " y1 = Math.floor(y1) + 0.5;\n",
- " var min_x = Math.min(x0, x1);\n",
- " var min_y = Math.min(y0, y1);\n",
- " var width = Math.abs(x1 - x0);\n",
- " var height = Math.abs(y1 - y0);\n",
- "\n",
- " fig.rubberband_context.clearRect(\n",
- " 0, 0, fig.canvas.width / mpl.ratio, fig.canvas.height / mpl.ratio);\n",
- "\n",
- " fig.rubberband_context.strokeRect(min_x, min_y, width, height);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_figure_label = function(fig, msg) {\n",
- " // Updates the figure title.\n",
- " fig.header.textContent = msg['label'];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_cursor = function(fig, msg) {\n",
- " var cursor = msg['cursor'];\n",
- " switch(cursor)\n",
- " {\n",
- " case 0:\n",
- " cursor = 'pointer';\n",
- " break;\n",
- " case 1:\n",
- " cursor = 'default';\n",
- " break;\n",
- " case 2:\n",
- " cursor = 'crosshair';\n",
- " break;\n",
- " case 3:\n",
- " cursor = 'move';\n",
- " break;\n",
- " }\n",
- " fig.rubberband_canvas.style.cursor = cursor;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_message = function(fig, msg) {\n",
- " fig.message.textContent = msg['message'];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_draw = function(fig, msg) {\n",
- " // Request the server to send over a new figure.\n",
- " fig.send_draw_message();\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_image_mode = function(fig, msg) {\n",
- " fig.image_mode = msg['mode'];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.updated_canvas_event = function() {\n",
- " // Called whenever the canvas gets updated.\n",
- " this.send_message(\"ack\", {});\n",
- "}\n",
- "\n",
- "// A function to construct a web socket function for onmessage handling.\n",
- "// Called in the figure constructor.\n",
- "mpl.figure.prototype._make_on_message_function = function(fig) {\n",
- " return function socket_on_message(evt) {\n",
- " if (evt.data instanceof Blob) {\n",
- " /* FIXME: We get \"Resource interpreted as Image but\n",
- " * transferred with MIME type text/plain:\" errors on\n",
- " * Chrome. But how to set the MIME type? It doesn't seem\n",
- " * to be part of the websocket stream */\n",
- " evt.data.type = \"image/png\";\n",
- "\n",
- " /* Free the memory for the previous frames */\n",
- " if (fig.imageObj.src) {\n",
- " (window.URL || window.webkitURL).revokeObjectURL(\n",
- " fig.imageObj.src);\n",
- " }\n",
- "\n",
- " fig.imageObj.src = (window.URL || window.webkitURL).createObjectURL(\n",
- " evt.data);\n",
- " fig.updated_canvas_event();\n",
- " fig.waiting = false;\n",
- " return;\n",
- " }\n",
- " else if (typeof evt.data === 'string' && evt.data.slice(0, 21) == \"data:image/png;base64\") {\n",
- " fig.imageObj.src = evt.data;\n",
- " fig.updated_canvas_event();\n",
- " fig.waiting = false;\n",
- " return;\n",
- " }\n",
- "\n",
- " var msg = JSON.parse(evt.data);\n",
- " var msg_type = msg['type'];\n",
- "\n",
- " // Call the \"handle_{type}\" callback, which takes\n",
- " // the figure and JSON message as its only arguments.\n",
- " try {\n",
- " var callback = fig[\"handle_\" + msg_type];\n",
- " } catch (e) {\n",
- " console.log(\"No handler for the '\" + msg_type + \"' message type: \", msg);\n",
- " return;\n",
- " }\n",
- "\n",
- " if (callback) {\n",
- " try {\n",
- " // console.log(\"Handling '\" + msg_type + \"' message: \", msg);\n",
- " callback(fig, msg);\n",
- " } catch (e) {\n",
- " console.log(\"Exception inside the 'handler_\" + msg_type + \"' callback:\", e, e.stack, msg);\n",
- " }\n",
- " }\n",
- " };\n",
- "}\n",
- "\n",
- "// from http://stackoverflow.com/questions/1114465/getting-mouse-location-in-canvas\n",
- "mpl.findpos = function(e) {\n",
- " //this section is from http://www.quirksmode.org/js/events_properties.html\n",
- " var targ;\n",
- " if (!e)\n",
- " e = window.event;\n",
- " if (e.target)\n",
- " targ = e.target;\n",
- " else if (e.srcElement)\n",
- " targ = e.srcElement;\n",
- " if (targ.nodeType == 3) // defeat Safari bug\n",
- " targ = targ.parentNode;\n",
- "\n",
- " // jQuery normalizes the pageX and pageY\n",
- " // pageX,Y are the mouse positions relative to the document\n",
- " // offset() returns the position of the element relative to the document\n",
- " var x = e.pageX - $(targ).offset().left;\n",
- " var y = e.pageY - $(targ).offset().top;\n",
- "\n",
- " return {\"x\": x, \"y\": y};\n",
- "};\n",
- "\n",
- "/*\n",
- " * return a copy of an object with only non-object keys\n",
- " * we need this to avoid circular references\n",
- " * http://stackoverflow.com/a/24161582/3208463\n",
- " */\n",
- "function simpleKeys (original) {\n",
- " return Object.keys(original).reduce(function (obj, key) {\n",
- " if (typeof original[key] !== 'object')\n",
- " obj[key] = original[key]\n",
- " return obj;\n",
- " }, {});\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.mouse_event = function(event, name) {\n",
- " var canvas_pos = mpl.findpos(event)\n",
- "\n",
- " if (name === 'button_press')\n",
- " {\n",
- " this.canvas.focus();\n",
- " this.canvas_div.focus();\n",
- " }\n",
- "\n",
- " var x = canvas_pos.x * mpl.ratio;\n",
- " var y = canvas_pos.y * mpl.ratio;\n",
- "\n",
- " this.send_message(name, {x: x, y: y, button: event.button,\n",
- " step: event.step,\n",
- " guiEvent: simpleKeys(event)});\n",
- "\n",
- " /* This prevents the web browser from automatically changing to\n",
- " * the text insertion cursor when the button is pressed. We want\n",
- " * to control all of the cursor setting manually through the\n",
- " * 'cursor' event from matplotlib */\n",
- " event.preventDefault();\n",
- " return false;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._key_event_extra = function(event, name) {\n",
- " // Handle any extra behaviour associated with a key event\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.key_event = function(event, name) {\n",
- "\n",
- " // Prevent repeat events\n",
- " if (name == 'key_press')\n",
- " {\n",
- " if (event.which === this._key)\n",
- " return;\n",
- " else\n",
- " this._key = event.which;\n",
- " }\n",
- " if (name == 'key_release')\n",
- " this._key = null;\n",
- "\n",
- " var value = '';\n",
- " if (event.ctrlKey && event.which != 17)\n",
- " value += \"ctrl+\";\n",
- " if (event.altKey && event.which != 18)\n",
- " value += \"alt+\";\n",
- " if (event.shiftKey && event.which != 16)\n",
- " value += \"shift+\";\n",
- "\n",
- " value += 'k';\n",
- " value += event.which.toString();\n",
- "\n",
- " this._key_event_extra(event, name);\n",
- "\n",
- " this.send_message(name, {key: value,\n",
- " guiEvent: simpleKeys(event)});\n",
- " return false;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.toolbar_button_onclick = function(name) {\n",
- " if (name == 'download') {\n",
- " this.handle_save(this, null);\n",
- " } else {\n",
- " this.send_message(\"toolbar_button\", {name: name});\n",
- " }\n",
- "};\n",
- "\n",
- "mpl.figure.prototype.toolbar_button_onmouseover = function(tooltip) {\n",
- " this.message.textContent = tooltip;\n",
- "};\n",
- "mpl.toolbar_items = [[\"Home\", \"Reset original view\", \"fa fa-home icon-home\", \"home\"], [\"Back\", \"Back to previous view\", \"fa fa-arrow-left icon-arrow-left\", \"back\"], [\"Forward\", \"Forward to next view\", \"fa fa-arrow-right icon-arrow-right\", \"forward\"], [\"\", \"\", \"\", \"\"], [\"Pan\", \"Pan axes with left mouse, zoom with right\", \"fa fa-arrows icon-move\", \"pan\"], [\"Zoom\", \"Zoom to rectangle\", \"fa fa-square-o icon-check-empty\", \"zoom\"], [\"\", \"\", \"\", \"\"], [\"Download\", \"Download plot\", \"fa fa-floppy-o icon-save\", \"download\"]];\n",
- "\n",
- "mpl.extensions = [\"eps\", \"pdf\", \"png\", \"ps\", \"raw\", \"svg\"];\n",
- "\n",
- "mpl.default_extension = \"png\";var comm_websocket_adapter = function(comm) {\n",
- " // Create a \"websocket\"-like object which calls the given IPython comm\n",
- " // object with the appropriate methods. Currently this is a non binary\n",
- " // socket, so there is still some room for performance tuning.\n",
- " var ws = {};\n",
- "\n",
- " ws.close = function() {\n",
- " comm.close()\n",
- " };\n",
- " ws.send = function(m) {\n",
- " //console.log('sending', m);\n",
- " comm.send(m);\n",
- " };\n",
- " // Register the callback with on_msg.\n",
- " comm.on_msg(function(msg) {\n",
- " //console.log('receiving', msg['content']['data'], msg);\n",
- " // Pass the mpl event to the overridden (by mpl) onmessage function.\n",
- " ws.onmessage(msg['content']['data'])\n",
- " });\n",
- " return ws;\n",
- "}\n",
- "\n",
- "mpl.mpl_figure_comm = function(comm, msg) {\n",
- " // This is the function which gets called when the mpl process\n",
- " // starts-up an IPython Comm through the \"matplotlib\" channel.\n",
- "\n",
- " var id = msg.content.data.id;\n",
- " // Get hold of the div created by the display call when the Comm\n",
- " // socket was opened in Python.\n",
- " var element = $(\"#\" + id);\n",
- " var ws_proxy = comm_websocket_adapter(comm)\n",
- "\n",
- " function ondownload(figure, format) {\n",
- " window.open(figure.imageObj.src);\n",
- " }\n",
- "\n",
- " var fig = new mpl.figure(id, ws_proxy,\n",
- " ondownload,\n",
- " element.get(0));\n",
- "\n",
- " // Call onopen now - mpl needs it, as it is assuming we've passed it a real\n",
- " // web socket which is closed, not our websocket->open comm proxy.\n",
- " ws_proxy.onopen();\n",
- "\n",
- " fig.parent_element = element.get(0);\n",
- " fig.cell_info = mpl.find_output_cell(\"<div id='\" + id + \"'></div>\");\n",
- " if (!fig.cell_info) {\n",
- " console.error(\"Failed to find cell for figure\", id, fig);\n",
- " return;\n",
- " }\n",
- "\n",
- " var output_index = fig.cell_info[2]\n",
- " var cell = fig.cell_info[0];\n",
- "\n",
- "};\n",
- "\n",
- "mpl.figure.prototype.handle_close = function(fig, msg) {\n",
- " var width = fig.canvas.width/mpl.ratio\n",
- " fig.root.unbind('remove')\n",
- "\n",
- " // Update the output cell to use the data from the current canvas.\n",
- " fig.push_to_output();\n",
- " var dataURL = fig.canvas.toDataURL();\n",
- " // Re-enable the keyboard manager in IPython - without this line, in FF,\n",
- " // the notebook keyboard shortcuts fail.\n",
- " IPython.keyboard_manager.enable()\n",
- " $(fig.parent_element).html('<img src=\"' + dataURL + '\" width=\"' + width + '\">');\n",
- " fig.close_ws(fig, msg);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.close_ws = function(fig, msg){\n",
- " fig.send_message('closing', msg);\n",
- " // fig.ws.close()\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.push_to_output = function(remove_interactive) {\n",
- " // Turn the data on the canvas into data in the output cell.\n",
- " var width = this.canvas.width/mpl.ratio\n",
- " var dataURL = this.canvas.toDataURL();\n",
- " this.cell_info[1]['text/html'] = '<img src=\"' + dataURL + '\" width=\"' + width + '\">';\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.updated_canvas_event = function() {\n",
- " // Tell IPython that the notebook contents must change.\n",
- " IPython.notebook.set_dirty(true);\n",
- " this.send_message(\"ack\", {});\n",
- " var fig = this;\n",
- " // Wait a second, then push the new image to the DOM so\n",
- " // that it is saved nicely (might be nice to debounce this).\n",
- " setTimeout(function () { fig.push_to_output() }, 1000);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_toolbar = function() {\n",
- " var fig = this;\n",
- "\n",
- " var nav_element = $('<div/>');\n",
- " nav_element.attr('style', 'width: 100%');\n",
- " this.root.append(nav_element);\n",
- "\n",
- " // Define a callback function for later on.\n",
- " function toolbar_event(event) {\n",
- " return fig.toolbar_button_onclick(event['data']);\n",
- " }\n",
- " function toolbar_mouse_event(event) {\n",
- " return fig.toolbar_button_onmouseover(event['data']);\n",
- " }\n",
- "\n",
- " for(var toolbar_ind in mpl.toolbar_items){\n",
- " var name = mpl.toolbar_items[toolbar_ind][0];\n",
- " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n",
- " var image = mpl.toolbar_items[toolbar_ind][2];\n",
- " var method_name = mpl.toolbar_items[toolbar_ind][3];\n",
- "\n",
- " if (!name) { continue; };\n",
- "\n",
- " var button = $('<button class=\"btn btn-default\" href=\"#\" title=\"' + name + '\"><i class=\"fa ' + image + ' fa-lg\"></i></button>');\n",
- " button.click(method_name, toolbar_event);\n",
- " button.mouseover(tooltip, toolbar_mouse_event);\n",
- " nav_element.append(button);\n",
- " }\n",
- "\n",
- " // Add the status bar.\n",
- " var status_bar = $('<span class=\"mpl-message\" style=\"text-align:right; float: right;\"/>');\n",
- " nav_element.append(status_bar);\n",
- " this.message = status_bar[0];\n",
- "\n",
- " // Add the close button to the window.\n",
- " var buttongrp = $('<div class=\"btn-group inline pull-right\"></div>');\n",
- " var button = $('<button class=\"btn btn-mini btn-primary\" href=\"#\" title=\"Stop Interaction\"><i class=\"fa fa-power-off icon-remove icon-large\"></i></button>');\n",
- " button.click(function (evt) { fig.handle_close(fig, {}); } );\n",
- " button.mouseover('Stop Interaction', toolbar_mouse_event);\n",
- " buttongrp.append(button);\n",
- " var titlebar = this.root.find($('.ui-dialog-titlebar'));\n",
- " titlebar.prepend(buttongrp);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._root_extra_style = function(el){\n",
- " var fig = this\n",
- " el.on(\"remove\", function(){\n",
- "\tfig.close_ws(fig, {});\n",
- " });\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._canvas_extra_style = function(el){\n",
- " // this is important to make the div 'focusable\n",
- " el.attr('tabindex', 0)\n",
- " // reach out to IPython and tell the keyboard manager to turn it's self\n",
- " // off when our div gets focus\n",
- "\n",
- " // location in version 3\n",
- " if (IPython.notebook.keyboard_manager) {\n",
- " IPython.notebook.keyboard_manager.register_events(el);\n",
- " }\n",
- " else {\n",
- " // location in version 2\n",
- " IPython.keyboard_manager.register_events(el);\n",
- " }\n",
- "\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._key_event_extra = function(event, name) {\n",
- " var manager = IPython.notebook.keyboard_manager;\n",
- " if (!manager)\n",
- " manager = IPython.keyboard_manager;\n",
- "\n",
- " // Check for shift+enter\n",
- " if (event.shiftKey && event.which == 13) {\n",
- " this.canvas_div.blur();\n",
- " // select the cell after this one\n",
- " var index = IPython.notebook.find_cell_index(this.cell_info[0]);\n",
- " IPython.notebook.select(index + 1);\n",
- " }\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_save = function(fig, msg) {\n",
- " fig.ondownload(fig, null);\n",
- "}\n",
- "\n",
- "\n",
- "mpl.find_output_cell = function(html_output) {\n",
- " // Return the cell and output element which can be found *uniquely* in the notebook.\n",
- " // Note - this is a bit hacky, but it is done because the \"notebook_saving.Notebook\"\n",
- " // IPython event is triggered only after the cells have been serialised, which for\n",
- " // our purposes (turning an active figure into a static one), is too late.\n",
- " var cells = IPython.notebook.get_cells();\n",
- " var ncells = cells.length;\n",
- " for (var i=0; i<ncells; i++) {\n",
- " var cell = cells[i];\n",
- " if (cell.cell_type === 'code'){\n",
- " for (var j=0; j<cell.output_area.outputs.length; j++) {\n",
- " var data = cell.output_area.outputs[j];\n",
- " if (data.data) {\n",
- " // IPython >= 3 moved mimebundle to data attribute of output\n",
- " data = data.data;\n",
- " }\n",
- " if (data['text/html'] == html_output) {\n",
- " return [cell, data, j];\n",
- " }\n",
- " }\n",
- " }\n",
- " }\n",
- "}\n",
- "\n",
- "// Register the function which deals with the matplotlib target/channel.\n",
- "// The kernel may be null if the page has been refreshed.\n",
- "if (IPython.notebook.kernel != null) {\n",
- " IPython.notebook.kernel.comm_manager.register_target('matplotlib', mpl.mpl_figure_comm);\n",
- "}\n"
- ],
- "text/plain": [
- "<IPython.core.display.Javascript object>"
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- },
- {
- "data": {
- "text/html": [
- "<img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA4QAAAMgCAYAAAB7w6zDAAAgAElEQVR4nOzdeXSU5d3G8SeBbCQRghJAokE5KFoUUFRUKAgibriVKtbygsqrglakVsprq8BBaKlbpa1YUcGtrixiQQoWwQ2VihYVEC0aU0Vxgwqy53r/0JkyTBLyBLjD/bu/n3N+5+hkMnnCM/dc95WZTCIBAAAAAIIU1fUBAAAAAADqBoUQAAAAAAJFIQQAAACAQFEIAQAAACBQFEIAAAAACBSFEAAAAAACRSEEAAAAgEBRCAEAAAAgUBRCAAAAAAgUhRAAAAAAAkUhBAAAAIBAUQgBAAAAIFAUQgAAAAAIFIUQAAAAAAJFIQQAAACAQFEIAQAAACBQFEIAAAAACBSFEAAAAAACRSEEAAAAgEBRCAF4oWfPnjriiCPUrl07de7cWW+88UZdHxIAALVCpmFvQiEE4IWvv/46+d/Tpk1Thw4d6vBoAACoPTINexMKIQDvTJ48WUcffXRdHwYAALuMTENdoxAC8Ea/fv1UUlKikpISvf3223V9OAAA1BqZhr0FhRCAdyZPnqzTTjutrg8DAIBdRqahrlEIAXgpNzdXX3zxRV0fBgAAu4xMQ12iEALY661du1Yff/xx8v+nTp2qFi1aqKKiog6PCgCA+Mg07G0ohAD2eh999JGOOeYYtW3bVkceeaR69OjBW3QDALxEpmFvQyEEAAAAgEBRCAEAAAAgUBRCAAAAAAgUhRAAAAAAAkUhBAAAAIBAUQgBAAAAIFAUQgAAAAAIFIUQAAAAAAJFIQQAAACAQFEIAQAAACBQFEIAAAAACBSFEAAAAAACRSEEAAAAgEBRCAEAAAAgUBRCAAAAAAgUhRAAAAAAAkUhBAAAAIBAUQgBAAAAIFAUQgAAAAAIFIUQAAAAAAJFIQQAAACAQFEIAQAAACBQFEIAAAAACBSFEAAAAAACRSEEAAAAgEBRCAEAAAAgUBRCAAAAAAgUhRAAAAAAAkUhBAAAAIBAUQgBAAAAIFAUQgAAAAAIFIUQAAAAAAJFIQQAAACAQFEIAQAAACBQFEIAAAAACBSFEAAAAAACRSEEAAAAgEBRCAEAAAAgUBRCAAAAAAgUhRAAAAAAAkUhBAAAAIBAUQgBAAAAIFAUQgAAAAAIFIUQAAAAAAJFIQQAAACAQFEIAQAAACBQFEIAAAAACBSFEAAAAAACRSEEvjdp0iRFUZScnJwcNW3aVN26ddPYsWP12Wef1fUh1khpaan69+9f14fhjf79+6u0tLRWn/vwww/r9ttv370H9L09eR4T9/UPPvggeVlV38sHH3ygKIp088031+prPffcc4qiSE888USlH7/yyisVRVHKce1sEudrxIgRiqJIGRkZ+te//pV22+vWrVNhYaGiKEr5t9yV76lr1676wQ9+UOnHPv/8c0VRpBEjRiQv2/F7qlevnpo1a6YLLrhAK1asiHX7tVHZua6pmTNnpnwvu9uoUaN02GGHadu2bZLinZfqjm3MmDGaNm3a7jzUWjn33HN11llnpVz25Zdfqn79+po6daokKYoiXXnllc6PLbF2Pv/8c+dfW9p7ztGu2P5cbt68WQcffPAeywNgT6MQAt9LbJwmTZqkhQsX6vnnn9eTTz6pa665Rg0bNlTjxo01d+7cuj7MnVq8eLHef//9uj4Mb7z//vtavHhxrT73jDPOqHWZ3Jk9WQhXr16thQsXauPGjcnLqvpeXBbCxHFtP1EUqU+fPimXJc5XYlNbWFioX//612m3PWnSJOXm5iorK6vOC2HiceW5557TTTfdpLy8PBUXF+urr76q8e3Xxq4Uwu3Pze728ccfKz8/P+V+Eee8VHds+fn5df5DsXXr1ikvL0/3339/yuX33XefGjRooG+//VZSuIVwbzhHu2rHczl58mQVFRXpiy++qOMjA+KjEALfS2ycFi1alPaxsrIyHXDAASosLNSnn35aB0eHvZGvhbAye0MhrEx1G+bEpnbgwIE64IADks80JXTu3FkXXnhh2uazLgrhjo8ro0aNUhRFuu+++2p8+7WxtxbCYcOGqUWLFinnzFIhfPzxx5WVlZVW+E8//XT16dMn+f8UQn/teC43bdqkxo0ba8yYMXV4VEDtUAiB71VXCKXvAj6KIo0aNSrl8qeeekqdOnVSXl6eCgoKdPLJJ+vll19OuU4ifP/5z3+qT58+2meffVRUVKShQ4dqy5YtWr58uXr16qWCggKVlpZq3LhxKZ+/YcMG/fznP1e7du2Sn9upUydNnz497Th3LBKJDflf/vIXXX/99WrevLkKCwvVo0cPLV++POVzFy9erDPOOENNmjRRdna2mjdvrtNPP13l5eXV/tvNmTNHZ511llq0aKGcnBy1atVKl112WdpmY/Xq1frf//1flZSUKDs7W/vtt59OOOGElGdea3IMGzZs0PDhw9WyZUtlZWVp//331+DBg/X111+nHdvDDz+sTp06KT8/X/n5+WrXrp3uueee5Mcre8noH//4R3Xp0kVNmjRRgwYN1LZtW40bN06bN29OXqdr166VvpwxYdOmTRo9erQOPfTQ5Pc6YMAArV69OuVrbd68Wdddd52aNm2qvLw8nXjiiXr11VdrVAg7duyo008/PeWytm3bKooivfbaa8nLpkyZoiiKtGTJEknpJaG672X7Tfqtt96qli1bKj8/X506ddLChQurPT7JTSF8+eWXFUWRZs+enfzYu+++qyiKNHfu3L2yEM6cOVNRFOk3v/lNjW9/ZxYuXKgTTjhBOTk5at68uYYPH6677747rRA++uij6tmzp5o1a6bc3Fy1adNGv/zlL7Vu3brkdfr371/pfSJxOzVZI1XZtGmT9t13X1133XUpl9f0vlbdsVV2edeuXSX991zMmTNHAwYMUFFRkRo0aKAzzzwz7SXHtX0sTLjgggvUq1evlMvWrl2r7OxsPfLII8nLEvfvBx54QG3atFFeXp6OPPJIPf3002m3+cILL6h79+4qKChQXl6ejj/+eP31r39NfryiokKnnXaaGjdurLKysuTl69ev1+GHH642bdokz3Fi7bz99tvq27ev9tlnHxUXF+viiy/WmjVr0s7JpEmT0o5nx/t6TW+zunNUlY0bN2rUqFFq06aNcnJy1LhxY3Xr1k0vvfRS8jo1zYXS0lKdccYZevrpp9W+ffvkGkj8m0+aNElt2rRRgwYNdMwxx1S6J6jsXErSoEGDVFpaqoqKimq/H2BvQyEEvrezQrhu3TrVq1dPPXr0SF728MMPK4oinXLKKZo+fboee+wxHX300crOztYLL7yQvF4iKA899FCNHj1ac+fO1bBhwxRFka666iq1adNG48eP19y5c3XxxRcriiJNmTIl+flr1qzRgAED9OCDD2revHmaPXu2fvGLXygzMzPtJUlVFcKWLVvqoosu0syZM/XII4/owAMPVOvWrbV169bk97fvvvuqY8eOevzxx7VgwQI99thjuuKKK7R06dJq/+0mTJig3/zmN5oxY4YWLFig+++/X+3atdOhhx6askHs1auXmjRporvvvlvz58/X9OnTdeONN+rRRx+t8TFUVFSoV69eql+/vm644QbNmTNHt9xyi/Lz89WhQ4eUl0HecMMNiqJI5513np544gnNmTNHt912m2644YbkdSorhEOHDtWECRM0e/ZszZs3T7fffrv2228/XXzxxcnrvPPOOzrxxBPVrFmzlJczStK2bdt06qmnKj8/X6NGjdLcuXN1zz33qEWLFjr88MOTLzFKfP2MjAxdd911yeNr0aKF9tlnn50WwuHDh6ugoCD5b/zpp58qiiLl5eWl/JR60KBBatq0afL/dyyE1X0viQ1hy5Ytdeqpp2r69OmaPn26jjjiCBUVFaVs9CqTuP899thj2rJlS9oMHjx4lwvh559/ri5duuj8889PfuyXv/ylWrZsqYqKir2yEP7xj39MW+c7u/3qvPPOO2rQoIEOP/xwPfLII3rqqafUq1cvHXjggWmFcPTo0br99ts1c+ZMzZ8/X3fddZcOOu
- ],
- "text/plain": [
- "<IPython.core.display.HTML object>"
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- },
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "Generating statistics: https://hs.fi\n"
- ]
- },
- {
- "data": {
- "application/javascript": [
- "/* Put everything inside the global mpl namespace */\n",
- "window.mpl = {};\n",
- "\n",
- "\n",
- "mpl.get_websocket_type = function() {\n",
- " if (typeof(WebSocket) !== 'undefined') {\n",
- " return WebSocket;\n",
- " } else if (typeof(MozWebSocket) !== 'undefined') {\n",
- " return MozWebSocket;\n",
- " } else {\n",
- " alert('Your browser does not have WebSocket support. ' +\n",
- " 'Please try Chrome, Safari or Firefox ≥ 6. ' +\n",
- " 'Firefox 4 and 5 are also supported but you ' +\n",
- " 'have to enable WebSockets in about:config.');\n",
- " };\n",
- "}\n",
- "\n",
- "mpl.figure = function(figure_id, websocket, ondownload, parent_element) {\n",
- " this.id = figure_id;\n",
- "\n",
- " this.ws = websocket;\n",
- "\n",
- " this.supports_binary = (this.ws.binaryType != undefined);\n",
- "\n",
- " if (!this.supports_binary) {\n",
- " var warnings = document.getElementById(\"mpl-warnings\");\n",
- " if (warnings) {\n",
- " warnings.style.display = 'block';\n",
- " warnings.textContent = (\n",
- " \"This browser does not support binary websocket messages. \" +\n",
- " \"Performance may be slow.\");\n",
- " }\n",
- " }\n",
- "\n",
- " this.imageObj = new Image();\n",
- "\n",
- " this.context = undefined;\n",
- " this.message = undefined;\n",
- " this.canvas = undefined;\n",
- " this.rubberband_canvas = undefined;\n",
- " this.rubberband_context = undefined;\n",
- " this.format_dropdown = undefined;\n",
- "\n",
- " this.image_mode = 'full';\n",
- "\n",
- " this.root = $('<div/>');\n",
- " this._root_extra_style(this.root)\n",
- " this.root.attr('style', 'display: inline-block');\n",
- "\n",
- " $(parent_element).append(this.root);\n",
- "\n",
- " this._init_header(this);\n",
- " this._init_canvas(this);\n",
- " this._init_toolbar(this);\n",
- "\n",
- " var fig = this;\n",
- "\n",
- " this.waiting = false;\n",
- "\n",
- " this.ws.onopen = function () {\n",
- " fig.send_message(\"supports_binary\", {value: fig.supports_binary});\n",
- " fig.send_message(\"send_image_mode\", {});\n",
- " if (mpl.ratio != 1) {\n",
- " fig.send_message(\"set_dpi_ratio\", {'dpi_ratio': mpl.ratio});\n",
- " }\n",
- " fig.send_message(\"refresh\", {});\n",
- " }\n",
- "\n",
- " this.imageObj.onload = function() {\n",
- " if (fig.image_mode == 'full') {\n",
- " // Full images could contain transparency (where diff images\n",
- " // almost always do), so we need to clear the canvas so that\n",
- " // there is no ghosting.\n",
- " fig.context.clearRect(0, 0, fig.canvas.width, fig.canvas.height);\n",
- " }\n",
- " fig.context.drawImage(fig.imageObj, 0, 0);\n",
- " };\n",
- "\n",
- " this.imageObj.onunload = function() {\n",
- " fig.ws.close();\n",
- " }\n",
- "\n",
- " this.ws.onmessage = this._make_on_message_function(this);\n",
- "\n",
- " this.ondownload = ondownload;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_header = function() {\n",
- " var titlebar = $(\n",
- " '<div class=\"ui-dialog-titlebar ui-widget-header ui-corner-all ' +\n",
- " 'ui-helper-clearfix\"/>');\n",
- " var titletext = $(\n",
- " '<div class=\"ui-dialog-title\" style=\"width: 100%; ' +\n",
- " 'text-align: center; padding: 3px;\"/>');\n",
- " titlebar.append(titletext)\n",
- " this.root.append(titlebar);\n",
- " this.header = titletext[0];\n",
- "}\n",
- "\n",
- "\n",
- "\n",
- "mpl.figure.prototype._canvas_extra_style = function(canvas_div) {\n",
- "\n",
- "}\n",
- "\n",
- "\n",
- "mpl.figure.prototype._root_extra_style = function(canvas_div) {\n",
- "\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_canvas = function() {\n",
- " var fig = this;\n",
- "\n",
- " var canvas_div = $('<div/>');\n",
- "\n",
- " canvas_div.attr('style', 'position: relative; clear: both; outline: 0');\n",
- "\n",
- " function canvas_keyboard_event(event) {\n",
- " return fig.key_event(event, event['data']);\n",
- " }\n",
- "\n",
- " canvas_div.keydown('key_press', canvas_keyboard_event);\n",
- " canvas_div.keyup('key_release', canvas_keyboard_event);\n",
- " this.canvas_div = canvas_div\n",
- " this._canvas_extra_style(canvas_div)\n",
- " this.root.append(canvas_div);\n",
- "\n",
- " var canvas = $('<canvas/>');\n",
- " canvas.addClass('mpl-canvas');\n",
- " canvas.attr('style', \"left: 0; top: 0; z-index: 0; outline: 0\")\n",
- "\n",
- " this.canvas = canvas[0];\n",
- " this.context = canvas[0].getContext(\"2d\");\n",
- "\n",
- " var backingStore = this.context.backingStorePixelRatio ||\n",
- "\tthis.context.webkitBackingStorePixelRatio ||\n",
- "\tthis.context.mozBackingStorePixelRatio ||\n",
- "\tthis.context.msBackingStorePixelRatio ||\n",
- "\tthis.context.oBackingStorePixelRatio ||\n",
- "\tthis.context.backingStorePixelRatio || 1;\n",
- "\n",
- " mpl.ratio = (window.devicePixelRatio || 1) / backingStore;\n",
- "\n",
- " var rubberband = $('<canvas/>');\n",
- " rubberband.attr('style', \"position: absolute; left: 0; top: 0; z-index: 1;\")\n",
- "\n",
- " var pass_mouse_events = true;\n",
- "\n",
- " canvas_div.resizable({\n",
- " start: function(event, ui) {\n",
- " pass_mouse_events = false;\n",
- " },\n",
- " resize: function(event, ui) {\n",
- " fig.request_resize(ui.size.width, ui.size.height);\n",
- " },\n",
- " stop: function(event, ui) {\n",
- " pass_mouse_events = true;\n",
- " fig.request_resize(ui.size.width, ui.size.height);\n",
- " },\n",
- " });\n",
- "\n",
- " function mouse_event_fn(event) {\n",
- " if (pass_mouse_events)\n",
- " return fig.mouse_event(event, event['data']);\n",
- " }\n",
- "\n",
- " rubberband.mousedown('button_press', mouse_event_fn);\n",
- " rubberband.mouseup('button_release', mouse_event_fn);\n",
- " // Throttle sequential mouse events to 1 every 20ms.\n",
- " rubberband.mousemove('motion_notify', mouse_event_fn);\n",
- "\n",
- " rubberband.mouseenter('figure_enter', mouse_event_fn);\n",
- " rubberband.mouseleave('figure_leave', mouse_event_fn);\n",
- "\n",
- " canvas_div.on(\"wheel\", function (event) {\n",
- " event = event.originalEvent;\n",
- " event['data'] = 'scroll'\n",
- " if (event.deltaY < 0) {\n",
- " event.step = 1;\n",
- " } else {\n",
- " event.step = -1;\n",
- " }\n",
- " mouse_event_fn(event);\n",
- " });\n",
- "\n",
- " canvas_div.append(canvas);\n",
- " canvas_div.append(rubberband);\n",
- "\n",
- " this.rubberband = rubberband;\n",
- " this.rubberband_canvas = rubberband[0];\n",
- " this.rubberband_context = rubberband[0].getContext(\"2d\");\n",
- " this.rubberband_context.strokeStyle = \"#000000\";\n",
- "\n",
- " this._resize_canvas = function(width, height) {\n",
- " // Keep the size of the canvas, canvas container, and rubber band\n",
- " // canvas in synch.\n",
- " canvas_div.css('width', width)\n",
- " canvas_div.css('height', height)\n",
- "\n",
- " canvas.attr('width', width * mpl.ratio);\n",
- " canvas.attr('height', height * mpl.ratio);\n",
- " canvas.attr('style', 'width: ' + width + 'px; height: ' + height + 'px;');\n",
- "\n",
- " rubberband.attr('width', width);\n",
- " rubberband.attr('height', height);\n",
- " }\n",
- "\n",
- " // Set the figure to an initial 600x600px, this will subsequently be updated\n",
- " // upon first draw.\n",
- " this._resize_canvas(600, 600);\n",
- "\n",
- " // Disable right mouse context menu.\n",
- " $(this.rubberband_canvas).bind(\"contextmenu\",function(e){\n",
- " return false;\n",
- " });\n",
- "\n",
- " function set_focus () {\n",
- " canvas.focus();\n",
- " canvas_div.focus();\n",
- " }\n",
- "\n",
- " window.setTimeout(set_focus, 100);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_toolbar = function() {\n",
- " var fig = this;\n",
- "\n",
- " var nav_element = $('<div/>');\n",
- " nav_element.attr('style', 'width: 100%');\n",
- " this.root.append(nav_element);\n",
- "\n",
- " // Define a callback function for later on.\n",
- " function toolbar_event(event) {\n",
- " return fig.toolbar_button_onclick(event['data']);\n",
- " }\n",
- " function toolbar_mouse_event(event) {\n",
- " return fig.toolbar_button_onmouseover(event['data']);\n",
- " }\n",
- "\n",
- " for(var toolbar_ind in mpl.toolbar_items) {\n",
- " var name = mpl.toolbar_items[toolbar_ind][0];\n",
- " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n",
- " var image = mpl.toolbar_items[toolbar_ind][2];\n",
- " var method_name = mpl.toolbar_items[toolbar_ind][3];\n",
- "\n",
- " if (!name) {\n",
- " // put a spacer in here.\n",
- " continue;\n",
- " }\n",
- " var button = $('<button/>');\n",
- " button.addClass('ui-button ui-widget ui-state-default ui-corner-all ' +\n",
- " 'ui-button-icon-only');\n",
- " button.attr('role', 'button');\n",
- " button.attr('aria-disabled', 'false');\n",
- " button.click(method_name, toolbar_event);\n",
- " button.mouseover(tooltip, toolbar_mouse_event);\n",
- "\n",
- " var icon_img = $('<span/>');\n",
- " icon_img.addClass('ui-button-icon-primary ui-icon');\n",
- " icon_img.addClass(image);\n",
- " icon_img.addClass('ui-corner-all');\n",
- "\n",
- " var tooltip_span = $('<span/>');\n",
- " tooltip_span.addClass('ui-button-text');\n",
- " tooltip_span.html(tooltip);\n",
- "\n",
- " button.append(icon_img);\n",
- " button.append(tooltip_span);\n",
- "\n",
- " nav_element.append(button);\n",
- " }\n",
- "\n",
- " var fmt_picker_span = $('<span/>');\n",
- "\n",
- " var fmt_picker = $('<select/>');\n",
- " fmt_picker.addClass('mpl-toolbar-option ui-widget ui-widget-content');\n",
- " fmt_picker_span.append(fmt_picker);\n",
- " nav_element.append(fmt_picker_span);\n",
- " this.format_dropdown = fmt_picker[0];\n",
- "\n",
- " for (var ind in mpl.extensions) {\n",
- " var fmt = mpl.extensions[ind];\n",
- " var option = $(\n",
- " '<option/>', {selected: fmt === mpl.default_extension}).html(fmt);\n",
- " fmt_picker.append(option);\n",
- " }\n",
- "\n",
- " // Add hover states to the ui-buttons\n",
- " $( \".ui-button\" ).hover(\n",
- " function() { $(this).addClass(\"ui-state-hover\");},\n",
- " function() { $(this).removeClass(\"ui-state-hover\");}\n",
- " );\n",
- "\n",
- " var status_bar = $('<span class=\"mpl-message\"/>');\n",
- " nav_element.append(status_bar);\n",
- " this.message = status_bar[0];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.request_resize = function(x_pixels, y_pixels) {\n",
- " // Request matplotlib to resize the figure. Matplotlib will then trigger a resize in the client,\n",
- " // which will in turn request a refresh of the image.\n",
- " this.send_message('resize', {'width': x_pixels, 'height': y_pixels});\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.send_message = function(type, properties) {\n",
- " properties['type'] = type;\n",
- " properties['figure_id'] = this.id;\n",
- " this.ws.send(JSON.stringify(properties));\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.send_draw_message = function() {\n",
- " if (!this.waiting) {\n",
- " this.waiting = true;\n",
- " this.ws.send(JSON.stringify({type: \"draw\", figure_id: this.id}));\n",
- " }\n",
- "}\n",
- "\n",
- "\n",
- "mpl.figure.prototype.handle_save = function(fig, msg) {\n",
- " var format_dropdown = fig.format_dropdown;\n",
- " var format = format_dropdown.options[format_dropdown.selectedIndex].value;\n",
- " fig.ondownload(fig, format);\n",
- "}\n",
- "\n",
- "\n",
- "mpl.figure.prototype.handle_resize = function(fig, msg) {\n",
- " var size = msg['size'];\n",
- " if (size[0] != fig.canvas.width || size[1] != fig.canvas.height) {\n",
- " fig._resize_canvas(size[0], size[1]);\n",
- " fig.send_message(\"refresh\", {});\n",
- " };\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_rubberband = function(fig, msg) {\n",
- " var x0 = msg['x0'] / mpl.ratio;\n",
- " var y0 = (fig.canvas.height - msg['y0']) / mpl.ratio;\n",
- " var x1 = msg['x1'] / mpl.ratio;\n",
- " var y1 = (fig.canvas.height - msg['y1']) / mpl.ratio;\n",
- " x0 = Math.floor(x0) + 0.5;\n",
- " y0 = Math.floor(y0) + 0.5;\n",
- " x1 = Math.floor(x1) + 0.5;\n",
- " y1 = Math.floor(y1) + 0.5;\n",
- " var min_x = Math.min(x0, x1);\n",
- " var min_y = Math.min(y0, y1);\n",
- " var width = Math.abs(x1 - x0);\n",
- " var height = Math.abs(y1 - y0);\n",
- "\n",
- " fig.rubberband_context.clearRect(\n",
- " 0, 0, fig.canvas.width / mpl.ratio, fig.canvas.height / mpl.ratio);\n",
- "\n",
- " fig.rubberband_context.strokeRect(min_x, min_y, width, height);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_figure_label = function(fig, msg) {\n",
- " // Updates the figure title.\n",
- " fig.header.textContent = msg['label'];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_cursor = function(fig, msg) {\n",
- " var cursor = msg['cursor'];\n",
- " switch(cursor)\n",
- " {\n",
- " case 0:\n",
- " cursor = 'pointer';\n",
- " break;\n",
- " case 1:\n",
- " cursor = 'default';\n",
- " break;\n",
- " case 2:\n",
- " cursor = 'crosshair';\n",
- " break;\n",
- " case 3:\n",
- " cursor = 'move';\n",
- " break;\n",
- " }\n",
- " fig.rubberband_canvas.style.cursor = cursor;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_message = function(fig, msg) {\n",
- " fig.message.textContent = msg['message'];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_draw = function(fig, msg) {\n",
- " // Request the server to send over a new figure.\n",
- " fig.send_draw_message();\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_image_mode = function(fig, msg) {\n",
- " fig.image_mode = msg['mode'];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.updated_canvas_event = function() {\n",
- " // Called whenever the canvas gets updated.\n",
- " this.send_message(\"ack\", {});\n",
- "}\n",
- "\n",
- "// A function to construct a web socket function for onmessage handling.\n",
- "// Called in the figure constructor.\n",
- "mpl.figure.prototype._make_on_message_function = function(fig) {\n",
- " return function socket_on_message(evt) {\n",
- " if (evt.data instanceof Blob) {\n",
- " /* FIXME: We get \"Resource interpreted as Image but\n",
- " * transferred with MIME type text/plain:\" errors on\n",
- " * Chrome. But how to set the MIME type? It doesn't seem\n",
- " * to be part of the websocket stream */\n",
- " evt.data.type = \"image/png\";\n",
- "\n",
- " /* Free the memory for the previous frames */\n",
- " if (fig.imageObj.src) {\n",
- " (window.URL || window.webkitURL).revokeObjectURL(\n",
- " fig.imageObj.src);\n",
- " }\n",
- "\n",
- " fig.imageObj.src = (window.URL || window.webkitURL).createObjectURL(\n",
- " evt.data);\n",
- " fig.updated_canvas_event();\n",
- " fig.waiting = false;\n",
- " return;\n",
- " }\n",
- " else if (typeof evt.data === 'string' && evt.data.slice(0, 21) == \"data:image/png;base64\") {\n",
- " fig.imageObj.src = evt.data;\n",
- " fig.updated_canvas_event();\n",
- " fig.waiting = false;\n",
- " return;\n",
- " }\n",
- "\n",
- " var msg = JSON.parse(evt.data);\n",
- " var msg_type = msg['type'];\n",
- "\n",
- " // Call the \"handle_{type}\" callback, which takes\n",
- " // the figure and JSON message as its only arguments.\n",
- " try {\n",
- " var callback = fig[\"handle_\" + msg_type];\n",
- " } catch (e) {\n",
- " console.log(\"No handler for the '\" + msg_type + \"' message type: \", msg);\n",
- " return;\n",
- " }\n",
- "\n",
- " if (callback) {\n",
- " try {\n",
- " // console.log(\"Handling '\" + msg_type + \"' message: \", msg);\n",
- " callback(fig, msg);\n",
- " } catch (e) {\n",
- " console.log(\"Exception inside the 'handler_\" + msg_type + \"' callback:\", e, e.stack, msg);\n",
- " }\n",
- " }\n",
- " };\n",
- "}\n",
- "\n",
- "// from http://stackoverflow.com/questions/1114465/getting-mouse-location-in-canvas\n",
- "mpl.findpos = function(e) {\n",
- " //this section is from http://www.quirksmode.org/js/events_properties.html\n",
- " var targ;\n",
- " if (!e)\n",
- " e = window.event;\n",
- " if (e.target)\n",
- " targ = e.target;\n",
- " else if (e.srcElement)\n",
- " targ = e.srcElement;\n",
- " if (targ.nodeType == 3) // defeat Safari bug\n",
- " targ = targ.parentNode;\n",
- "\n",
- " // jQuery normalizes the pageX and pageY\n",
- " // pageX,Y are the mouse positions relative to the document\n",
- " // offset() returns the position of the element relative to the document\n",
- " var x = e.pageX - $(targ).offset().left;\n",
- " var y = e.pageY - $(targ).offset().top;\n",
- "\n",
- " return {\"x\": x, \"y\": y};\n",
- "};\n",
- "\n",
- "/*\n",
- " * return a copy of an object with only non-object keys\n",
- " * we need this to avoid circular references\n",
- " * http://stackoverflow.com/a/24161582/3208463\n",
- " */\n",
- "function simpleKeys (original) {\n",
- " return Object.keys(original).reduce(function (obj, key) {\n",
- " if (typeof original[key] !== 'object')\n",
- " obj[key] = original[key]\n",
- " return obj;\n",
- " }, {});\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.mouse_event = function(event, name) {\n",
- " var canvas_pos = mpl.findpos(event)\n",
- "\n",
- " if (name === 'button_press')\n",
- " {\n",
- " this.canvas.focus();\n",
- " this.canvas_div.focus();\n",
- " }\n",
- "\n",
- " var x = canvas_pos.x * mpl.ratio;\n",
- " var y = canvas_pos.y * mpl.ratio;\n",
- "\n",
- " this.send_message(name, {x: x, y: y, button: event.button,\n",
- " step: event.step,\n",
- " guiEvent: simpleKeys(event)});\n",
- "\n",
- " /* This prevents the web browser from automatically changing to\n",
- " * the text insertion cursor when the button is pressed. We want\n",
- " * to control all of the cursor setting manually through the\n",
- " * 'cursor' event from matplotlib */\n",
- " event.preventDefault();\n",
- " return false;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._key_event_extra = function(event, name) {\n",
- " // Handle any extra behaviour associated with a key event\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.key_event = function(event, name) {\n",
- "\n",
- " // Prevent repeat events\n",
- " if (name == 'key_press')\n",
- " {\n",
- " if (event.which === this._key)\n",
- " return;\n",
- " else\n",
- " this._key = event.which;\n",
- " }\n",
- " if (name == 'key_release')\n",
- " this._key = null;\n",
- "\n",
- " var value = '';\n",
- " if (event.ctrlKey && event.which != 17)\n",
- " value += \"ctrl+\";\n",
- " if (event.altKey && event.which != 18)\n",
- " value += \"alt+\";\n",
- " if (event.shiftKey && event.which != 16)\n",
- " value += \"shift+\";\n",
- "\n",
- " value += 'k';\n",
- " value += event.which.toString();\n",
- "\n",
- " this._key_event_extra(event, name);\n",
- "\n",
- " this.send_message(name, {key: value,\n",
- " guiEvent: simpleKeys(event)});\n",
- " return false;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.toolbar_button_onclick = function(name) {\n",
- " if (name == 'download') {\n",
- " this.handle_save(this, null);\n",
- " } else {\n",
- " this.send_message(\"toolbar_button\", {name: name});\n",
- " }\n",
- "};\n",
- "\n",
- "mpl.figure.prototype.toolbar_button_onmouseover = function(tooltip) {\n",
- " this.message.textContent = tooltip;\n",
- "};\n",
- "mpl.toolbar_items = [[\"Home\", \"Reset original view\", \"fa fa-home icon-home\", \"home\"], [\"Back\", \"Back to previous view\", \"fa fa-arrow-left icon-arrow-left\", \"back\"], [\"Forward\", \"Forward to next view\", \"fa fa-arrow-right icon-arrow-right\", \"forward\"], [\"\", \"\", \"\", \"\"], [\"Pan\", \"Pan axes with left mouse, zoom with right\", \"fa fa-arrows icon-move\", \"pan\"], [\"Zoom\", \"Zoom to rectangle\", \"fa fa-square-o icon-check-empty\", \"zoom\"], [\"\", \"\", \"\", \"\"], [\"Download\", \"Download plot\", \"fa fa-floppy-o icon-save\", \"download\"]];\n",
- "\n",
- "mpl.extensions = [\"eps\", \"pdf\", \"png\", \"ps\", \"raw\", \"svg\"];\n",
- "\n",
- "mpl.default_extension = \"png\";var comm_websocket_adapter = function(comm) {\n",
- " // Create a \"websocket\"-like object which calls the given IPython comm\n",
- " // object with the appropriate methods. Currently this is a non binary\n",
- " // socket, so there is still some room for performance tuning.\n",
- " var ws = {};\n",
- "\n",
- " ws.close = function() {\n",
- " comm.close()\n",
- " };\n",
- " ws.send = function(m) {\n",
- " //console.log('sending', m);\n",
- " comm.send(m);\n",
- " };\n",
- " // Register the callback with on_msg.\n",
- " comm.on_msg(function(msg) {\n",
- " //console.log('receiving', msg['content']['data'], msg);\n",
- " // Pass the mpl event to the overridden (by mpl) onmessage function.\n",
- " ws.onmessage(msg['content']['data'])\n",
- " });\n",
- " return ws;\n",
- "}\n",
- "\n",
- "mpl.mpl_figure_comm = function(comm, msg) {\n",
- " // This is the function which gets called when the mpl process\n",
- " // starts-up an IPython Comm through the \"matplotlib\" channel.\n",
- "\n",
- " var id = msg.content.data.id;\n",
- " // Get hold of the div created by the display call when the Comm\n",
- " // socket was opened in Python.\n",
- " var element = $(\"#\" + id);\n",
- " var ws_proxy = comm_websocket_adapter(comm)\n",
- "\n",
- " function ondownload(figure, format) {\n",
- " window.open(figure.imageObj.src);\n",
- " }\n",
- "\n",
- " var fig = new mpl.figure(id, ws_proxy,\n",
- " ondownload,\n",
- " element.get(0));\n",
- "\n",
- " // Call onopen now - mpl needs it, as it is assuming we've passed it a real\n",
- " // web socket which is closed, not our websocket->open comm proxy.\n",
- " ws_proxy.onopen();\n",
- "\n",
- " fig.parent_element = element.get(0);\n",
- " fig.cell_info = mpl.find_output_cell(\"<div id='\" + id + \"'></div>\");\n",
- " if (!fig.cell_info) {\n",
- " console.error(\"Failed to find cell for figure\", id, fig);\n",
- " return;\n",
- " }\n",
- "\n",
- " var output_index = fig.cell_info[2]\n",
- " var cell = fig.cell_info[0];\n",
- "\n",
- "};\n",
- "\n",
- "mpl.figure.prototype.handle_close = function(fig, msg) {\n",
- " var width = fig.canvas.width/mpl.ratio\n",
- " fig.root.unbind('remove')\n",
- "\n",
- " // Update the output cell to use the data from the current canvas.\n",
- " fig.push_to_output();\n",
- " var dataURL = fig.canvas.toDataURL();\n",
- " // Re-enable the keyboard manager in IPython - without this line, in FF,\n",
- " // the notebook keyboard shortcuts fail.\n",
- " IPython.keyboard_manager.enable()\n",
- " $(fig.parent_element).html('<img src=\"' + dataURL + '\" width=\"' + width + '\">');\n",
- " fig.close_ws(fig, msg);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.close_ws = function(fig, msg){\n",
- " fig.send_message('closing', msg);\n",
- " // fig.ws.close()\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.push_to_output = function(remove_interactive) {\n",
- " // Turn the data on the canvas into data in the output cell.\n",
- " var width = this.canvas.width/mpl.ratio\n",
- " var dataURL = this.canvas.toDataURL();\n",
- " this.cell_info[1]['text/html'] = '<img src=\"' + dataURL + '\" width=\"' + width + '\">';\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.updated_canvas_event = function() {\n",
- " // Tell IPython that the notebook contents must change.\n",
- " IPython.notebook.set_dirty(true);\n",
- " this.send_message(\"ack\", {});\n",
- " var fig = this;\n",
- " // Wait a second, then push the new image to the DOM so\n",
- " // that it is saved nicely (might be nice to debounce this).\n",
- " setTimeout(function () { fig.push_to_output() }, 1000);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_toolbar = function() {\n",
- " var fig = this;\n",
- "\n",
- " var nav_element = $('<div/>');\n",
- " nav_element.attr('style', 'width: 100%');\n",
- " this.root.append(nav_element);\n",
- "\n",
- " // Define a callback function for later on.\n",
- " function toolbar_event(event) {\n",
- " return fig.toolbar_button_onclick(event['data']);\n",
- " }\n",
- " function toolbar_mouse_event(event) {\n",
- " return fig.toolbar_button_onmouseover(event['data']);\n",
- " }\n",
- "\n",
- " for(var toolbar_ind in mpl.toolbar_items){\n",
- " var name = mpl.toolbar_items[toolbar_ind][0];\n",
- " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n",
- " var image = mpl.toolbar_items[toolbar_ind][2];\n",
- " var method_name = mpl.toolbar_items[toolbar_ind][3];\n",
- "\n",
- " if (!name) { continue; };\n",
- "\n",
- " var button = $('<button class=\"btn btn-default\" href=\"#\" title=\"' + name + '\"><i class=\"fa ' + image + ' fa-lg\"></i></button>');\n",
- " button.click(method_name, toolbar_event);\n",
- " button.mouseover(tooltip, toolbar_mouse_event);\n",
- " nav_element.append(button);\n",
- " }\n",
- "\n",
- " // Add the status bar.\n",
- " var status_bar = $('<span class=\"mpl-message\" style=\"text-align:right; float: right;\"/>');\n",
- " nav_element.append(status_bar);\n",
- " this.message = status_bar[0];\n",
- "\n",
- " // Add the close button to the window.\n",
- " var buttongrp = $('<div class=\"btn-group inline pull-right\"></div>');\n",
- " var button = $('<button class=\"btn btn-mini btn-primary\" href=\"#\" title=\"Stop Interaction\"><i class=\"fa fa-power-off icon-remove icon-large\"></i></button>');\n",
- " button.click(function (evt) { fig.handle_close(fig, {}); } );\n",
- " button.mouseover('Stop Interaction', toolbar_mouse_event);\n",
- " buttongrp.append(button);\n",
- " var titlebar = this.root.find($('.ui-dialog-titlebar'));\n",
- " titlebar.prepend(buttongrp);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._root_extra_style = function(el){\n",
- " var fig = this\n",
- " el.on(\"remove\", function(){\n",
- "\tfig.close_ws(fig, {});\n",
- " });\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._canvas_extra_style = function(el){\n",
- " // this is important to make the div 'focusable\n",
- " el.attr('tabindex', 0)\n",
- " // reach out to IPython and tell the keyboard manager to turn it's self\n",
- " // off when our div gets focus\n",
- "\n",
- " // location in version 3\n",
- " if (IPython.notebook.keyboard_manager) {\n",
- " IPython.notebook.keyboard_manager.register_events(el);\n",
- " }\n",
- " else {\n",
- " // location in version 2\n",
- " IPython.keyboard_manager.register_events(el);\n",
- " }\n",
- "\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._key_event_extra = function(event, name) {\n",
- " var manager = IPython.notebook.keyboard_manager;\n",
- " if (!manager)\n",
- " manager = IPython.keyboard_manager;\n",
- "\n",
- " // Check for shift+enter\n",
- " if (event.shiftKey && event.which == 13) {\n",
- " this.canvas_div.blur();\n",
- " // select the cell after this one\n",
- " var index = IPython.notebook.find_cell_index(this.cell_info[0]);\n",
- " IPython.notebook.select(index + 1);\n",
- " }\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_save = function(fig, msg) {\n",
- " fig.ondownload(fig, null);\n",
- "}\n",
- "\n",
- "\n",
- "mpl.find_output_cell = function(html_output) {\n",
- " // Return the cell and output element which can be found *uniquely* in the notebook.\n",
- " // Note - this is a bit hacky, but it is done because the \"notebook_saving.Notebook\"\n",
- " // IPython event is triggered only after the cells have been serialised, which for\n",
- " // our purposes (turning an active figure into a static one), is too late.\n",
- " var cells = IPython.notebook.get_cells();\n",
- " var ncells = cells.length;\n",
- " for (var i=0; i<ncells; i++) {\n",
- " var cell = cells[i];\n",
- " if (cell.cell_type === 'code'){\n",
- " for (var j=0; j<cell.output_area.outputs.length; j++) {\n",
- " var data = cell.output_area.outputs[j];\n",
- " if (data.data) {\n",
- " // IPython >= 3 moved mimebundle to data attribute of output\n",
- " data = data.data;\n",
- " }\n",
- " if (data['text/html'] == html_output) {\n",
- " return [cell, data, j];\n",
- " }\n",
- " }\n",
- " }\n",
- " }\n",
- "}\n",
- "\n",
- "// Register the function which deals with the matplotlib target/channel.\n",
- "// The kernel may be null if the page has been refreshed.\n",
- "if (IPython.notebook.kernel != null) {\n",
- " IPython.notebook.kernel.comm_manager.register_target('matplotlib', mpl.mpl_figure_comm);\n",
- "}\n"
- ],
- "text/plain": [
- "<IPython.core.display.Javascript object>"
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- },
- {
- "data": {
- "text/html": [
- "<img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA4QAAAMgCAYAAAB7w6zDAAAgAElEQVR4nOzde5hVdb348TWDwMAMAhY3QbHIvIemJy9pWCZ4Nz3mpTKsSBM7qcej9XQq8PESdNG0c9KyxEseb6GIaSQdwfKSUWCSl6OmIamJaaAgIDKf3x/+ZjebmYEZhO+wvvN6Pc/3eWTtNWt/Z/Ze2/WevWbtIgAAAOiSis6eAAAAAJ1DEAIAAHRRghAAAKCLEoQAAABdlCAEAADoogQhAABAFyUIAQAAuihBCAAA0EUJQgAAgC5KEAIAAHRRghAAAKCLEoQAAABdlCAEAADoogQhAABAFyUIAQAAuihBCAAA0EUJQgAAgC5KEAIAAHRRghAAAKCLEoQAAABdlCAEAADoogQhAABAFyUIAQAAuihBCAAA0EUJQgAAgC5KEAIAAHRRghAAAKCLEoQAAABdlCAEAADoogQhAABAFyUIAQAAuihBCAAA0EUJQgAAgC5KEAIAAHRRghAAAKCLEoQAAABdlCAEAADoogQhAABAFyUIAQAAuihBCAAA0EUJQgAAgC5KEAIAAHRRghAAAKCLEoQAAABdlCAEAADoogQhAABAFyUIAQAAuihBCAAA0EUJQgAAgC5KEAIAAHRRghAAAKCLEoQAAABdlCAEAADoogQhAABAFyUIAQAAuihBCAAA0EUJQgAAgC5KEAIAAHRRghAAAKCLEoQAAABdlCAEAADoogQhAABAFyUIAQAAuihBCAAA0EUJQgAAgC5KEAIAAHRRghAAAKCLEoQAAABdlCAEAADoogQhAABAFyUIAQAAuihBCAAA0EUJQgAAgC5KEAIAAHRRghAAAKCLEoRQElOmTImiKCqjZ8+eMWjQoNh///3jwgsvjBdffLGzp9guw4cPj7Fjx3b2NEpj7NixMXz48PX62uuuuy4uvvjiDTuh/29jPo5Nz/Vnnnmmsqyt7+WZZ56Joiji29/+9nrd16xZs6Ioirj55ptbvf20006Loiiq5rWu0fR4TZgwIYqiiJqamvjzn//cYttLly6NPn36RFEUVT/Lt/M9jRo1KnbaaadWb3vppZeiKIqYMGFCZdma31O3bt1i8ODBcdxxx8UTTzzRoe2vj9Ye6/a64447qr6XDe3cc8+NHXbYIVavXh0RHXtc1ja3Cy64IG699dYNOdX1ctRRR8URRxxRtezll1+OzTbbLG655ZaIiCiKIk477bSNOo8bbrghdtxxx6irq4uiKGLevHmVfae5/fbbL04//fSNOhfoqgQhlETTgdOUKVPigQceiF//+tfxs5/9LM4444zo27dvbLHFFjFz5szOnuY6zZ07N5566qnOnkZpPPXUUzF37tz1+tpDDz10vWNyXTZmEC5atCgeeOCBWLFiRWVZW99LyiBsmlfzURRFHHPMMVXLmh6vpoPaPn36xNe+9rUW254yZUrU1dVF9+7dOz0Im15XZs2aFeeff3706tUrBg4cGK+88kq7t78+3k4QNn9sNrTnnnsu6uvrq54XHXlc1ja3+vr6Tv+l2NKlS6NXr15x9dVXVy2/8soro3fv3vH6669HxMYPwkWLFkX37t3j8MMPj9mzZ8cDDzwQy5Yti4ULF8YDDzxQte7s2bOje/fu8fjjj2+0+UBXJQihJJoOnObMmdPitgULFsRWW20Vffr0ib/97W+dMDs2RWUNwtZsCkHYmrUdMDcF4bhx42KrrbaqvNPUZN99940TTjihRSB0RhCu+bpy7rnnRlEUceWVV7Z7++tjUw3Cc845J4YOHVr1mOUUhDfddFN07969RfAfcsghccwxx1T+vbGD8N57742iKOLGG29s1/o777xzfP7zn99o84GuShBCSawtCCPe+h98URRx7rnnVi2/7bbbYq+99opevXpFQ0NDfPSjH43777+/ap2mA9c//vGPccwxx8Tmm28e/fv3jzPPPDNWrVoVjz/+eIwZMyYaGhpi+PDhMXny5KqvX758efz7v/97jBw5svK1e+21V0ybNq3FPNcMiaYD8v/5n/+Jr371qzFkyJDo06dPHHDAAS1+Ezx37tw49NBDY8CAAdGjR48YMmRIHHLIIbFw4cK1/uzuuuuuOOKII2Lo0KHRs2fPGDFiRJx88snx0ksvVa23aNGi+PznPx/Dhg2LHj16xDvf+c7YZ599qt55bc8cli9fHl/5yldim222ie7du8eWW24Z48ePj3/84x8t5nbdddfFXnvtFfX19VFfXx8jR46MH//4x5XbWztl9L/+679iv/32iwEDBkTv3r1j5513jsmTJ8cbb7xRWWfUqFGtns7YZOXKlXHeeefFdtttV/leTzrppFi0aFHVfb3xxhtx9tlnx6BBg6JXr17xwQ9+MB588MF2BeEee+wRhxxySNWynXfeOYqiiN/97neVZVOnTo2iKOLhhx+OiJaRsLbvpflB+ne/+93YZpttor6+Pvbaa68W7zC0JkUQ3n///VEURcyYMaNy2//93/9FURQxc+bMTTII77jjjiiKIr75zW+2e/vr8sADD8Q+++wTPXv2jCFDhsRXvvKV+NGPftQiCG+44YY48MADY/DgwVFXVxfbb799fPnLX46lS5dW1hk7dmyrz4mm7bRnH2nLypUr4x3veEecffbZVcvb+1xb29xaWz5q1KiI+Odjcdddd8VJJ50U/fv3j969e8dhhx3W4pTj9X0tbHLcccfFmDFjqpYtWbIkevToEddff31lWdPz+5prrontt98+evXqFe973/vi9ttvr/ra9rx2rqm1n1PTz6K1U0YjIiZPnhz19fXx6quvtuv7BNpHEEJJrCsIly5dGt26dYsDDjigsuy6666Loihi9OjRMW3atLjxxhtj9913jx49esRvfvObynpN//Pdbrvt4rzzzouZM2fGOeecE0VRxBe/+MXYfvvt49JLL42ZM2fGZz7zmSiKIqZOnVr5+sWLF8dJJ50U1157bdx9990xY8aM+I//+I+ora1tcUpSW0G4zTbbxCc/+cm444474vrrr4+tt946tt1223jzzTcr39873vGO2GOPPeKmm26Ke+65J2688cb4whe+EI8++uhaf3aXXXZZfPOb34zp06fHPffcE1dffXWMHDkytttuu6oDxDFjxsSAAQPiRz/6UcyePTumTZsW3/jGN+KGG25o9xwaGxtjzJgxsdlmm8XXv/71uOuuu+I73/lO1NfXx2677VZ1GuTXv/71KIoijj766Lj55pvjrrvuiosuuii+/vWvV9ZpLQjPPPPMuOyyy2LGjBlx9913x8UXXxzvfOc74zOf+UxlnUceeSQ++MEPxuDBg6tOZ4yIWL16dRx00EFRX18f5557bsycOTN+/OMfx9ChQ2PHHXesnC7WdP81NTVx9tlnV+Y3dOjQ2HzzzdcZhF/5yleioaGh8jP+29/+FkVRRK9eveKCCy6orHfqqafGoEGDKv9eMwjX9r00HWRvs802cdBBB8W0adNi2rRpscsuu0T//v1j8eLFa51j0/PvxhtvjFWrVrUY48ePf9tB+NJLL8V+++0Xxx57bOW2L3/5y7HNNttEY2PjJhmE//Vf/9ViP1/X9tfmkUceid69e8eOO+4Y119/fdx2220xZsyY2HrrrVsE4XnnnRcXX3xx3HHHHTF79uy4/PLL413veld8+MMfrqzz1FNPxTHHHBNFUVQ9J5r2r/bsI2359a9/HUVRxJ133lm1vL3PtbXN7YEHHohevXrFIYccUln+yCOPRMQ/H4utttoqPvvZz8YvfvGL+NGPfhQDBw6MrbbaqvILpfa+FjY9/2bNmlX1fSxfvjwaGhriRz/6UdXyn/70p9GzZ8+q2Gr6fj/wgQ/ETTfdFHfeeWfsv//+sdlmm1VF6rpeO1vz1FNPxX//939HURRx4YUXVv0s2grCBx98MIqiiOnTp7e5XaDjBCGUxLqCMCJi0KBBscMOO0TEWwf9W265Zeyyyy5Vpz299tprMXDgwNhnn30qy5r+5/vd7363anu77rprFEVRucBARMSqVatiwIABcfTRR7c5jzfffD
- ],
- "text/plain": [
- "<IPython.core.display.HTML object>"
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- },
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "Generating statistics: https://ts.fi\n"
- ]
- },
- {
- "data": {
- "application/javascript": [
- "/* Put everything inside the global mpl namespace */\n",
- "window.mpl = {};\n",
- "\n",
- "\n",
- "mpl.get_websocket_type = function() {\n",
- " if (typeof(WebSocket) !== 'undefined') {\n",
- " return WebSocket;\n",
- " } else if (typeof(MozWebSocket) !== 'undefined') {\n",
- " return MozWebSocket;\n",
- " } else {\n",
- " alert('Your browser does not have WebSocket support. ' +\n",
- " 'Please try Chrome, Safari or Firefox ≥ 6. ' +\n",
- " 'Firefox 4 and 5 are also supported but you ' +\n",
- " 'have to enable WebSockets in about:config.');\n",
- " };\n",
- "}\n",
- "\n",
- "mpl.figure = function(figure_id, websocket, ondownload, parent_element) {\n",
- " this.id = figure_id;\n",
- "\n",
- " this.ws = websocket;\n",
- "\n",
- " this.supports_binary = (this.ws.binaryType != undefined);\n",
- "\n",
- " if (!this.supports_binary) {\n",
- " var warnings = document.getElementById(\"mpl-warnings\");\n",
- " if (warnings) {\n",
- " warnings.style.display = 'block';\n",
- " warnings.textContent = (\n",
- " \"This browser does not support binary websocket messages. \" +\n",
- " \"Performance may be slow.\");\n",
- " }\n",
- " }\n",
- "\n",
- " this.imageObj = new Image();\n",
- "\n",
- " this.context = undefined;\n",
- " this.message = undefined;\n",
- " this.canvas = undefined;\n",
- " this.rubberband_canvas = undefined;\n",
- " this.rubberband_context = undefined;\n",
- " this.format_dropdown = undefined;\n",
- "\n",
- " this.image_mode = 'full';\n",
- "\n",
- " this.root = $('<div/>');\n",
- " this._root_extra_style(this.root)\n",
- " this.root.attr('style', 'display: inline-block');\n",
- "\n",
- " $(parent_element).append(this.root);\n",
- "\n",
- " this._init_header(this);\n",
- " this._init_canvas(this);\n",
- " this._init_toolbar(this);\n",
- "\n",
- " var fig = this;\n",
- "\n",
- " this.waiting = false;\n",
- "\n",
- " this.ws.onopen = function () {\n",
- " fig.send_message(\"supports_binary\", {value: fig.supports_binary});\n",
- " fig.send_message(\"send_image_mode\", {});\n",
- " if (mpl.ratio != 1) {\n",
- " fig.send_message(\"set_dpi_ratio\", {'dpi_ratio': mpl.ratio});\n",
- " }\n",
- " fig.send_message(\"refresh\", {});\n",
- " }\n",
- "\n",
- " this.imageObj.onload = function() {\n",
- " if (fig.image_mode == 'full') {\n",
- " // Full images could contain transparency (where diff images\n",
- " // almost always do), so we need to clear the canvas so that\n",
- " // there is no ghosting.\n",
- " fig.context.clearRect(0, 0, fig.canvas.width, fig.canvas.height);\n",
- " }\n",
- " fig.context.drawImage(fig.imageObj, 0, 0);\n",
- " };\n",
- "\n",
- " this.imageObj.onunload = function() {\n",
- " fig.ws.close();\n",
- " }\n",
- "\n",
- " this.ws.onmessage = this._make_on_message_function(this);\n",
- "\n",
- " this.ondownload = ondownload;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_header = function() {\n",
- " var titlebar = $(\n",
- " '<div class=\"ui-dialog-titlebar ui-widget-header ui-corner-all ' +\n",
- " 'ui-helper-clearfix\"/>');\n",
- " var titletext = $(\n",
- " '<div class=\"ui-dialog-title\" style=\"width: 100%; ' +\n",
- " 'text-align: center; padding: 3px;\"/>');\n",
- " titlebar.append(titletext)\n",
- " this.root.append(titlebar);\n",
- " this.header = titletext[0];\n",
- "}\n",
- "\n",
- "\n",
- "\n",
- "mpl.figure.prototype._canvas_extra_style = function(canvas_div) {\n",
- "\n",
- "}\n",
- "\n",
- "\n",
- "mpl.figure.prototype._root_extra_style = function(canvas_div) {\n",
- "\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_canvas = function() {\n",
- " var fig = this;\n",
- "\n",
- " var canvas_div = $('<div/>');\n",
- "\n",
- " canvas_div.attr('style', 'position: relative; clear: both; outline: 0');\n",
- "\n",
- " function canvas_keyboard_event(event) {\n",
- " return fig.key_event(event, event['data']);\n",
- " }\n",
- "\n",
- " canvas_div.keydown('key_press', canvas_keyboard_event);\n",
- " canvas_div.keyup('key_release', canvas_keyboard_event);\n",
- " this.canvas_div = canvas_div\n",
- " this._canvas_extra_style(canvas_div)\n",
- " this.root.append(canvas_div);\n",
- "\n",
- " var canvas = $('<canvas/>');\n",
- " canvas.addClass('mpl-canvas');\n",
- " canvas.attr('style', \"left: 0; top: 0; z-index: 0; outline: 0\")\n",
- "\n",
- " this.canvas = canvas[0];\n",
- " this.context = canvas[0].getContext(\"2d\");\n",
- "\n",
- " var backingStore = this.context.backingStorePixelRatio ||\n",
- "\tthis.context.webkitBackingStorePixelRatio ||\n",
- "\tthis.context.mozBackingStorePixelRatio ||\n",
- "\tthis.context.msBackingStorePixelRatio ||\n",
- "\tthis.context.oBackingStorePixelRatio ||\n",
- "\tthis.context.backingStorePixelRatio || 1;\n",
- "\n",
- " mpl.ratio = (window.devicePixelRatio || 1) / backingStore;\n",
- "\n",
- " var rubberband = $('<canvas/>');\n",
- " rubberband.attr('style', \"position: absolute; left: 0; top: 0; z-index: 1;\")\n",
- "\n",
- " var pass_mouse_events = true;\n",
- "\n",
- " canvas_div.resizable({\n",
- " start: function(event, ui) {\n",
- " pass_mouse_events = false;\n",
- " },\n",
- " resize: function(event, ui) {\n",
- " fig.request_resize(ui.size.width, ui.size.height);\n",
- " },\n",
- " stop: function(event, ui) {\n",
- " pass_mouse_events = true;\n",
- " fig.request_resize(ui.size.width, ui.size.height);\n",
- " },\n",
- " });\n",
- "\n",
- " function mouse_event_fn(event) {\n",
- " if (pass_mouse_events)\n",
- " return fig.mouse_event(event, event['data']);\n",
- " }\n",
- "\n",
- " rubberband.mousedown('button_press', mouse_event_fn);\n",
- " rubberband.mouseup('button_release', mouse_event_fn);\n",
- " // Throttle sequential mouse events to 1 every 20ms.\n",
- " rubberband.mousemove('motion_notify', mouse_event_fn);\n",
- "\n",
- " rubberband.mouseenter('figure_enter', mouse_event_fn);\n",
- " rubberband.mouseleave('figure_leave', mouse_event_fn);\n",
- "\n",
- " canvas_div.on(\"wheel\", function (event) {\n",
- " event = event.originalEvent;\n",
- " event['data'] = 'scroll'\n",
- " if (event.deltaY < 0) {\n",
- " event.step = 1;\n",
- " } else {\n",
- " event.step = -1;\n",
- " }\n",
- " mouse_event_fn(event);\n",
- " });\n",
- "\n",
- " canvas_div.append(canvas);\n",
- " canvas_div.append(rubberband);\n",
- "\n",
- " this.rubberband = rubberband;\n",
- " this.rubberband_canvas = rubberband[0];\n",
- " this.rubberband_context = rubberband[0].getContext(\"2d\");\n",
- " this.rubberband_context.strokeStyle = \"#000000\";\n",
- "\n",
- " this._resize_canvas = function(width, height) {\n",
- " // Keep the size of the canvas, canvas container, and rubber band\n",
- " // canvas in synch.\n",
- " canvas_div.css('width', width)\n",
- " canvas_div.css('height', height)\n",
- "\n",
- " canvas.attr('width', width * mpl.ratio);\n",
- " canvas.attr('height', height * mpl.ratio);\n",
- " canvas.attr('style', 'width: ' + width + 'px; height: ' + height + 'px;');\n",
- "\n",
- " rubberband.attr('width', width);\n",
- " rubberband.attr('height', height);\n",
- " }\n",
- "\n",
- " // Set the figure to an initial 600x600px, this will subsequently be updated\n",
- " // upon first draw.\n",
- " this._resize_canvas(600, 600);\n",
- "\n",
- " // Disable right mouse context menu.\n",
- " $(this.rubberband_canvas).bind(\"contextmenu\",function(e){\n",
- " return false;\n",
- " });\n",
- "\n",
- " function set_focus () {\n",
- " canvas.focus();\n",
- " canvas_div.focus();\n",
- " }\n",
- "\n",
- " window.setTimeout(set_focus, 100);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_toolbar = function() {\n",
- " var fig = this;\n",
- "\n",
- " var nav_element = $('<div/>');\n",
- " nav_element.attr('style', 'width: 100%');\n",
- " this.root.append(nav_element);\n",
- "\n",
- " // Define a callback function for later on.\n",
- " function toolbar_event(event) {\n",
- " return fig.toolbar_button_onclick(event['data']);\n",
- " }\n",
- " function toolbar_mouse_event(event) {\n",
- " return fig.toolbar_button_onmouseover(event['data']);\n",
- " }\n",
- "\n",
- " for(var toolbar_ind in mpl.toolbar_items) {\n",
- " var name = mpl.toolbar_items[toolbar_ind][0];\n",
- " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n",
- " var image = mpl.toolbar_items[toolbar_ind][2];\n",
- " var method_name = mpl.toolbar_items[toolbar_ind][3];\n",
- "\n",
- " if (!name) {\n",
- " // put a spacer in here.\n",
- " continue;\n",
- " }\n",
- " var button = $('<button/>');\n",
- " button.addClass('ui-button ui-widget ui-state-default ui-corner-all ' +\n",
- " 'ui-button-icon-only');\n",
- " button.attr('role', 'button');\n",
- " button.attr('aria-disabled', 'false');\n",
- " button.click(method_name, toolbar_event);\n",
- " button.mouseover(tooltip, toolbar_mouse_event);\n",
- "\n",
- " var icon_img = $('<span/>');\n",
- " icon_img.addClass('ui-button-icon-primary ui-icon');\n",
- " icon_img.addClass(image);\n",
- " icon_img.addClass('ui-corner-all');\n",
- "\n",
- " var tooltip_span = $('<span/>');\n",
- " tooltip_span.addClass('ui-button-text');\n",
- " tooltip_span.html(tooltip);\n",
- "\n",
- " button.append(icon_img);\n",
- " button.append(tooltip_span);\n",
- "\n",
- " nav_element.append(button);\n",
- " }\n",
- "\n",
- " var fmt_picker_span = $('<span/>');\n",
- "\n",
- " var fmt_picker = $('<select/>');\n",
- " fmt_picker.addClass('mpl-toolbar-option ui-widget ui-widget-content');\n",
- " fmt_picker_span.append(fmt_picker);\n",
- " nav_element.append(fmt_picker_span);\n",
- " this.format_dropdown = fmt_picker[0];\n",
- "\n",
- " for (var ind in mpl.extensions) {\n",
- " var fmt = mpl.extensions[ind];\n",
- " var option = $(\n",
- " '<option/>', {selected: fmt === mpl.default_extension}).html(fmt);\n",
- " fmt_picker.append(option);\n",
- " }\n",
- "\n",
- " // Add hover states to the ui-buttons\n",
- " $( \".ui-button\" ).hover(\n",
- " function() { $(this).addClass(\"ui-state-hover\");},\n",
- " function() { $(this).removeClass(\"ui-state-hover\");}\n",
- " );\n",
- "\n",
- " var status_bar = $('<span class=\"mpl-message\"/>');\n",
- " nav_element.append(status_bar);\n",
- " this.message = status_bar[0];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.request_resize = function(x_pixels, y_pixels) {\n",
- " // Request matplotlib to resize the figure. Matplotlib will then trigger a resize in the client,\n",
- " // which will in turn request a refresh of the image.\n",
- " this.send_message('resize', {'width': x_pixels, 'height': y_pixels});\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.send_message = function(type, properties) {\n",
- " properties['type'] = type;\n",
- " properties['figure_id'] = this.id;\n",
- " this.ws.send(JSON.stringify(properties));\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.send_draw_message = function() {\n",
- " if (!this.waiting) {\n",
- " this.waiting = true;\n",
- " this.ws.send(JSON.stringify({type: \"draw\", figure_id: this.id}));\n",
- " }\n",
- "}\n",
- "\n",
- "\n",
- "mpl.figure.prototype.handle_save = function(fig, msg) {\n",
- " var format_dropdown = fig.format_dropdown;\n",
- " var format = format_dropdown.options[format_dropdown.selectedIndex].value;\n",
- " fig.ondownload(fig, format);\n",
- "}\n",
- "\n",
- "\n",
- "mpl.figure.prototype.handle_resize = function(fig, msg) {\n",
- " var size = msg['size'];\n",
- " if (size[0] != fig.canvas.width || size[1] != fig.canvas.height) {\n",
- " fig._resize_canvas(size[0], size[1]);\n",
- " fig.send_message(\"refresh\", {});\n",
- " };\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_rubberband = function(fig, msg) {\n",
- " var x0 = msg['x0'] / mpl.ratio;\n",
- " var y0 = (fig.canvas.height - msg['y0']) / mpl.ratio;\n",
- " var x1 = msg['x1'] / mpl.ratio;\n",
- " var y1 = (fig.canvas.height - msg['y1']) / mpl.ratio;\n",
- " x0 = Math.floor(x0) + 0.5;\n",
- " y0 = Math.floor(y0) + 0.5;\n",
- " x1 = Math.floor(x1) + 0.5;\n",
- " y1 = Math.floor(y1) + 0.5;\n",
- " var min_x = Math.min(x0, x1);\n",
- " var min_y = Math.min(y0, y1);\n",
- " var width = Math.abs(x1 - x0);\n",
- " var height = Math.abs(y1 - y0);\n",
- "\n",
- " fig.rubberband_context.clearRect(\n",
- " 0, 0, fig.canvas.width / mpl.ratio, fig.canvas.height / mpl.ratio);\n",
- "\n",
- " fig.rubberband_context.strokeRect(min_x, min_y, width, height);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_figure_label = function(fig, msg) {\n",
- " // Updates the figure title.\n",
- " fig.header.textContent = msg['label'];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_cursor = function(fig, msg) {\n",
- " var cursor = msg['cursor'];\n",
- " switch(cursor)\n",
- " {\n",
- " case 0:\n",
- " cursor = 'pointer';\n",
- " break;\n",
- " case 1:\n",
- " cursor = 'default';\n",
- " break;\n",
- " case 2:\n",
- " cursor = 'crosshair';\n",
- " break;\n",
- " case 3:\n",
- " cursor = 'move';\n",
- " break;\n",
- " }\n",
- " fig.rubberband_canvas.style.cursor = cursor;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_message = function(fig, msg) {\n",
- " fig.message.textContent = msg['message'];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_draw = function(fig, msg) {\n",
- " // Request the server to send over a new figure.\n",
- " fig.send_draw_message();\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_image_mode = function(fig, msg) {\n",
- " fig.image_mode = msg['mode'];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.updated_canvas_event = function() {\n",
- " // Called whenever the canvas gets updated.\n",
- " this.send_message(\"ack\", {});\n",
- "}\n",
- "\n",
- "// A function to construct a web socket function for onmessage handling.\n",
- "// Called in the figure constructor.\n",
- "mpl.figure.prototype._make_on_message_function = function(fig) {\n",
- " return function socket_on_message(evt) {\n",
- " if (evt.data instanceof Blob) {\n",
- " /* FIXME: We get \"Resource interpreted as Image but\n",
- " * transferred with MIME type text/plain:\" errors on\n",
- " * Chrome. But how to set the MIME type? It doesn't seem\n",
- " * to be part of the websocket stream */\n",
- " evt.data.type = \"image/png\";\n",
- "\n",
- " /* Free the memory for the previous frames */\n",
- " if (fig.imageObj.src) {\n",
- " (window.URL || window.webkitURL).revokeObjectURL(\n",
- " fig.imageObj.src);\n",
- " }\n",
- "\n",
- " fig.imageObj.src = (window.URL || window.webkitURL).createObjectURL(\n",
- " evt.data);\n",
- " fig.updated_canvas_event();\n",
- " fig.waiting = false;\n",
- " return;\n",
- " }\n",
- " else if (typeof evt.data === 'string' && evt.data.slice(0, 21) == \"data:image/png;base64\") {\n",
- " fig.imageObj.src = evt.data;\n",
- " fig.updated_canvas_event();\n",
- " fig.waiting = false;\n",
- " return;\n",
- " }\n",
- "\n",
- " var msg = JSON.parse(evt.data);\n",
- " var msg_type = msg['type'];\n",
- "\n",
- " // Call the \"handle_{type}\" callback, which takes\n",
- " // the figure and JSON message as its only arguments.\n",
- " try {\n",
- " var callback = fig[\"handle_\" + msg_type];\n",
- " } catch (e) {\n",
- " console.log(\"No handler for the '\" + msg_type + \"' message type: \", msg);\n",
- " return;\n",
- " }\n",
- "\n",
- " if (callback) {\n",
- " try {\n",
- " // console.log(\"Handling '\" + msg_type + \"' message: \", msg);\n",
- " callback(fig, msg);\n",
- " } catch (e) {\n",
- " console.log(\"Exception inside the 'handler_\" + msg_type + \"' callback:\", e, e.stack, msg);\n",
- " }\n",
- " }\n",
- " };\n",
- "}\n",
- "\n",
- "// from http://stackoverflow.com/questions/1114465/getting-mouse-location-in-canvas\n",
- "mpl.findpos = function(e) {\n",
- " //this section is from http://www.quirksmode.org/js/events_properties.html\n",
- " var targ;\n",
- " if (!e)\n",
- " e = window.event;\n",
- " if (e.target)\n",
- " targ = e.target;\n",
- " else if (e.srcElement)\n",
- " targ = e.srcElement;\n",
- " if (targ.nodeType == 3) // defeat Safari bug\n",
- " targ = targ.parentNode;\n",
- "\n",
- " // jQuery normalizes the pageX and pageY\n",
- " // pageX,Y are the mouse positions relative to the document\n",
- " // offset() returns the position of the element relative to the document\n",
- " var x = e.pageX - $(targ).offset().left;\n",
- " var y = e.pageY - $(targ).offset().top;\n",
- "\n",
- " return {\"x\": x, \"y\": y};\n",
- "};\n",
- "\n",
- "/*\n",
- " * return a copy of an object with only non-object keys\n",
- " * we need this to avoid circular references\n",
- " * http://stackoverflow.com/a/24161582/3208463\n",
- " */\n",
- "function simpleKeys (original) {\n",
- " return Object.keys(original).reduce(function (obj, key) {\n",
- " if (typeof original[key] !== 'object')\n",
- " obj[key] = original[key]\n",
- " return obj;\n",
- " }, {});\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.mouse_event = function(event, name) {\n",
- " var canvas_pos = mpl.findpos(event)\n",
- "\n",
- " if (name === 'button_press')\n",
- " {\n",
- " this.canvas.focus();\n",
- " this.canvas_div.focus();\n",
- " }\n",
- "\n",
- " var x = canvas_pos.x * mpl.ratio;\n",
- " var y = canvas_pos.y * mpl.ratio;\n",
- "\n",
- " this.send_message(name, {x: x, y: y, button: event.button,\n",
- " step: event.step,\n",
- " guiEvent: simpleKeys(event)});\n",
- "\n",
- " /* This prevents the web browser from automatically changing to\n",
- " * the text insertion cursor when the button is pressed. We want\n",
- " * to control all of the cursor setting manually through the\n",
- " * 'cursor' event from matplotlib */\n",
- " event.preventDefault();\n",
- " return false;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._key_event_extra = function(event, name) {\n",
- " // Handle any extra behaviour associated with a key event\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.key_event = function(event, name) {\n",
- "\n",
- " // Prevent repeat events\n",
- " if (name == 'key_press')\n",
- " {\n",
- " if (event.which === this._key)\n",
- " return;\n",
- " else\n",
- " this._key = event.which;\n",
- " }\n",
- " if (name == 'key_release')\n",
- " this._key = null;\n",
- "\n",
- " var value = '';\n",
- " if (event.ctrlKey && event.which != 17)\n",
- " value += \"ctrl+\";\n",
- " if (event.altKey && event.which != 18)\n",
- " value += \"alt+\";\n",
- " if (event.shiftKey && event.which != 16)\n",
- " value += \"shift+\";\n",
- "\n",
- " value += 'k';\n",
- " value += event.which.toString();\n",
- "\n",
- " this._key_event_extra(event, name);\n",
- "\n",
- " this.send_message(name, {key: value,\n",
- " guiEvent: simpleKeys(event)});\n",
- " return false;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.toolbar_button_onclick = function(name) {\n",
- " if (name == 'download') {\n",
- " this.handle_save(this, null);\n",
- " } else {\n",
- " this.send_message(\"toolbar_button\", {name: name});\n",
- " }\n",
- "};\n",
- "\n",
- "mpl.figure.prototype.toolbar_button_onmouseover = function(tooltip) {\n",
- " this.message.textContent = tooltip;\n",
- "};\n",
- "mpl.toolbar_items = [[\"Home\", \"Reset original view\", \"fa fa-home icon-home\", \"home\"], [\"Back\", \"Back to previous view\", \"fa fa-arrow-left icon-arrow-left\", \"back\"], [\"Forward\", \"Forward to next view\", \"fa fa-arrow-right icon-arrow-right\", \"forward\"], [\"\", \"\", \"\", \"\"], [\"Pan\", \"Pan axes with left mouse, zoom with right\", \"fa fa-arrows icon-move\", \"pan\"], [\"Zoom\", \"Zoom to rectangle\", \"fa fa-square-o icon-check-empty\", \"zoom\"], [\"\", \"\", \"\", \"\"], [\"Download\", \"Download plot\", \"fa fa-floppy-o icon-save\", \"download\"]];\n",
- "\n",
- "mpl.extensions = [\"eps\", \"pdf\", \"png\", \"ps\", \"raw\", \"svg\"];\n",
- "\n",
- "mpl.default_extension = \"png\";var comm_websocket_adapter = function(comm) {\n",
- " // Create a \"websocket\"-like object which calls the given IPython comm\n",
- " // object with the appropriate methods. Currently this is a non binary\n",
- " // socket, so there is still some room for performance tuning.\n",
- " var ws = {};\n",
- "\n",
- " ws.close = function() {\n",
- " comm.close()\n",
- " };\n",
- " ws.send = function(m) {\n",
- " //console.log('sending', m);\n",
- " comm.send(m);\n",
- " };\n",
- " // Register the callback with on_msg.\n",
- " comm.on_msg(function(msg) {\n",
- " //console.log('receiving', msg['content']['data'], msg);\n",
- " // Pass the mpl event to the overridden (by mpl) onmessage function.\n",
- " ws.onmessage(msg['content']['data'])\n",
- " });\n",
- " return ws;\n",
- "}\n",
- "\n",
- "mpl.mpl_figure_comm = function(comm, msg) {\n",
- " // This is the function which gets called when the mpl process\n",
- " // starts-up an IPython Comm through the \"matplotlib\" channel.\n",
- "\n",
- " var id = msg.content.data.id;\n",
- " // Get hold of the div created by the display call when the Comm\n",
- " // socket was opened in Python.\n",
- " var element = $(\"#\" + id);\n",
- " var ws_proxy = comm_websocket_adapter(comm)\n",
- "\n",
- " function ondownload(figure, format) {\n",
- " window.open(figure.imageObj.src);\n",
- " }\n",
- "\n",
- " var fig = new mpl.figure(id, ws_proxy,\n",
- " ondownload,\n",
- " element.get(0));\n",
- "\n",
- " // Call onopen now - mpl needs it, as it is assuming we've passed it a real\n",
- " // web socket which is closed, not our websocket->open comm proxy.\n",
- " ws_proxy.onopen();\n",
- "\n",
- " fig.parent_element = element.get(0);\n",
- " fig.cell_info = mpl.find_output_cell(\"<div id='\" + id + \"'></div>\");\n",
- " if (!fig.cell_info) {\n",
- " console.error(\"Failed to find cell for figure\", id, fig);\n",
- " return;\n",
- " }\n",
- "\n",
- " var output_index = fig.cell_info[2]\n",
- " var cell = fig.cell_info[0];\n",
- "\n",
- "};\n",
- "\n",
- "mpl.figure.prototype.handle_close = function(fig, msg) {\n",
- " var width = fig.canvas.width/mpl.ratio\n",
- " fig.root.unbind('remove')\n",
- "\n",
- " // Update the output cell to use the data from the current canvas.\n",
- " fig.push_to_output();\n",
- " var dataURL = fig.canvas.toDataURL();\n",
- " // Re-enable the keyboard manager in IPython - without this line, in FF,\n",
- " // the notebook keyboard shortcuts fail.\n",
- " IPython.keyboard_manager.enable()\n",
- " $(fig.parent_element).html('<img src=\"' + dataURL + '\" width=\"' + width + '\">');\n",
- " fig.close_ws(fig, msg);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.close_ws = function(fig, msg){\n",
- " fig.send_message('closing', msg);\n",
- " // fig.ws.close()\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.push_to_output = function(remove_interactive) {\n",
- " // Turn the data on the canvas into data in the output cell.\n",
- " var width = this.canvas.width/mpl.ratio\n",
- " var dataURL = this.canvas.toDataURL();\n",
- " this.cell_info[1]['text/html'] = '<img src=\"' + dataURL + '\" width=\"' + width + '\">';\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.updated_canvas_event = function() {\n",
- " // Tell IPython that the notebook contents must change.\n",
- " IPython.notebook.set_dirty(true);\n",
- " this.send_message(\"ack\", {});\n",
- " var fig = this;\n",
- " // Wait a second, then push the new image to the DOM so\n",
- " // that it is saved nicely (might be nice to debounce this).\n",
- " setTimeout(function () { fig.push_to_output() }, 1000);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_toolbar = function() {\n",
- " var fig = this;\n",
- "\n",
- " var nav_element = $('<div/>');\n",
- " nav_element.attr('style', 'width: 100%');\n",
- " this.root.append(nav_element);\n",
- "\n",
- " // Define a callback function for later on.\n",
- " function toolbar_event(event) {\n",
- " return fig.toolbar_button_onclick(event['data']);\n",
- " }\n",
- " function toolbar_mouse_event(event) {\n",
- " return fig.toolbar_button_onmouseover(event['data']);\n",
- " }\n",
- "\n",
- " for(var toolbar_ind in mpl.toolbar_items){\n",
- " var name = mpl.toolbar_items[toolbar_ind][0];\n",
- " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n",
- " var image = mpl.toolbar_items[toolbar_ind][2];\n",
- " var method_name = mpl.toolbar_items[toolbar_ind][3];\n",
- "\n",
- " if (!name) { continue; };\n",
- "\n",
- " var button = $('<button class=\"btn btn-default\" href=\"#\" title=\"' + name + '\"><i class=\"fa ' + image + ' fa-lg\"></i></button>');\n",
- " button.click(method_name, toolbar_event);\n",
- " button.mouseover(tooltip, toolbar_mouse_event);\n",
- " nav_element.append(button);\n",
- " }\n",
- "\n",
- " // Add the status bar.\n",
- " var status_bar = $('<span class=\"mpl-message\" style=\"text-align:right; float: right;\"/>');\n",
- " nav_element.append(status_bar);\n",
- " this.message = status_bar[0];\n",
- "\n",
- " // Add the close button to the window.\n",
- " var buttongrp = $('<div class=\"btn-group inline pull-right\"></div>');\n",
- " var button = $('<button class=\"btn btn-mini btn-primary\" href=\"#\" title=\"Stop Interaction\"><i class=\"fa fa-power-off icon-remove icon-large\"></i></button>');\n",
- " button.click(function (evt) { fig.handle_close(fig, {}); } );\n",
- " button.mouseover('Stop Interaction', toolbar_mouse_event);\n",
- " buttongrp.append(button);\n",
- " var titlebar = this.root.find($('.ui-dialog-titlebar'));\n",
- " titlebar.prepend(buttongrp);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._root_extra_style = function(el){\n",
- " var fig = this\n",
- " el.on(\"remove\", function(){\n",
- "\tfig.close_ws(fig, {});\n",
- " });\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._canvas_extra_style = function(el){\n",
- " // this is important to make the div 'focusable\n",
- " el.attr('tabindex', 0)\n",
- " // reach out to IPython and tell the keyboard manager to turn it's self\n",
- " // off when our div gets focus\n",
- "\n",
- " // location in version 3\n",
- " if (IPython.notebook.keyboard_manager) {\n",
- " IPython.notebook.keyboard_manager.register_events(el);\n",
- " }\n",
- " else {\n",
- " // location in version 2\n",
- " IPython.keyboard_manager.register_events(el);\n",
- " }\n",
- "\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._key_event_extra = function(event, name) {\n",
- " var manager = IPython.notebook.keyboard_manager;\n",
- " if (!manager)\n",
- " manager = IPython.keyboard_manager;\n",
- "\n",
- " // Check for shift+enter\n",
- " if (event.shiftKey && event.which == 13) {\n",
- " this.canvas_div.blur();\n",
- " // select the cell after this one\n",
- " var index = IPython.notebook.find_cell_index(this.cell_info[0]);\n",
- " IPython.notebook.select(index + 1);\n",
- " }\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_save = function(fig, msg) {\n",
- " fig.ondownload(fig, null);\n",
- "}\n",
- "\n",
- "\n",
- "mpl.find_output_cell = function(html_output) {\n",
- " // Return the cell and output element which can be found *uniquely* in the notebook.\n",
- " // Note - this is a bit hacky, but it is done because the \"notebook_saving.Notebook\"\n",
- " // IPython event is triggered only after the cells have been serialised, which for\n",
- " // our purposes (turning an active figure into a static one), is too late.\n",
- " var cells = IPython.notebook.get_cells();\n",
- " var ncells = cells.length;\n",
- " for (var i=0; i<ncells; i++) {\n",
- " var cell = cells[i];\n",
- " if (cell.cell_type === 'code'){\n",
- " for (var j=0; j<cell.output_area.outputs.length; j++) {\n",
- " var data = cell.output_area.outputs[j];\n",
- " if (data.data) {\n",
- " // IPython >= 3 moved mimebundle to data attribute of output\n",
- " data = data.data;\n",
- " }\n",
- " if (data['text/html'] == html_output) {\n",
- " return [cell, data, j];\n",
- " }\n",
- " }\n",
- " }\n",
- " }\n",
- "}\n",
- "\n",
- "// Register the function which deals with the matplotlib target/channel.\n",
- "// The kernel may be null if the page has been refreshed.\n",
- "if (IPython.notebook.kernel != null) {\n",
- " IPython.notebook.kernel.comm_manager.register_target('matplotlib', mpl.mpl_figure_comm);\n",
- "}\n"
- ],
- "text/plain": [
- "<IPython.core.display.Javascript object>"
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- },
- {
- "data": {
- "text/html": [
- "<img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA4QAAAMgCAYAAAB7w6zDAAAgAElEQVR4nOzde5Td873/8e9M5J6QIIkIkspSl9JQThvKiVZd6lKXoy5Vh5ZD0RbHcTlWNfyU1lG02oPSI65VVRUcGqJubd1SjnLcFZH2pyhN2mgSIe/fH36zmzEzyUxsn8nn83081nqt1e7MbN9kz853P2fv2akCAACAWqp6+wAAAADoHYIQAACgpgQhAABATQlCAACAmhKEAAAANSUIAQAAakoQAgAA1JQgBAAAqClBCAAAUFOCEAAAoKYEIQAAQE0JQgAAgJoShAAAADUlCAEAAGpKEAIAANSUIAQAAKgpQQgAAFBTghAAAKCmBCEAAEBNCUIAAICaEoQAAAA1JQgBAABqShACAADUlCAEAACoKUEIAABQU4IQAACgpgQhAABATQlCAACAmhKEAAAANSUIAQAAakoQAgAA1JQgBAAAqClBCAAAUFOCEAAAoKYEIQAAQE0JQgAAgJoShAAAADUlCAEAAGpKEAIAANSUIAQAAKgpQQgAAFBTghAAAKCmBCEAAEBNCUIAAICaEoQAAAA1JQgBAABqShACAADUlCAEAACoKUEIAABQU4IQAACgpgQhAABATQlCAACAmhKEAAAANSUIAQAAakoQAgAA1JQgBAAAqClBCAAAUFOCEAAAoKYEIQAAQE0JQgAAgJoShAAAADUlCAEAAGpKEAIAANSUIAQAAKgpQQgAAFBTghAAAKCmBCEAAEBNCUIAAICaEoQAAAA1JQgBAABqShACAADUlCAEAACoKUEIAABQU4IQAACgpgQhtfPnP/85JkyY0Ng666wTffr0iddee623Dw0AAJIShNTemWeeGTvvvHNvH0a3TZkyJaqqaqx///4xatSo2HrrreP000+Pl19+ubcPsVvGjh0bBxxwQG8fRjYOOOCAGDt27DJ97pVXXhnnnHNOcw/o/3s/b8e2r/Xnn3++cVlXv5fnn38+qqqKM888c5n+W3fccUdUVRXXXHNNp79+xBFHRFVV7Y5raWu7vSZPnhxVVUVLS0v87ne/63Ddc+fOjaFDh0ZVVe3+LN/L72nSpEnxoQ99qNNfe/XVV6Oqqpg8eXLjsnf/nvr06ROrrbZa7L333vH000/36PqXRWe3dXfddNNN7X4vzXbKKafE+uuvH2+//XZE9Ox2WdKxnXbaaXHdddc181CXye677x6f+cxn2l322muvxQorrBA/+9nPIuL9OdbbbrstNt100xg0aFBUVRXXXXddp18Hn//852PXXXdt6n8baE8QUnsbbLDBcnFS7q62E+aUKVPi3nvvjbvvvjt++tOfxlFHHRUrrbRSrLzyyjF9+vTePsyleuihh+LZZ5/t7cPIxrPPPhsPPfTQMn3uTjvttMwxuTTvZxC+8sorce+998b8+fMbl3X1e0kZhG3Htfiqqoo999yz3WVtt1dbEA4dOjS+9rWvdbjuKVOmxIABA6Jv3769HoRtf6/ccccd8Y1vfCMGDhwYI0eOjNdff73b178s3ksQLn7bNNsf/vCHGDx4cLuvi57cLks6tsGDB/f6N8Xmzp0bAwcOjEsvvbTd5RdffHEMGjQo/va3v0VE84910aJFsfLKK8fEiRPjtttui3vvvTdef/31Tu/zzz77bKywwgrxi1/8omn/faA9QUit3XPPPTFq1KhYuHBhbx9Kt7U9cJoxY0aHX5s5c2asueaaMXTo0PjjH//YC0fH8ijXIOzM8hCEnamqKo444ohOf60tCA8++OBYc801G880tdlyyy1j33337fCguzeC8N1/r5xyyilRVVVcfPHF3b7+ZbG8BuFxxx0XY8aMaXeblRSEP/nJT6Jv374dgn/HHXeMPffcs/H/m32sv//976OqqjjjjDO69fE777xzbLvttk377wPtCUJq7eCDD45jjz22tw+jR5YUhBHvnOCrqopTTjml3eXXX399TJw4MQYOHBhDhgyJT33qU3HPPfe0+5i2B66//e1vY88994wVV1wxhg8fHkcffXQsXLgwnnzyydh+++1jyJAhMXbs2A4n83nz5sW//uu/xoQJExqfO3HixJg6dWqH43x3SLQ9IP/Rj34UJ554YowePTqGDh0a22yzTTz55JPtPvehhx6KnXbaKUaMGBH9+vWL0aNHx4477hizZs1a4p/drbfeGp/5zGdizJgx0b9//xg/fnwccsgh8eqrr7b7uFdeeSX+5V/+JdZYY43o169frLrqqrHFFlu0e+a1O8cwb968OOGEE2LcuHHRt2/fWH311ePwww+PP//5zx2O7corr4yJEyfG4MGDY/DgwTFhwoT44Q9/2Pj1zl4y+v3vfz+22mqrGDFiRAwaNCg23HDDOOOMM+LNN99sfMykSZM6fTljmwULFsSpp54a6667buP3euCBB8Yrr7zS7r/15ptvxrHHHhujRo2KgQMHxsc//vG4//77uxWEm222Wey4447tLttwww2jqqp44IEHGpdde+21UVVVPPLIIxHRMRKW9HtZ/EH6WWedFePGjYvBgwfHxIkT4957713i8UWkCcJ77rknqqqKadOmNX7tqaeeiqqqYvr06ctlEN50001RVVV885vf7Pb1L829994bW2yxRfTv3z9Gjx4dJ5xwQlx44YUdgvDHP/5xbLvttrHaaqvFgAEDYr311ovjjz8+5s6d2/iYAw44oNOvibbr6c59pCsLFiyIVVZZpcM5ortfa0s6ts4unzRpUkT8/ba49dZb48ADD4zhw4fHoEGDYuedd+7wkuNl/buwzd577x3bb799u8vmzJkT/fr1i6uuuioiYonH+sYbb8QxxxwT48aNi/79+8fw4cNj0003jR/96Edd/jfb7g+dvby6q28MXH311dHS0uJVJfA+EYTUVtvP7TzxxBO9fSg9srQgnDt3bvTp0ye22WabxmVXXnllVFUV2223XUydOjWuvvrq2HTTTaNfv37xy1/+svFxbSfqddddN0499dSYPn16HHfccVFVVXz5y1+O9dZbL84999yYPn16fOELX4iqquLaa69tfP7s2bPjwAMPjMsvvzxuv/32mDZtWvzbv/1btLa2dnhJUldBOG7cuNhvv/3ipptuiquuuirWWmutWGeddeKtt95q/P5WWWWV2GyzzeInP/lJ3HXXXXH11VfHl770pXj88ceX+Gd3/vnnxze/+c244YYb4q677opLL700JkyYEOuuu267B4jbb799jBgxIi688MK48847Y+rUqfH1r389fvzjH3f7GBYtWhTbb799rLDCCnHSSSfFrbfeGt/+9rdj8ODBsckmm7R7SdRJJ50UVVXFHnvsEddcc03ceuutcfbZZ8dJJ53U+JjOgvDoo4+O888/P6ZNmxa33357nHPOObHqqqvGF77whcbHPPbYY/Hxj388VltttXYvZ4yIePvtt2OHHXaIwYMHxymnnBLTp0+PH/7whzFmzJjYYIMNGi8Xa/vvt7S0xLHHHts4vjFjxsSKK6641CA84YQTYsiQIY0/4z/+8Y9RVVUMHDgwTjvttMbHHXbYYTFq1KjG/3/3g8Ml/V7aHmSPGzcudthhh5g6dWpMnTo1Ntpooxg+fHjMnj17icfY9vV39dVXx8KFCzvs8MMPf89B+Oqrr8ZWW20Ve+21V+PXjj/++Bg3blwsWrRouQzC73//+x3u50u7/iV57LHHYtCgQbHBBhvEVVddFddff31sv/32sdZaa3UIgVNPPTXOOeecuOmmm+LOO++MCy64ID7wgQ/EJz7xicbHPPvss7HnnntGVVXtviba7l/duY905e67746qquLmm29ud3l3v9aWdGz33ntvDBw4MHbcccfG5Y899lhE/P22WHPNNeOLX/xi/PznP48LL7wwRo4cGWuuuWbjG0rd/buw7evvjjvuaPf7mDdvXgwZMiQuvPDCdpdfccUV0b9///jLX/4SEbHEYz300ENj0KBBcfbZZ8cdd9wR//3f/x3f+ta34nvf+16Xf66zZs2Kn/3sZ1FVVXzlK19p9/LqroLw5Zdfjqqq4t
- ],
- "text/plain": [
- "<IPython.core.display.HTML object>"
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- },
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "Generating statistics: https://facebook.com\n"
- ]
- },
- {
- "data": {
- "application/javascript": [
- "/* Put everything inside the global mpl namespace */\n",
- "window.mpl = {};\n",
- "\n",
- "\n",
- "mpl.get_websocket_type = function() {\n",
- " if (typeof(WebSocket) !== 'undefined') {\n",
- " return WebSocket;\n",
- " } else if (typeof(MozWebSocket) !== 'undefined') {\n",
- " return MozWebSocket;\n",
- " } else {\n",
- " alert('Your browser does not have WebSocket support. ' +\n",
- " 'Please try Chrome, Safari or Firefox ≥ 6. ' +\n",
- " 'Firefox 4 and 5 are also supported but you ' +\n",
- " 'have to enable WebSockets in about:config.');\n",
- " };\n",
- "}\n",
- "\n",
- "mpl.figure = function(figure_id, websocket, ondownload, parent_element) {\n",
- " this.id = figure_id;\n",
- "\n",
- " this.ws = websocket;\n",
- "\n",
- " this.supports_binary = (this.ws.binaryType != undefined);\n",
- "\n",
- " if (!this.supports_binary) {\n",
- " var warnings = document.getElementById(\"mpl-warnings\");\n",
- " if (warnings) {\n",
- " warnings.style.display = 'block';\n",
- " warnings.textContent = (\n",
- " \"This browser does not support binary websocket messages. \" +\n",
- " \"Performance may be slow.\");\n",
- " }\n",
- " }\n",
- "\n",
- " this.imageObj = new Image();\n",
- "\n",
- " this.context = undefined;\n",
- " this.message = undefined;\n",
- " this.canvas = undefined;\n",
- " this.rubberband_canvas = undefined;\n",
- " this.rubberband_context = undefined;\n",
- " this.format_dropdown = undefined;\n",
- "\n",
- " this.image_mode = 'full';\n",
- "\n",
- " this.root = $('<div/>');\n",
- " this._root_extra_style(this.root)\n",
- " this.root.attr('style', 'display: inline-block');\n",
- "\n",
- " $(parent_element).append(this.root);\n",
- "\n",
- " this._init_header(this);\n",
- " this._init_canvas(this);\n",
- " this._init_toolbar(this);\n",
- "\n",
- " var fig = this;\n",
- "\n",
- " this.waiting = false;\n",
- "\n",
- " this.ws.onopen = function () {\n",
- " fig.send_message(\"supports_binary\", {value: fig.supports_binary});\n",
- " fig.send_message(\"send_image_mode\", {});\n",
- " if (mpl.ratio != 1) {\n",
- " fig.send_message(\"set_dpi_ratio\", {'dpi_ratio': mpl.ratio});\n",
- " }\n",
- " fig.send_message(\"refresh\", {});\n",
- " }\n",
- "\n",
- " this.imageObj.onload = function() {\n",
- " if (fig.image_mode == 'full') {\n",
- " // Full images could contain transparency (where diff images\n",
- " // almost always do), so we need to clear the canvas so that\n",
- " // there is no ghosting.\n",
- " fig.context.clearRect(0, 0, fig.canvas.width, fig.canvas.height);\n",
- " }\n",
- " fig.context.drawImage(fig.imageObj, 0, 0);\n",
- " };\n",
- "\n",
- " this.imageObj.onunload = function() {\n",
- " fig.ws.close();\n",
- " }\n",
- "\n",
- " this.ws.onmessage = this._make_on_message_function(this);\n",
- "\n",
- " this.ondownload = ondownload;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_header = function() {\n",
- " var titlebar = $(\n",
- " '<div class=\"ui-dialog-titlebar ui-widget-header ui-corner-all ' +\n",
- " 'ui-helper-clearfix\"/>');\n",
- " var titletext = $(\n",
- " '<div class=\"ui-dialog-title\" style=\"width: 100%; ' +\n",
- " 'text-align: center; padding: 3px;\"/>');\n",
- " titlebar.append(titletext)\n",
- " this.root.append(titlebar);\n",
- " this.header = titletext[0];\n",
- "}\n",
- "\n",
- "\n",
- "\n",
- "mpl.figure.prototype._canvas_extra_style = function(canvas_div) {\n",
- "\n",
- "}\n",
- "\n",
- "\n",
- "mpl.figure.prototype._root_extra_style = function(canvas_div) {\n",
- "\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_canvas = function() {\n",
- " var fig = this;\n",
- "\n",
- " var canvas_div = $('<div/>');\n",
- "\n",
- " canvas_div.attr('style', 'position: relative; clear: both; outline: 0');\n",
- "\n",
- " function canvas_keyboard_event(event) {\n",
- " return fig.key_event(event, event['data']);\n",
- " }\n",
- "\n",
- " canvas_div.keydown('key_press', canvas_keyboard_event);\n",
- " canvas_div.keyup('key_release', canvas_keyboard_event);\n",
- " this.canvas_div = canvas_div\n",
- " this._canvas_extra_style(canvas_div)\n",
- " this.root.append(canvas_div);\n",
- "\n",
- " var canvas = $('<canvas/>');\n",
- " canvas.addClass('mpl-canvas');\n",
- " canvas.attr('style', \"left: 0; top: 0; z-index: 0; outline: 0\")\n",
- "\n",
- " this.canvas = canvas[0];\n",
- " this.context = canvas[0].getContext(\"2d\");\n",
- "\n",
- " var backingStore = this.context.backingStorePixelRatio ||\n",
- "\tthis.context.webkitBackingStorePixelRatio ||\n",
- "\tthis.context.mozBackingStorePixelRatio ||\n",
- "\tthis.context.msBackingStorePixelRatio ||\n",
- "\tthis.context.oBackingStorePixelRatio ||\n",
- "\tthis.context.backingStorePixelRatio || 1;\n",
- "\n",
- " mpl.ratio = (window.devicePixelRatio || 1) / backingStore;\n",
- "\n",
- " var rubberband = $('<canvas/>');\n",
- " rubberband.attr('style', \"position: absolute; left: 0; top: 0; z-index: 1;\")\n",
- "\n",
- " var pass_mouse_events = true;\n",
- "\n",
- " canvas_div.resizable({\n",
- " start: function(event, ui) {\n",
- " pass_mouse_events = false;\n",
- " },\n",
- " resize: function(event, ui) {\n",
- " fig.request_resize(ui.size.width, ui.size.height);\n",
- " },\n",
- " stop: function(event, ui) {\n",
- " pass_mouse_events = true;\n",
- " fig.request_resize(ui.size.width, ui.size.height);\n",
- " },\n",
- " });\n",
- "\n",
- " function mouse_event_fn(event) {\n",
- " if (pass_mouse_events)\n",
- " return fig.mouse_event(event, event['data']);\n",
- " }\n",
- "\n",
- " rubberband.mousedown('button_press', mouse_event_fn);\n",
- " rubberband.mouseup('button_release', mouse_event_fn);\n",
- " // Throttle sequential mouse events to 1 every 20ms.\n",
- " rubberband.mousemove('motion_notify', mouse_event_fn);\n",
- "\n",
- " rubberband.mouseenter('figure_enter', mouse_event_fn);\n",
- " rubberband.mouseleave('figure_leave', mouse_event_fn);\n",
- "\n",
- " canvas_div.on(\"wheel\", function (event) {\n",
- " event = event.originalEvent;\n",
- " event['data'] = 'scroll'\n",
- " if (event.deltaY < 0) {\n",
- " event.step = 1;\n",
- " } else {\n",
- " event.step = -1;\n",
- " }\n",
- " mouse_event_fn(event);\n",
- " });\n",
- "\n",
- " canvas_div.append(canvas);\n",
- " canvas_div.append(rubberband);\n",
- "\n",
- " this.rubberband = rubberband;\n",
- " this.rubberband_canvas = rubberband[0];\n",
- " this.rubberband_context = rubberband[0].getContext(\"2d\");\n",
- " this.rubberband_context.strokeStyle = \"#000000\";\n",
- "\n",
- " this._resize_canvas = function(width, height) {\n",
- " // Keep the size of the canvas, canvas container, and rubber band\n",
- " // canvas in synch.\n",
- " canvas_div.css('width', width)\n",
- " canvas_div.css('height', height)\n",
- "\n",
- " canvas.attr('width', width * mpl.ratio);\n",
- " canvas.attr('height', height * mpl.ratio);\n",
- " canvas.attr('style', 'width: ' + width + 'px; height: ' + height + 'px;');\n",
- "\n",
- " rubberband.attr('width', width);\n",
- " rubberband.attr('height', height);\n",
- " }\n",
- "\n",
- " // Set the figure to an initial 600x600px, this will subsequently be updated\n",
- " // upon first draw.\n",
- " this._resize_canvas(600, 600);\n",
- "\n",
- " // Disable right mouse context menu.\n",
- " $(this.rubberband_canvas).bind(\"contextmenu\",function(e){\n",
- " return false;\n",
- " });\n",
- "\n",
- " function set_focus () {\n",
- " canvas.focus();\n",
- " canvas_div.focus();\n",
- " }\n",
- "\n",
- " window.setTimeout(set_focus, 100);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_toolbar = function() {\n",
- " var fig = this;\n",
- "\n",
- " var nav_element = $('<div/>');\n",
- " nav_element.attr('style', 'width: 100%');\n",
- " this.root.append(nav_element);\n",
- "\n",
- " // Define a callback function for later on.\n",
- " function toolbar_event(event) {\n",
- " return fig.toolbar_button_onclick(event['data']);\n",
- " }\n",
- " function toolbar_mouse_event(event) {\n",
- " return fig.toolbar_button_onmouseover(event['data']);\n",
- " }\n",
- "\n",
- " for(var toolbar_ind in mpl.toolbar_items) {\n",
- " var name = mpl.toolbar_items[toolbar_ind][0];\n",
- " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n",
- " var image = mpl.toolbar_items[toolbar_ind][2];\n",
- " var method_name = mpl.toolbar_items[toolbar_ind][3];\n",
- "\n",
- " if (!name) {\n",
- " // put a spacer in here.\n",
- " continue;\n",
- " }\n",
- " var button = $('<button/>');\n",
- " button.addClass('ui-button ui-widget ui-state-default ui-corner-all ' +\n",
- " 'ui-button-icon-only');\n",
- " button.attr('role', 'button');\n",
- " button.attr('aria-disabled', 'false');\n",
- " button.click(method_name, toolbar_event);\n",
- " button.mouseover(tooltip, toolbar_mouse_event);\n",
- "\n",
- " var icon_img = $('<span/>');\n",
- " icon_img.addClass('ui-button-icon-primary ui-icon');\n",
- " icon_img.addClass(image);\n",
- " icon_img.addClass('ui-corner-all');\n",
- "\n",
- " var tooltip_span = $('<span/>');\n",
- " tooltip_span.addClass('ui-button-text');\n",
- " tooltip_span.html(tooltip);\n",
- "\n",
- " button.append(icon_img);\n",
- " button.append(tooltip_span);\n",
- "\n",
- " nav_element.append(button);\n",
- " }\n",
- "\n",
- " var fmt_picker_span = $('<span/>');\n",
- "\n",
- " var fmt_picker = $('<select/>');\n",
- " fmt_picker.addClass('mpl-toolbar-option ui-widget ui-widget-content');\n",
- " fmt_picker_span.append(fmt_picker);\n",
- " nav_element.append(fmt_picker_span);\n",
- " this.format_dropdown = fmt_picker[0];\n",
- "\n",
- " for (var ind in mpl.extensions) {\n",
- " var fmt = mpl.extensions[ind];\n",
- " var option = $(\n",
- " '<option/>', {selected: fmt === mpl.default_extension}).html(fmt);\n",
- " fmt_picker.append(option);\n",
- " }\n",
- "\n",
- " // Add hover states to the ui-buttons\n",
- " $( \".ui-button\" ).hover(\n",
- " function() { $(this).addClass(\"ui-state-hover\");},\n",
- " function() { $(this).removeClass(\"ui-state-hover\");}\n",
- " );\n",
- "\n",
- " var status_bar = $('<span class=\"mpl-message\"/>');\n",
- " nav_element.append(status_bar);\n",
- " this.message = status_bar[0];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.request_resize = function(x_pixels, y_pixels) {\n",
- " // Request matplotlib to resize the figure. Matplotlib will then trigger a resize in the client,\n",
- " // which will in turn request a refresh of the image.\n",
- " this.send_message('resize', {'width': x_pixels, 'height': y_pixels});\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.send_message = function(type, properties) {\n",
- " properties['type'] = type;\n",
- " properties['figure_id'] = this.id;\n",
- " this.ws.send(JSON.stringify(properties));\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.send_draw_message = function() {\n",
- " if (!this.waiting) {\n",
- " this.waiting = true;\n",
- " this.ws.send(JSON.stringify({type: \"draw\", figure_id: this.id}));\n",
- " }\n",
- "}\n",
- "\n",
- "\n",
- "mpl.figure.prototype.handle_save = function(fig, msg) {\n",
- " var format_dropdown = fig.format_dropdown;\n",
- " var format = format_dropdown.options[format_dropdown.selectedIndex].value;\n",
- " fig.ondownload(fig, format);\n",
- "}\n",
- "\n",
- "\n",
- "mpl.figure.prototype.handle_resize = function(fig, msg) {\n",
- " var size = msg['size'];\n",
- " if (size[0] != fig.canvas.width || size[1] != fig.canvas.height) {\n",
- " fig._resize_canvas(size[0], size[1]);\n",
- " fig.send_message(\"refresh\", {});\n",
- " };\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_rubberband = function(fig, msg) {\n",
- " var x0 = msg['x0'] / mpl.ratio;\n",
- " var y0 = (fig.canvas.height - msg['y0']) / mpl.ratio;\n",
- " var x1 = msg['x1'] / mpl.ratio;\n",
- " var y1 = (fig.canvas.height - msg['y1']) / mpl.ratio;\n",
- " x0 = Math.floor(x0) + 0.5;\n",
- " y0 = Math.floor(y0) + 0.5;\n",
- " x1 = Math.floor(x1) + 0.5;\n",
- " y1 = Math.floor(y1) + 0.5;\n",
- " var min_x = Math.min(x0, x1);\n",
- " var min_y = Math.min(y0, y1);\n",
- " var width = Math.abs(x1 - x0);\n",
- " var height = Math.abs(y1 - y0);\n",
- "\n",
- " fig.rubberband_context.clearRect(\n",
- " 0, 0, fig.canvas.width / mpl.ratio, fig.canvas.height / mpl.ratio);\n",
- "\n",
- " fig.rubberband_context.strokeRect(min_x, min_y, width, height);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_figure_label = function(fig, msg) {\n",
- " // Updates the figure title.\n",
- " fig.header.textContent = msg['label'];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_cursor = function(fig, msg) {\n",
- " var cursor = msg['cursor'];\n",
- " switch(cursor)\n",
- " {\n",
- " case 0:\n",
- " cursor = 'pointer';\n",
- " break;\n",
- " case 1:\n",
- " cursor = 'default';\n",
- " break;\n",
- " case 2:\n",
- " cursor = 'crosshair';\n",
- " break;\n",
- " case 3:\n",
- " cursor = 'move';\n",
- " break;\n",
- " }\n",
- " fig.rubberband_canvas.style.cursor = cursor;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_message = function(fig, msg) {\n",
- " fig.message.textContent = msg['message'];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_draw = function(fig, msg) {\n",
- " // Request the server to send over a new figure.\n",
- " fig.send_draw_message();\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_image_mode = function(fig, msg) {\n",
- " fig.image_mode = msg['mode'];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.updated_canvas_event = function() {\n",
- " // Called whenever the canvas gets updated.\n",
- " this.send_message(\"ack\", {});\n",
- "}\n",
- "\n",
- "// A function to construct a web socket function for onmessage handling.\n",
- "// Called in the figure constructor.\n",
- "mpl.figure.prototype._make_on_message_function = function(fig) {\n",
- " return function socket_on_message(evt) {\n",
- " if (evt.data instanceof Blob) {\n",
- " /* FIXME: We get \"Resource interpreted as Image but\n",
- " * transferred with MIME type text/plain:\" errors on\n",
- " * Chrome. But how to set the MIME type? It doesn't seem\n",
- " * to be part of the websocket stream */\n",
- " evt.data.type = \"image/png\";\n",
- "\n",
- " /* Free the memory for the previous frames */\n",
- " if (fig.imageObj.src) {\n",
- " (window.URL || window.webkitURL).revokeObjectURL(\n",
- " fig.imageObj.src);\n",
- " }\n",
- "\n",
- " fig.imageObj.src = (window.URL || window.webkitURL).createObjectURL(\n",
- " evt.data);\n",
- " fig.updated_canvas_event();\n",
- " fig.waiting = false;\n",
- " return;\n",
- " }\n",
- " else if (typeof evt.data === 'string' && evt.data.slice(0, 21) == \"data:image/png;base64\") {\n",
- " fig.imageObj.src = evt.data;\n",
- " fig.updated_canvas_event();\n",
- " fig.waiting = false;\n",
- " return;\n",
- " }\n",
- "\n",
- " var msg = JSON.parse(evt.data);\n",
- " var msg_type = msg['type'];\n",
- "\n",
- " // Call the \"handle_{type}\" callback, which takes\n",
- " // the figure and JSON message as its only arguments.\n",
- " try {\n",
- " var callback = fig[\"handle_\" + msg_type];\n",
- " } catch (e) {\n",
- " console.log(\"No handler for the '\" + msg_type + \"' message type: \", msg);\n",
- " return;\n",
- " }\n",
- "\n",
- " if (callback) {\n",
- " try {\n",
- " // console.log(\"Handling '\" + msg_type + \"' message: \", msg);\n",
- " callback(fig, msg);\n",
- " } catch (e) {\n",
- " console.log(\"Exception inside the 'handler_\" + msg_type + \"' callback:\", e, e.stack, msg);\n",
- " }\n",
- " }\n",
- " };\n",
- "}\n",
- "\n",
- "// from http://stackoverflow.com/questions/1114465/getting-mouse-location-in-canvas\n",
- "mpl.findpos = function(e) {\n",
- " //this section is from http://www.quirksmode.org/js/events_properties.html\n",
- " var targ;\n",
- " if (!e)\n",
- " e = window.event;\n",
- " if (e.target)\n",
- " targ = e.target;\n",
- " else if (e.srcElement)\n",
- " targ = e.srcElement;\n",
- " if (targ.nodeType == 3) // defeat Safari bug\n",
- " targ = targ.parentNode;\n",
- "\n",
- " // jQuery normalizes the pageX and pageY\n",
- " // pageX,Y are the mouse positions relative to the document\n",
- " // offset() returns the position of the element relative to the document\n",
- " var x = e.pageX - $(targ).offset().left;\n",
- " var y = e.pageY - $(targ).offset().top;\n",
- "\n",
- " return {\"x\": x, \"y\": y};\n",
- "};\n",
- "\n",
- "/*\n",
- " * return a copy of an object with only non-object keys\n",
- " * we need this to avoid circular references\n",
- " * http://stackoverflow.com/a/24161582/3208463\n",
- " */\n",
- "function simpleKeys (original) {\n",
- " return Object.keys(original).reduce(function (obj, key) {\n",
- " if (typeof original[key] !== 'object')\n",
- " obj[key] = original[key]\n",
- " return obj;\n",
- " }, {});\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.mouse_event = function(event, name) {\n",
- " var canvas_pos = mpl.findpos(event)\n",
- "\n",
- " if (name === 'button_press')\n",
- " {\n",
- " this.canvas.focus();\n",
- " this.canvas_div.focus();\n",
- " }\n",
- "\n",
- " var x = canvas_pos.x * mpl.ratio;\n",
- " var y = canvas_pos.y * mpl.ratio;\n",
- "\n",
- " this.send_message(name, {x: x, y: y, button: event.button,\n",
- " step: event.step,\n",
- " guiEvent: simpleKeys(event)});\n",
- "\n",
- " /* This prevents the web browser from automatically changing to\n",
- " * the text insertion cursor when the button is pressed. We want\n",
- " * to control all of the cursor setting manually through the\n",
- " * 'cursor' event from matplotlib */\n",
- " event.preventDefault();\n",
- " return false;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._key_event_extra = function(event, name) {\n",
- " // Handle any extra behaviour associated with a key event\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.key_event = function(event, name) {\n",
- "\n",
- " // Prevent repeat events\n",
- " if (name == 'key_press')\n",
- " {\n",
- " if (event.which === this._key)\n",
- " return;\n",
- " else\n",
- " this._key = event.which;\n",
- " }\n",
- " if (name == 'key_release')\n",
- " this._key = null;\n",
- "\n",
- " var value = '';\n",
- " if (event.ctrlKey && event.which != 17)\n",
- " value += \"ctrl+\";\n",
- " if (event.altKey && event.which != 18)\n",
- " value += \"alt+\";\n",
- " if (event.shiftKey && event.which != 16)\n",
- " value += \"shift+\";\n",
- "\n",
- " value += 'k';\n",
- " value += event.which.toString();\n",
- "\n",
- " this._key_event_extra(event, name);\n",
- "\n",
- " this.send_message(name, {key: value,\n",
- " guiEvent: simpleKeys(event)});\n",
- " return false;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.toolbar_button_onclick = function(name) {\n",
- " if (name == 'download') {\n",
- " this.handle_save(this, null);\n",
- " } else {\n",
- " this.send_message(\"toolbar_button\", {name: name});\n",
- " }\n",
- "};\n",
- "\n",
- "mpl.figure.prototype.toolbar_button_onmouseover = function(tooltip) {\n",
- " this.message.textContent = tooltip;\n",
- "};\n",
- "mpl.toolbar_items = [[\"Home\", \"Reset original view\", \"fa fa-home icon-home\", \"home\"], [\"Back\", \"Back to previous view\", \"fa fa-arrow-left icon-arrow-left\", \"back\"], [\"Forward\", \"Forward to next view\", \"fa fa-arrow-right icon-arrow-right\", \"forward\"], [\"\", \"\", \"\", \"\"], [\"Pan\", \"Pan axes with left mouse, zoom with right\", \"fa fa-arrows icon-move\", \"pan\"], [\"Zoom\", \"Zoom to rectangle\", \"fa fa-square-o icon-check-empty\", \"zoom\"], [\"\", \"\", \"\", \"\"], [\"Download\", \"Download plot\", \"fa fa-floppy-o icon-save\", \"download\"]];\n",
- "\n",
- "mpl.extensions = [\"eps\", \"pdf\", \"png\", \"ps\", \"raw\", \"svg\"];\n",
- "\n",
- "mpl.default_extension = \"png\";var comm_websocket_adapter = function(comm) {\n",
- " // Create a \"websocket\"-like object which calls the given IPython comm\n",
- " // object with the appropriate methods. Currently this is a non binary\n",
- " // socket, so there is still some room for performance tuning.\n",
- " var ws = {};\n",
- "\n",
- " ws.close = function() {\n",
- " comm.close()\n",
- " };\n",
- " ws.send = function(m) {\n",
- " //console.log('sending', m);\n",
- " comm.send(m);\n",
- " };\n",
- " // Register the callback with on_msg.\n",
- " comm.on_msg(function(msg) {\n",
- " //console.log('receiving', msg['content']['data'], msg);\n",
- " // Pass the mpl event to the overridden (by mpl) onmessage function.\n",
- " ws.onmessage(msg['content']['data'])\n",
- " });\n",
- " return ws;\n",
- "}\n",
- "\n",
- "mpl.mpl_figure_comm = function(comm, msg) {\n",
- " // This is the function which gets called when the mpl process\n",
- " // starts-up an IPython Comm through the \"matplotlib\" channel.\n",
- "\n",
- " var id = msg.content.data.id;\n",
- " // Get hold of the div created by the display call when the Comm\n",
- " // socket was opened in Python.\n",
- " var element = $(\"#\" + id);\n",
- " var ws_proxy = comm_websocket_adapter(comm)\n",
- "\n",
- " function ondownload(figure, format) {\n",
- " window.open(figure.imageObj.src);\n",
- " }\n",
- "\n",
- " var fig = new mpl.figure(id, ws_proxy,\n",
- " ondownload,\n",
- " element.get(0));\n",
- "\n",
- " // Call onopen now - mpl needs it, as it is assuming we've passed it a real\n",
- " // web socket which is closed, not our websocket->open comm proxy.\n",
- " ws_proxy.onopen();\n",
- "\n",
- " fig.parent_element = element.get(0);\n",
- " fig.cell_info = mpl.find_output_cell(\"<div id='\" + id + \"'></div>\");\n",
- " if (!fig.cell_info) {\n",
- " console.error(\"Failed to find cell for figure\", id, fig);\n",
- " return;\n",
- " }\n",
- "\n",
- " var output_index = fig.cell_info[2]\n",
- " var cell = fig.cell_info[0];\n",
- "\n",
- "};\n",
- "\n",
- "mpl.figure.prototype.handle_close = function(fig, msg) {\n",
- " var width = fig.canvas.width/mpl.ratio\n",
- " fig.root.unbind('remove')\n",
- "\n",
- " // Update the output cell to use the data from the current canvas.\n",
- " fig.push_to_output();\n",
- " var dataURL = fig.canvas.toDataURL();\n",
- " // Re-enable the keyboard manager in IPython - without this line, in FF,\n",
- " // the notebook keyboard shortcuts fail.\n",
- " IPython.keyboard_manager.enable()\n",
- " $(fig.parent_element).html('<img src=\"' + dataURL + '\" width=\"' + width + '\">');\n",
- " fig.close_ws(fig, msg);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.close_ws = function(fig, msg){\n",
- " fig.send_message('closing', msg);\n",
- " // fig.ws.close()\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.push_to_output = function(remove_interactive) {\n",
- " // Turn the data on the canvas into data in the output cell.\n",
- " var width = this.canvas.width/mpl.ratio\n",
- " var dataURL = this.canvas.toDataURL();\n",
- " this.cell_info[1]['text/html'] = '<img src=\"' + dataURL + '\" width=\"' + width + '\">';\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.updated_canvas_event = function() {\n",
- " // Tell IPython that the notebook contents must change.\n",
- " IPython.notebook.set_dirty(true);\n",
- " this.send_message(\"ack\", {});\n",
- " var fig = this;\n",
- " // Wait a second, then push the new image to the DOM so\n",
- " // that it is saved nicely (might be nice to debounce this).\n",
- " setTimeout(function () { fig.push_to_output() }, 1000);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_toolbar = function() {\n",
- " var fig = this;\n",
- "\n",
- " var nav_element = $('<div/>');\n",
- " nav_element.attr('style', 'width: 100%');\n",
- " this.root.append(nav_element);\n",
- "\n",
- " // Define a callback function for later on.\n",
- " function toolbar_event(event) {\n",
- " return fig.toolbar_button_onclick(event['data']);\n",
- " }\n",
- " function toolbar_mouse_event(event) {\n",
- " return fig.toolbar_button_onmouseover(event['data']);\n",
- " }\n",
- "\n",
- " for(var toolbar_ind in mpl.toolbar_items){\n",
- " var name = mpl.toolbar_items[toolbar_ind][0];\n",
- " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n",
- " var image = mpl.toolbar_items[toolbar_ind][2];\n",
- " var method_name = mpl.toolbar_items[toolbar_ind][3];\n",
- "\n",
- " if (!name) { continue; };\n",
- "\n",
- " var button = $('<button class=\"btn btn-default\" href=\"#\" title=\"' + name + '\"><i class=\"fa ' + image + ' fa-lg\"></i></button>');\n",
- " button.click(method_name, toolbar_event);\n",
- " button.mouseover(tooltip, toolbar_mouse_event);\n",
- " nav_element.append(button);\n",
- " }\n",
- "\n",
- " // Add the status bar.\n",
- " var status_bar = $('<span class=\"mpl-message\" style=\"text-align:right; float: right;\"/>');\n",
- " nav_element.append(status_bar);\n",
- " this.message = status_bar[0];\n",
- "\n",
- " // Add the close button to the window.\n",
- " var buttongrp = $('<div class=\"btn-group inline pull-right\"></div>');\n",
- " var button = $('<button class=\"btn btn-mini btn-primary\" href=\"#\" title=\"Stop Interaction\"><i class=\"fa fa-power-off icon-remove icon-large\"></i></button>');\n",
- " button.click(function (evt) { fig.handle_close(fig, {}); } );\n",
- " button.mouseover('Stop Interaction', toolbar_mouse_event);\n",
- " buttongrp.append(button);\n",
- " var titlebar = this.root.find($('.ui-dialog-titlebar'));\n",
- " titlebar.prepend(buttongrp);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._root_extra_style = function(el){\n",
- " var fig = this\n",
- " el.on(\"remove\", function(){\n",
- "\tfig.close_ws(fig, {});\n",
- " });\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._canvas_extra_style = function(el){\n",
- " // this is important to make the div 'focusable\n",
- " el.attr('tabindex', 0)\n",
- " // reach out to IPython and tell the keyboard manager to turn it's self\n",
- " // off when our div gets focus\n",
- "\n",
- " // location in version 3\n",
- " if (IPython.notebook.keyboard_manager) {\n",
- " IPython.notebook.keyboard_manager.register_events(el);\n",
- " }\n",
- " else {\n",
- " // location in version 2\n",
- " IPython.keyboard_manager.register_events(el);\n",
- " }\n",
- "\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._key_event_extra = function(event, name) {\n",
- " var manager = IPython.notebook.keyboard_manager;\n",
- " if (!manager)\n",
- " manager = IPython.keyboard_manager;\n",
- "\n",
- " // Check for shift+enter\n",
- " if (event.shiftKey && event.which == 13) {\n",
- " this.canvas_div.blur();\n",
- " // select the cell after this one\n",
- " var index = IPython.notebook.find_cell_index(this.cell_info[0]);\n",
- " IPython.notebook.select(index + 1);\n",
- " }\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_save = function(fig, msg) {\n",
- " fig.ondownload(fig, null);\n",
- "}\n",
- "\n",
- "\n",
- "mpl.find_output_cell = function(html_output) {\n",
- " // Return the cell and output element which can be found *uniquely* in the notebook.\n",
- " // Note - this is a bit hacky, but it is done because the \"notebook_saving.Notebook\"\n",
- " // IPython event is triggered only after the cells have been serialised, which for\n",
- " // our purposes (turning an active figure into a static one), is too late.\n",
- " var cells = IPython.notebook.get_cells();\n",
- " var ncells = cells.length;\n",
- " for (var i=0; i<ncells; i++) {\n",
- " var cell = cells[i];\n",
- " if (cell.cell_type === 'code'){\n",
- " for (var j=0; j<cell.output_area.outputs.length; j++) {\n",
- " var data = cell.output_area.outputs[j];\n",
- " if (data.data) {\n",
- " // IPython >= 3 moved mimebundle to data attribute of output\n",
- " data = data.data;\n",
- " }\n",
- " if (data['text/html'] == html_output) {\n",
- " return [cell, data, j];\n",
- " }\n",
- " }\n",
- " }\n",
- " }\n",
- "}\n",
- "\n",
- "// Register the function which deals with the matplotlib target/channel.\n",
- "// The kernel may be null if the page has been refreshed.\n",
- "if (IPython.notebook.kernel != null) {\n",
- " IPython.notebook.kernel.comm_manager.register_target('matplotlib', mpl.mpl_figure_comm);\n",
- "}\n"
- ],
- "text/plain": [
- "<IPython.core.display.Javascript object>"
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- },
- {
- "data": {
- "text/html": [
- "<img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA4QAAAMgCAYAAAB7w6zDAAAgAElEQVR4nOzdeXTV9Z3/8W/CEpZEFgVBUFBKxY4KqFW0MlipO661LrUMVv2paKtSR2RsLToqHaattnamtm64jnVHHRXBBRS3UtFaxa21RdpStSpUVJTl/fvDuVcuSSDBL8Qvn8fznMc5enOTfENyb+4r9+YmC0mSJElSkmUtfQCSJEmSpJbJIJQkSZKkRDMIJUmSJCnRDEJJkiRJSjSDUJIkSZISzSCUJEmSpEQzCCVJkiQp0QxCSZIkSUo0g1CSJEmSEs0glCRJkqREMwglSZIkKdEMQkmSJElKNINQkiRJkhLNIJQkSZKkRDMIJUmSJCnRDEJJkiRJSjSDUJIkSZISzSCUJEmSpEQzCCVJkiQp0QxCSZKa2R577BHbbLNNDBw4MHbdddd4+umnW/qQJElaowxCSZKa2TvvvFP+79tvvz0GDx7cgkcjSdKaZxBKkvQpuuqqq2L77bdv6cOQJGmNMgglSVqDRo4cGb17947evXvHc88919KHI0nSGmUQSpL0Kbrqqqtin332aenDkCRpjTIIJUn6lLVr1y7+/ve/t/RhSJLU7AxCSZKa0cKFC+Mvf/lL+f9vu+226NWrVyxfvrwFj0qSpDXLIJQkqRm99tpr8cUvfjG23nrr2HbbbWP48OH+7IQkqbAZhJIkSZKUaAahJEmSJCWaQShJkiRJiWYQSpIkSVKiGYSSJEmSlGgGoSRJkiQlmkEoSZIkSYlmEEqSJElSohmEkiRJkpRoBqEkSZIkJZpBKEmSJEmJZhBKkiRJUqIZhJIkSZKUaAahJEmSJCWaQShJkiRJiWYQSpIkSVKiGYSSJEmSlGgGoSRJkiQlmkEoSZIkSYlmEEqSJElSohmEkiRJkpRoBqEkSZIkJZpBKEmSJEmJZhBKkiRJUqIZhJIkSZKUaAahJEmSJCWaQShJkiRJiWYQSpIkSVKiGYSSJEmSlGgGoSRJkiQlmkEoSZIkSYlmEEqSJElSohmEkiRJkpRoBqEkSZIkJZpBKEmSJEmJZhBKkiRJUqIZhJIkSZKUaAahJEmSJCWaQShJkiRJiWYQSpIkSVKiGYSSJEmSlGgGoSRJkiQlmkEoSZIkSYlmEEqSJElSohmEkiRJkpRoBqEkSZIkJZpBKEmSJEmJZhBKkiRJUqIZhFJETJo0KbIsK6upqYmNN944dtttt5gwYUK8/vrrLX2ITapPnz4xatSolj6MwjRq1Kjo06fPGr3u9ddfHxdddFG+B/R/rc3PY+lr/Y9//GP5tMY+lj/+8Y+RZVn88Ic/XKP39dBDD0WWZXHzzTc3+PKTTz45siyrOK7VKX2+xo8fH1mWRVVVVfzhD3+o97YXLVoUdXV1kWVZxb/lp/mYhg0bFv/0T//U4MvefPPNyLIsxo8fXz5t5Y+pVatW0aNHjzj88MPj5ZdfbtbbX5Ma+lw3tbvvvrviY8m7c889N7baaqtYtmxZRDTv87KqY7vgggvi9ttvz/NQ16iDDz44DjjggIrT3nrrrWjdunXcdttt5f8//PDDo1u3bpFlWRx44IEtcagR8cnl6c0331zn73vUqFHRsWPHdf5+8+7tt9+OTp06fSa+/qTmZhBK8ckNp0mTJsXjjz8eDz/8cNxyyy1x2mmnRadOnaJr164xbdq0lj7M1TZ79uz4/e9/39KHUZh+//vfx+zZs9fodffbb781HpOra20OwjfeeCMef/zxWLx4cfm0xj6WdTkIS8e1oizL4tBDD604rfT5Kt2Arauri+9973v13vakSZOiXbt20aZNmxYfhKXrlYceeijOP//8aN++fXTv3j3efvvtJr/9NenTDMIVPzd595e//CU6duxY8XXRnM/Lqo6tY8eOLf5DsUWLFkX79u3j6quvrjj9yiuvjA4dOsT7778fERGnnXZatG3bNq677rp4/PHH46WXXmqJw40IgzCvzjnnnPjc5z4XH374YUsfitSsDEIpPrnhNGvWrHovmzt3bmy66aZRV1cXf/vb31rg6PRZrKiDsKE+C4OwobIsi5NPPrnBl5VuwB533HGx6aablu9pKrXrrrvGkUceWW8gtMQgXPl65dxzz40sy+LKK69s8ttfkz6rg3Ds2LHRq1evis/Z+jQIb7rppmjTpk29wb/vvvvGoYceWv7/r3zlK7HVVlut68NrMIMwn/72t79F69at4/rrr2/pQ5GalUEoxaoHYcTH3+CzLItzzz234vQ77rgjhgwZEu3bt4/a2tr4yle+Eo899ljFeUrfaH/729/GoYceGhtssEF06dIlxowZE0uWLIkXX3wx9tprr6itrY0+ffrExIkTK17/gw8+iO985zsxcODA8usOGTIkJk+eXO84Vx4SpRvk//M//xNnnXVW9OzZM+rq6mL48OHx4osvVrzu7NmzY7/99otu3bpF27Zto2fPnrHvvvvGvHnzVvlvN3Xq1DjggAOiV69eUVNTE/369Yvjjz++3g2LN954I/7f//t/0bt372jbtm1stNFGscsuu1Tc89qUY/jggw9i3Lhx0bdv32jTpk1ssskmcdJJJ8U777xT79iuv/76GDJkSHTs2DE6duwYAwcOjMsvv7z88oYeMvpf//VfMXTo0OjWrVt06NAhtt5665g4cWJ89NFH5fMMGzaswYczlvrwww/jvPPOiy233LL8sR599NHxxhtvVLyvjz76KM4444zYeOONo3379vGlL30pnnzyySYNwh122CH23XffitO23nrryLIsfv3rX5dPu/XWWyPLsnj22Wcjov5IWNXHsuKN9B//+MfRt2/f6NixYwwZMiQef/zxVR5fxLoZhI899lhkWRZTpkwpv+yll16KLMti2rRpn8lBePfdd0eWZfGDH/ygyW9/dT3++OOxyy67RE1NTfTs2TPGjRsXl156ab1B+Ktf/Sr22GOP6NGjR7Rr1y4GDBgQZ555ZixatKh8nlGjRjX4NVF6O025jDTWhx9+GBtuuGGcccYZFac39WttVcfW0OnDhg2LiE8+F1OnTo2jjz46unTpEh06dIgRI0bUe8jxml4Xljr88MNjr732qjht4cKF0bZt27jhhhsaPdaHHnooIj6+l2nHHXeMLl26RF1dXQwePDguv/zyWL58eb33tbrruIiIadOmxe677x51dXXRvn372GWXXeL++++vOE/p8jR79uw4+OCDo66uLjbYYIM46qij6l1vLVu2LCZOnFi+fuvWrVuMHDmywX+fK664IrbddtuoqamJLl26xEEHHRRz5sypOE9Dg3DmzJmx4YYbxn777VfxtdlQTzzxRIwYMSK6du0aNTU1scUWW8Spp55acZ5HHnkkdt9996itrY327dvHzjvvHP/7v/9bcZ7S18gDDzwQxx13XHTt2jXq6upi5MiRsWjRopg/f3587Wtfi06dOkWPHj3i9NNPb/Brfp999omhQ4eu8pilz1oGoRSrH4SLFi2KVq1axfDhw8unXX/99ZFlWey5554xefLkuPHGG2P77bePtm3bxiOPPFI+X+kb7ZZbbhnnnXdeTJs2LcaOHRtZlsW3vvWtGDBgQFx88cUxbdq0+OY3vxlZlsWtt95afv0FCxbE0UcfHddee208+OCDMWXKlPjXf/3XqK6urveQpMYGYd++feOoo46Ku+++O2644YbYbLPNon///rF06dLyx7fhhhvGDjvsEDfddFPMmDEjbrzxxjjxxBPrffNeuUsuuSR+8IMfxJ133hkzZsyIq6++OgYOHBhbbrllxTfLvfbaK7p16xaXXnppTJ8+PSZPnhzf//7341e/+lWTj2H58uWx1157RevWrePss8+OqVOnxo9+9KPo2LFjDB48uOJhkGeffXZkWRaHHHJI3HzzzTF16tS48MIL4+yzzy6fp6FBOGbMmLjkkktiypQp8eCDD8ZFF10UG220UXzzm98sn+f555+PL33pS9GjR4+KhzNGfHxjae+9946OHTvGueeeG9OmTYvLL788evXqFV/4whfKDxcrvf+qqqo444wzysfXq1
- ],
- "text/plain": [
- "<IPython.core.display.HTML object>"
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- }
- ],
- "source": [
- "#!/bin/env python\n",
- "\n",
- "\"\"\"\n",
- "URL data extractor\n",
- "\n",
- "Pekka Helenius <pekka [dot] helenius [at] fjordtek [dot] com>\n",
- "\n",
- "Requirements:\n",
- "\n",
- "Python 3\n",
- "Python 3 BeautifulSoup4 (python-beautifulsoup4)\n",
- "Python 3 whois (python-whois; PyPI)\n",
- "Python 3 JSON Schema (python-jsonschema)\n",
- "Python 3 Numpy (python-numpy)\n",
- "Python 3 matplotlib (python-matplotlib)\n",
- "\n",
- "TODO: URL domain part length comparison analysis\n",
- "TODO: URL non-TLD part length comparison analysis\n",
- " - in phishing webpages, URL tends to be much longer than legitimate webpages\n",
- " however, domains themselves tend to be much shorter (without TLD)\n",
- " - phishing URLs often contain more number of dots and subdomains than legitimate URLs\n",
- " - legitimate: robots.txt redirects bots to a legitimate domain rather than to the original phishing domain\n",
- "\n",
- "TODO: Website visual similarity analysis\n",
- "TODO: consistency of RDN usage in HTML data\n",
- "\"\"\"\n",
- "\n",
- "######################################\n",
- "\n",
- "%matplotlib notebook\n",
- "import matplotlib.pyplot as plt\n",
- "\n",
- "from bs4 import BeautifulSoup as bs\n",
- "from collections import Counter\n",
- "from datetime import date, datetime\n",
- "import json\n",
- "import os\n",
- "import re\n",
- "import requests\n",
- "from time import sleep\n",
- "import urllib\n",
- "from whois import whois\n",
- "\n",
- "# Target URLs\n",
- "urls = [\n",
- " \"https://hoxhunt.com/\",\n",
- " \"https://hs.fi\",\n",
- " \"https://ts.fi\",\n",
- " \"https://facebook.com\"\n",
- "]\n",
- "\n",
- "# Some web servers may block our request unless we set a widely used, well-known user agent string\n",
- "request_headers = {\n",
- " 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36'\n",
- "}\n",
- "\n",
- "# Date format for domain timestamps\n",
- "dateformat = \"%Y/%m/%d\"\n",
- "\n",
- "# All webpages may not like fetching data too fast\n",
- "# Sleep time in seconds\n",
- "sleep_interval_between_requests = 0.5\n",
- "\n",
- "# Write JSON results to a file?\n",
- "use_file = True\n",
- "# Full file path + name\n",
- "filename = os.getcwd() + \"/\" + \"url_info.json\"\n",
- "\n",
- "# Generate plot from existing JSON data?\n",
- "plot_only = False\n",
- "\n",
- "# Save generated plot images?\n",
- "save_plot_images = True\n",
- "\n",
- "# DPI of plot images\n",
- "plot_images_dpi = 150\n",
- "\n",
- "# Common link attribute references in various HTML elements\n",
- "link_refs = {\n",
- " 'a': 'href',\n",
- " 'img': 'src',\n",
- " 'script': 'src'\n",
- "}\n",
- "\n",
- "############################################################################\n",
- "############################################################################\n",
- "\n",
- "class json_url_data(object):\n",
- "\n",
- "# def __init__(self):\n",
- "\n",
- "######################################\n",
- " \"\"\"\n",
- " Set a new HTTP session and get response.\n",
- "\n",
- " Returns a requests.models.Response object.\n",
- " \"\"\"\n",
- " def set_session(self, url, method='get', redirects=True):\n",
- " \n",
- " # HTTP response status codes 1XX, 2XX and 3XX are OK\n",
- " # Treat other codes as errors\n",
- " sc = re.compile(r\"^[123]{1}[0-9]{2}\")\n",
- " \n",
- " sleep(sleep_interval_between_requests)\n",
- " \n",
- " try:\n",
- " session = requests.Session()\n",
- " response = session.request(method, url, headers=request_headers, allow_redirects=redirects)\n",
- " \n",
- " if not sc.match(str(response.status_code)):\n",
- " raise Exception(\"Error: got invalid response status from the web server\")\n",
- " return response\n",
- " \n",
- " except:\n",
- " raise Exception(\"Error: HTTP session could not be established. URL: '\" + url + \"' (method: \" + method + \")\") from None\n",
- "\n",
- "######################################\n",
- " \"\"\"\n",
- " Fetch HTML data.\n",
- "\n",
- " Returns a bs4.BeautifulSoup object.\n",
- " \"\"\"\n",
- " def get_html_data(self, url):\n",
- " \n",
- " try:\n",
- " data = bs(self.set_session(url).content, 'html.parser')\n",
- " return data\n",
- " except:\n",
- " raise Exception(\"Error: HTML data could not be retrieved\")\n",
- "\n",
- "######################################\n",
- " \"\"\"\n",
- " Get URL redirects and related HTTP status codes.\n",
- "\n",
- " Returns a list object.\n",
- " \"\"\"\n",
- " def get_url_redirects(self, url):\n",
- " \n",
- " response = self.set_session(url)\n",
- " list_data = []\n",
- " \n",
- " if response.history:\n",
- " \n",
- " for r in response.history:\n",
- " list_data.append({'redirect_url': r.url, 'status': r.status_code})\n",
- " \n",
- " return list_data\n",
- "\n",
- "######################################\n",
- " \"\"\"\n",
- " Extract title HTML element contents from given HTML data.\n",
- "\n",
- " Returns a string object.\n",
- " \"\"\"\n",
- " def get_webpage_title(self, url):\n",
- " \n",
- " html_data = self.get_html_data(url)\n",
- " \n",
- " title = html_data.title.string\n",
- " return title\n",
- "\n",
- "######################################\n",
- " \"\"\"\n",
- " Get WHOIS domain data.\n",
- "\n",
- " Returns a dict object.\n",
- " \"\"\"\n",
- " def get_whois_data(self, url):\n",
- " dict_data = whois(url)\n",
- " return dict_data\n",
- "\n",
- "######################################\n",
- " \"\"\"\n",
- " Get domain name based on WHOIS domain data.\n",
- " \"\"\"\n",
- " def get_domain_name(self, url):\n",
- " domain_name = self.get_whois_data(url).domain_name\n",
- " \n",
- " if type(domain_name) is list:\n",
- " return domain_name[0].lower()\n",
- " else:\n",
- " return domain_name.lower()\n",
- "\n",
- "######################################\n",
- " \"\"\"\n",
- " Get initial and final URLs\n",
- " \n",
- " Compare whether the final (destination) URL\n",
- " matches with the initial URL in a request.\n",
- " \n",
- " Returns a dict object.\n",
- " \"\"\"\n",
- " def get_startfinal_urls(self, url):\n",
- " \n",
- " response = self.set_session(url)\n",
- " end_url = response.url\n",
- " \n",
- " start_match = False\n",
- " final_match = False\n",
- " \n",
- " # dr = re.compile(r\"^([a-z]+://)?([^/]+)\")\n",
- " # dr_group_lastindex = dr.match(url).lastindex\n",
- " # domain_name = dr.match(url).group(dr_group_lastindex)\n",
- " \n",
- " domain_name = self.get_domain_name(url)\n",
- " \n",
- " if re.search(domain_name, end_url):\n",
- " final_match = True\n",
- " \n",
- " dict_data = {\n",
- " 'startfinal_urls': {\n",
- " 'start_url': {\n",
- " 'url': url\n",
- " },\n",
- " 'final_url': {\n",
- " 'url': end_url, 'domain_match': final_match\n",
- " }\n",
- " }\n",
- " }\n",
- " \n",
- " return dict_data\n",
- "\n",
- "######################################\n",
- " \"\"\"\n",
- " Get domain registrar\n",
- " \n",
- " Returns a dict object.\n",
- " \"\"\"\n",
- " def get_domain_registrar(self, url):\n",
- " dict_data = {'domain_registrar': self.get_whois_data(url).registrar }\n",
- " return dict_data\n",
- "\n",
- "######################################\n",
- " \"\"\"\n",
- " Do comparison between the domain name, extracted\n",
- " from WHOIS domain data and contents of a title HTML\n",
- " element, extracted from HTML data based on a given URL.\n",
- " \n",
- " Returns a dict object.\n",
- " \"\"\"\n",
- " def get_domain_title_match(self, url):\n",
- " \n",
- " domain_name = self.get_domain_name(url)\n",
- " title = self.get_webpage_title(url)\n",
- " \n",
- " # If is string:\n",
- " if type(domain_name) is str:\n",
- " if re.search(domain_name, title, re.IGNORECASE):\n",
- " match = True\n",
- " else:\n",
- " match = False\n",
- " \n",
- " # If is list:\n",
- " elif type(domain_name) is list:\n",
- " for d in domain_name:\n",
- " if re.search(d, title, re.IGNORECASE):\n",
- " match = True\n",
- " break\n",
- " else:\n",
- " match = False\n",
- " else:\n",
- " match = False\n",
- " \n",
- " dict_data = {\n",
- " 'webpage_title': title,\n",
- " 'domain_in_webpage_title': match\n",
- " }\n",
- " \n",
- " return dict_data\n",
- "\n",
- "######################################\n",
- " \"\"\"\n",
- " Get a single timestamp from given data\n",
- " \n",
- " Two scenarios are considered: dates argument is either\n",
- " a list or a string. If it is a list, then we need\n",
- " to decide which date value to extract.\n",
- " \n",
- " Returns a date object.\n",
- " \"\"\"\n",
- " def get_single_date(self, dates, newest=False):\n",
- " \n",
- " dates_epoch = []\n",
- " \n",
- " if type(dates) is list:\n",
- " for d in dates:\n",
- " dates_epoch.append(d.timestamp())\n",
- " else:\n",
- " dates_epoch.append(dates.timestamp())\n",
- " \n",
- " return datetime.fromtimestamp(sorted(dates_epoch, reverse=newest)[0])\n",
- "\n",
- "######################################\n",
- " \"\"\"\n",
- " Get domain time information based on WHOIS domain data.\n",
- " \n",
- " Returns a dict object.\n",
- " \"\"\"\n",
- " def get_domain_timeinfo(self, url):\n",
- " \n",
- " whois_data = self.get_whois_data(url)\n",
- " domain_creation_date = self.get_single_date(whois_data.creation_date, newest = False)\n",
- " domain_updated_date = self.get_single_date(whois_data.updated_date, newest = False)\n",
- " domain_expiration_date = self.get_single_date(whois_data.expiration_date, newest = False)\n",
- " \n",
- " dict_data = {\n",
- " 'domain_timestamps':\n",
- " {\n",
- " 'created': domain_creation_date.strftime(dateformat),\n",
- " 'updated': domain_updated_date.strftime(dateformat),\n",
- " 'expires': domain_expiration_date.strftime(dateformat)\n",
- " }\n",
- " }\n",
- " \n",
- " return dict_data\n",
- "\n",
- "######################################\n",
- " \"\"\"\n",
- " Get domain time information based on WHOIS domain data,\n",
- " relative to the current date (UTC time).\n",
- " \n",
- " Returns a dict object.\n",
- " \"\"\"\n",
- " def get_domain_timeinfo_relative(self, url):\n",
- " \n",
- " date_now = datetime.utcnow()\n",
- " \n",
- " whois_data = self.get_whois_data(url)\n",
- " domain_creation_date = self.get_single_date(whois_data.creation_date, newest = False)\n",
- " domain_updated_date = self.get_single_date(whois_data.updated_date, newest = False)\n",
- " domain_expiration_date = self.get_single_date(whois_data.expiration_date, newest = False)\n",
- " \n",
- " dict_data = {\n",
- " 'domain_timestamps_relative':\n",
- " {\n",
- " 'current_date': (date_now.strftime(dateformat)),\n",
- " 'created_days_ago': (date_now - domain_creation_date).days,\n",
- " 'updated_days_ago': (date_now - domain_updated_date).days,\n",
- " 'expires_days_left': (domain_expiration_date - date_now).days\n",
- " }\n",
- " }\n",
- " \n",
- " return dict_data\n",
- "\n",
- "######################################\n",
- " \"\"\"\n",
- " Determine whether URL matches syntaxes such as\n",
- " '../foo/bar/'\n",
- " '/foo/../../bar/,\n",
- " 'https://foo.bar/foo/../'\n",
- " \n",
- " etc.\n",
- " \n",
- " Returns a boolean object.\n",
- " \"\"\"\n",
- " def is_multidot_url(self, url):\n",
- " \n",
- " multidot = re.compile(r\".*[.]{2}/.*\")\n",
- " \n",
- " if multidot.match(url):\n",
- " return True\n",
- " return False\n",
- "\n",
- "######################################\n",
- " \"\"\"\n",
- " Get HTML element data from HTML data contents.\n",
- " \n",
- " Two fetching methods are supported:\n",
- " - A) use only HTML element/tag name and extract raw contents of\n",
- " these tags\n",
- " - B) use both HTML element/tag name and more fine-grained\n",
- " inner attribute name to determine which HTML elements are extracted\n",
- " \n",
- " Special case - URL link references:\n",
- " - attributes 'href' or 'src' are considered as link referrals and \n",
- " they are handled in a special way\n",
- " - A) link referrals to directly to domain are placed in 'self_refs' list\n",
- " (patterns: '/', '#', '../' and '/<anything>')\n",
- " - B) link referrals to external domains are placed in 'ext_refs' list\n",
- " (patterns such as 'https://foo.bar.dot/fancysite' etc.)\n",
- " \n",
- " - Both A) and B) link categories have 'normal' and 'multidot' subcategories\n",
- " - normal links do not contain pattern '../'\n",
- " - multidot links contain '../' pattern\n",
- " \n",
- " Returns a dict object.\n",
- " \"\"\"\n",
- " \n",
- " def get_tag_data(self, url, tag, attribute=None):\n",
- " \n",
- " html_data = self.get_html_data(url)\n",
- " domain_name = self.get_domain_name(url)\n",
- " data = []\n",
- " \n",
- " if attribute != None:\n",
- " \n",
- " for d in html_data.find_all(tag):\n",
- " \n",
- " # Ignore the HTML tag if it does not contain our attribute\n",
- " if d.get(attribute) != None:\n",
- " data.append(d.get(attribute))\n",
- " \n",
- " if attribute == 'href' or attribute == 'src':\n",
- " \n",
- " self_refs = { 'normal': [], 'multidot': []}\n",
- " ext_refs = { 'normal': [], 'multidot': []}\n",
- " \n",
- " # Syntax: '#<anything>', '/<anything>', '../<anything>'\n",
- " rs = re.compile(r\"^[/#]|^[.]{2}/.*\")\n",
- " \n",
- " # Syntax: '<text>:<text>/'\n",
- " rd = re.compile(r\"^[a-z]+:[a-z]+/\")\n",
- " \n",
- " # Syntax examples:\n",
- " # 'http://foo.bar/', 'https://foo.bar/, 'foo.bar/', 'https://virus.foo.bar/'\n",
- " rl = re.compile(r\"^([a-z]+://)?([^/]*\" + domain_name + \"/)\")\n",
- " \n",
- " for s in data:\n",
- " \n",
- " # Ignore mailto links\n",
- " if re.match(\"^mailto:\", s): continue\n",
- " \n",
- " if rs.match(s) or rl.match(s) or rd.match(s):\n",
- " if self.is_multidot_url(s):\n",
- " self_refs['multidot'].append(s)\n",
- " else:\n",
- " self_refs['normal'].append(s)\n",
- " else:\n",
- " \n",
- " if self.is_multidot_url(s):\n",
- " try:\n",
- " ext_refs['multidot'].append({'url': s, 'registrar': self.get_whois_data(s).registrar })\n",
- " except:\n",
- " # Fallback if WHOIS query fails\n",
- " ext_refs['normal'].append({'url': s, 'registrar': None })\n",
- " pass\n",
- " else:\n",
- " try:\n",
- " ext_refs['normal'].append({'url': s, 'registrar': self.get_whois_data(s).registrar })\n",
- " except:\n",
- " ext_refs['normal'].append({'url': s, 'registrar': None })\n",
- " pass\n",
- " \n",
- " data = None\n",
- " \n",
- " dict_data = {\n",
- " tag: {\n",
- " attribute + '_ext': (ext_refs),\n",
- " attribute + '_self': (self_refs)\n",
- " }\n",
- " }\n",
- " \n",
- " else:\n",
- " dict_data = {\n",
- " tag: {\n",
- " attribute: (data)\n",
- " }\n",
- " }\n",
- " \n",
- " else:\n",
- " for d in html_data.find_all(tag):\n",
- " data.append(d.prettify())\n",
- " \n",
- " dict_data = {\n",
- " tag: (data)\n",
- " }\n",
- " \n",
- " return dict_data\n",
- "\n",
- "######################################\n",
- " \"\"\"\n",
- " How many external URL links have same registrar than\n",
- " the webpage itself?\n",
- " \"\"\"\n",
- " def get_registrar_count(self, registrar, urls):\n",
- " \n",
- " i = 0\n",
- " \n",
- " for u in urls:\n",
- " for k,v in u.items():\n",
- " if k == 'registrar' and v == registrar:\n",
- " i += 1\n",
- " \n",
- " o = len(urls) - i\n",
- " \n",
- " dict_data = {\n",
- " 'same_registrar_count': i,\n",
- " 'other_registrar_count': o\n",
- " }\n",
- " \n",
- " return dict_data\n",
- "\n",
- "######################################\n",
- "\n",
- " \"\"\"\n",
- " Get values existing in a dict object,\n",
- " based on a known key string.\n",
- " \n",
- " Returns a list object.\n",
- " \n",
- " TODO: Major re-work for the fetch function\n",
- "\n",
- " TODO: Support for more sophisticated JSON key string filtering\n",
- " (possibility to use multiple keys for filtering)\n",
- " \"\"\"\n",
- " class json_fetcher(object):\n",
- "\n",
- " def __init__(self, dict_data, json_key):\n",
- " self.json_dict = json.loads(json.dumps(dict_data))\n",
- " self.json_key = json_key\n",
- "\n",
- " ##########\n",
- " # Ref: https://www.codespeedy.com/how-to-loop-through-json-with-subkeys-in-python/\n",
- " def fetch(self, jdata):\n",
- "\n",
- " if isinstance(jdata, dict):\n",
- "\n",
- " for k,v in jdata.items():\n",
- " if k == self.json_key:\n",
- " yield v\n",
- " elif isinstance(v, dict):\n",
- " for val in self.fetch(v):\n",
- " yield val\n",
- " elif isinstance(v, list):\n",
- " for l in v:\n",
- " if isinstance(l, dict):\n",
- " for ka,va in l.items():\n",
- " if ka == self.json_key:\n",
- " yield va\n",
- "\n",
- " elif isinstance(jdata, list):\n",
- " for l in jdata:\n",
- " if isinstance(l, dict):\n",
- " for k,v in l.items():\n",
- " if k == self.json_key:\n",
- " yield v\n",
- " elif isinstance(l, list):\n",
- " for lb in v:\n",
- " for ka,va in lb.items():\n",
- " if ka == self.json_key:\n",
- " yield va\n",
- "\n",
- " ##########\n",
- " def get_data(self, flatten=True):\n",
- "\n",
- " data_extract = []\n",
- " flat_data = []\n",
- "\n",
- " for i in self.fetch(self.json_dict):\n",
- " data_extract.append(i)\n",
- "\n",
- " # Flatten possible nested lists\n",
- " # (i.e. JSON data contains multiple keys in\n",
- " # different nested sections)\n",
- " def get_data_extract(ld):\n",
- " for l in ld:\n",
- " if isinstance(l, list):\n",
- " for la in get_data_extract(l):\n",
- " yield la\n",
- " else:\n",
- " yield l\n",
- "\n",
- " if flatten == True:\n",
- " for u in get_data_extract(data_extract):\n",
- " flat_data.append(u)\n",
- " \n",
- " return flat_data\n",
- " else:\n",
- " return data_extract\n",
- "\n",
- "######################################\n",
- " \"\"\"\n",
- " Compile URL related data.\n",
- " \"\"\"\n",
- " def get_url_data(self, url):\n",
- " \n",
- " # Dict object for simple, non-nested data\n",
- " data_simple = {}\n",
- "\n",
- " # Pre-defined dict object for specific data sets\n",
- " webpage_data = {}\n",
- " \n",
- " startfinal_url = self.get_startfinal_urls(url)\n",
- " redirect_url = self.get_url_redirects(url)\n",
- " domain_registrar = self.get_domain_registrar(url)\n",
- " domaintitle_match = self.get_domain_title_match(url)\n",
- " \n",
- " domain_time_relative = self.get_domain_timeinfo_relative(url)\n",
- " domain_time = self.get_domain_timeinfo(url)\n",
- " \n",
- " html_element_iframe = self.get_tag_data(url, 'iframe')\n",
- " html_element_a_href = self.get_tag_data(url, 'a', link_refs['a'])\n",
- " html_element_img_src = self.get_tag_data(url, 'img', link_refs['img'])\n",
- " html_element_script_src = self.get_tag_data(url, 'script', link_refs['script'])\n",
- "\n",
- " iframes_count = {\n",
- " 'iframes_count':\n",
- " len(self.json_fetcher(html_element_iframe, 'iframe').get_data())\n",
- " }\n",
- " \n",
- " multidot_urls_count = {\n",
- " 'multidot_url_count':\n",
- " len(self.json_fetcher(html_element_a_href, 'multidot').get_data()) + len(self.json_fetcher(html_element_img_src, 'multidot').get_data()) + len(self.json_fetcher(html_element_script_src, 'multidot').get_data())\n",
- " }\n",
- " \n",
- " ###################\n",
- " def get_total_registrars():\n",
- "\n",
- " same_registrar_counts = 0\n",
- " other_registrar_counts = 0\n",
- " for k,v in link_refs.items():\n",
- " \n",
- " html_element = self.get_tag_data(url, k, v)\n",
- " \n",
- " same_registrar_counts += self.get_registrar_count(\n",
- " domain_registrar['domain_registrar'],\n",
- " html_element[k][v + '_ext']['normal']\n",
- " )['same_registrar_count']\n",
- " \n",
- " other_registrar_counts += self.get_registrar_count(\n",
- " domain_registrar['domain_registrar'],\n",
- " html_element[k][v + '_ext']['normal']\n",
- " )['other_registrar_count']\n",
- " \n",
- " registrar_counts = {\n",
- " 'same_registrar_count': same_registrar_counts,\n",
- " 'other_registrar_count': other_registrar_counts\n",
- " }\n",
- " return registrar_counts\n",
- " \n",
- " # Avoid unnecessary nesting of the following data\n",
- " data_simple.update(domain_registrar)\n",
- " data_simple.update(domaintitle_match)\n",
- " data_simple.update(iframes_count)\n",
- " data_simple.update(multidot_urls_count)\n",
- " data_simple.update(get_total_registrars())\n",
- " \n",
- " url_data = dict({\n",
- " url: [\n",
- " data_simple,\n",
- " startfinal_url,\n",
- " {'redirects': redirect_url},\n",
- " \n",
- " domain_time_relative,\n",
- " domain_time,\n",
- " \n",
- " {'webpage_data': [\n",
- " html_element_iframe,\n",
- " html_element_a_href,\n",
- " html_element_img_src,\n",
- " html_element_script_src\n",
- " ]\n",
- " }\n",
- " ]\n",
- " })\n",
- " \n",
- " return url_data\n",
- "\n",
- "\n",
- "\n",
- "class write_operations(object):\n",
- "\n",
- " def __init__(self):\n",
- " self.filename = filename\n",
- "\n",
- "######################################\n",
- " \"\"\"\n",
- " Set JSON file name, append number suffix\n",
- " # if file exists already.\n",
- " \n",
- " Returns file name path.\n",
- " \"\"\"\n",
- " def set_filename(self):\n",
- " \n",
- " c = 0\n",
- " while True:\n",
- " if os.path.exists(self.filename):\n",
- " if c == 0:\n",
- " self.filename = self.filename + \".\" + str(c)\n",
- " else:\n",
- " self.filename = re.sub(\"[0-9]+$\", str(c), self.filename)\n",
- " else:\n",
- " break\n",
- " c += 1\n",
- " return self.filename\n",
- "\n",
- "######################################\n",
- " \"\"\"\n",
- " Append to a JSON file.\n",
- " \"\"\"\n",
- " def write_to_file(self, data):\n",
- " \n",
- " try:\n",
- " json_file = open(self.filename, \"a\")\n",
- " json_file.write(data)\n",
- " json_file.close()\n",
- " return 0\n",
- " except:\n",
- " return 1\n",
- "\n",
- "######################################\n",
- " \"\"\"\n",
- " Fetch all pre-defined URLs.\n",
- " \"\"\"\n",
- " def fetch_and_store_url_data(self, urls, use_file):\n",
- "\n",
- " data_parts = {}\n",
- " fetch_json_data = json_url_data()\n",
- "\n",
- " for u in urls:\n",
- " print(\"Fetching URL data: %s\" % u)\n",
- " try:\n",
- " data_parts.update(fetch_json_data.get_url_data(u))\n",
- " except:\n",
- " print(\"Failed: %s\" % u)\n",
- " pass\n",
- "\n",
- " json_data = json.dumps(data_parts)\n",
- "\n",
- " if use_file == True:\n",
- " self.write_to_file(json_data)\n",
- "\n",
- " return json_data\n",
- "\n",
- "######################################\n",
- "\"\"\"\n",
- "Visualize & summarize data.\n",
- "\"\"\"\n",
- "\n",
- "class data_visualization(object):\n",
- "\n",
- " def __init__(self, url, json_data):\n",
- " self.url = url\n",
- " self.json_data = json_data\n",
- "\n",
- " self.data = json.loads(json.dumps(self.json_data)).get(self.url)\n",
- " self.json_url_obj = json_url_data()\n",
- " self.domain_registrar = self.json_url_obj.get_domain_registrar(self.url)['domain_registrar']\n",
- " self.webpage_data = self.json_url_obj.json_fetcher(self.data, 'webpage_data').get_data()\n",
- "\n",
- " def get_urls_count_summary(self):\n",
- "\n",
- " unique_refs = []\n",
- "\n",
- " for k,v in link_refs.items():\n",
- " if v in unique_refs: continue\n",
- " unique_refs.append(v)\n",
- "\n",
- " def link_count(refs, suffix):\n",
- "\n",
- " urls_cnt = 0\n",
- "\n",
- " for u in self.webpage_data:\n",
- " for l in refs:\n",
- " urls = self.json_url_obj.json_fetcher(u, l + suffix).get_data()\n",
- " for n in urls:\n",
- " urls_cnt += len(n['normal'])\n",
- " urls_cnt += len(n['multidot'])\n",
- " return urls_cnt\n",
- "\n",
- " data = {\n",
- " 'local_urls': link_count(unique_refs, '_self'),\n",
- " 'external_urls': link_count(unique_refs, '_ext')\n",
- " }\n",
- " \n",
- " return data\n",
- "\n",
- " def get_registrars(self):\n",
- "\n",
- " registrars = []\n",
- " #registrars.append(self.domain_registrar)\n",
- "\n",
- " for w in self.webpage_data:\n",
- " webpage_registrars = self.json_url_obj.json_fetcher(w, 'registrar').get_data()\n",
- " for wa in webpage_registrars:\n",
- " if wa != None:\n",
- " registrars.append(wa)\n",
- " return registrars\n",
- "\n",
- " def get_registrar_count_summary(self):\n",
- " \n",
- " domain_counter = dict(Counter(self.get_registrars()))\n",
- " data = {'fetched_domains': domain_counter, 'url_domain_registrar': self.domain_registrar }\n",
- " return data\n",
- "\n",
- "######################################\n",
- "\"\"\"\n",
- "Execute the main program code.\n",
- "\n",
- "TODO: this code must figure out the correct JSON file\n",
- "if multiple generated files are present.\n",
- "\"\"\"\n",
- "if __name__ == '__main__':\n",
- "\n",
- " if plot_only == False:\n",
- " write_obj = write_operations()\n",
- " write_obj.set_filename()\n",
- " data = write_obj.fetch_and_store_url_data(urls, use_file)\n",
- "\n",
- " url_str_pattern = re.compile(r\"(^[a-z]+://)?([^/]*)\")\n",
- "\n",
- " if os.path.exists(filename):\n",
- " with open(filename, \"r\") as json_file:\n",
- " json_data = json.load(json_file)\n",
- " else:\n",
- " json_data = data\n",
- "\n",
- " # Get URLs from an available JSON data\n",
- " for key_url in json_data.keys():\n",
- " \n",
- " print(\"Generating statistics: %s\" % key_url)\n",
- "\n",
- " fig = plt.figure()\n",
- " fig_params = {\n",
- " 'xtick.labelsize': 8,\n",
- " 'figure.figsize': [9,8]\n",
- " # 'figure.constrained_layout.use': True\n",
- " }\n",
- " plt.rcParams.update(fig_params)\n",
- " \n",
- " domain_string = url_str_pattern.split(key_url)[2].replace('.','')\n",
- " summary = data_visualization(key_url, json_data)\n",
- " \n",
- " summary_registrars = summary.get_registrar_count_summary()['fetched_domains']\n",
- "\n",
- " x_r = list(summary_registrars.keys())\n",
- " y_r = list(summary_registrars.values())\n",
- " \n",
- " # Show bar values\n",
- " for index,data in enumerate(y_r):\n",
- " plt.text(x=index, y=data+0.5, s=data, fontdict=dict(fontsize=8))\n",
- " \n",
- " title_r = \"Domains associated with HTML URL data (\" + key_url + \")\"\n",
- " xlabel_r = \"Fetched domains\"\n",
- " ylabel_r = \"Domain count\"\n",
- "\n",
- " plt.bar(x_r, y_r, color=\"green\", edgecolor=\"black\")\n",
- " plt.title(title_r)\n",
- " plt.xlabel(xlabel_r)\n",
- " plt.ylabel(ylabel_r)\n",
- " plt.xticks(rotation=45, horizontalalignment=\"right\")\n",
- "\n",
- " if save_plot_images == True:\n",
- " plt.savefig(os.getcwd() + \"/\" + \"domain_figure_\" + domain_string + \".png\", dpi=plot_images_dpi)\n",
- " plt.show()\n",
- "\n",
- " #fig_u = plt.figure()\n",
- " \n",
- " #summary_urls = summary.get_urls_count_summary()\n",
- " \n",
- " #x_u = list(summary_urls.keys())\n",
- " #y_u = list(summary_urls.values())\n",
- " #title_u = \"Local and external URL references (\" + key_url + \")\"\n",
- " #xlabel_u = \"Fetched URLs\"\n",
- " #ylabel_u = \"URL count\"\n",
- " \n",
- " #plt.bar(x_u, y_u, color=\"blue\", edgecolor='black')\n",
- " #plt.title(title_u)\n",
- " #plt.xlabel(xlabel_u)\n",
- " #plt.ylabel(ylabel_u)\n",
- " #plt.show()\n"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": []
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": []
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "Python 3",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.8.5"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 4
- }
|