This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/IPython/html/static/notebook/js/codecell.js b/IPython/html/static/notebook/js/codecell.js | |
index 44d4c79..bae3011 100644 | |
--- a/IPython/html/static/notebook/js/codecell.js | |
+++ b/IPython/html/static/notebook/js/codecell.js | |
@@ -259,9 +259,13 @@ var IPython = (function (IPython) { | |
* Execute current code cell to the kernel | |
* @method execute | |
*/ | |
- CodeCell.prototype.execute = function () { | |
+ CodeCell.prototype.execute = function (skip_exceptions) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='ASCII'?> | |
<flow_graph> | |
<timestamp>Sat Jul 26 16:09:06 2014</timestamp> | |
<block> | |
<key>options</key> | |
<param> | |
<key>id</key> | |
<value>top_block</value> | |
</param> | |
<param> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"%PYTHON%" setup.py build --compiler=mingw32 | |
"%PYTHON%" setup.py install | |
if errorlevel 1 exit 1 | |
:: Add more build steps here, if they are necessary. | |
:: See | |
:: http://docs.continuum.io/conda/build.html | |
:: for a list of environment variables that are set during the build process. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Allow Python-code in markdown cells | |
// Encapsulate using {{...}} | |
// - You can also return html or markdown from your Python code | |
// - You can embed images, however they will be sanitized on reload. | |
"use strict"; | |
var pymd_extension = (function() { | |
"use strict"; | |
var security = IPython.security; | |
var _on_reload = true; /* make sure cells with variables render on reload */ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Add rulers to a codecell | |
// | |
define([ | |
'base/js/namespace', | |
'jquery', | |
'require', | |
'base/js/events', | |
'codemirror/lib/codemirror', | |
'codemirror/addon/display/rulers' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
((= IPython input/output style =)) | |
((*- extends 'base.tplx' -*)) | |
%=============================================================================== | |
% Custom definitions | |
%=============================================================================== | |
((* block definitions *)) | |
((( super() ))) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Cleanup nbconfig files from notebook extension configurations | |
Gets list of notebook extensions from jupyter_contrib_nbextensions and removes the 'require' entry for | |
each found extension from the 'load_extensions' dict entry. | |
""" | |
import sys | |
import glob | |
import os |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.