##// END OF EJS Templates
add dirty trick for readline import on OSX...
add dirty trick for readline import on OSX also made the libedit warning extremely loud, so people don't miss it. We still get reports of people never having noticed the warning, and getting confused when readline is broken on OSX. The reason for the dirty trick: pip installs to site-packages by default, but site-packages dirs always come *after* lib-dynload (and extras, etc.), which is where the system readline is installed. That means that a non-setuptools install (pip or setup.py install) *cannot* override any package that ships with OSX, including: numpy, readline, twisted, pyobjc without installing to a non-standard path (not even user site-packages via `--user`). The method for the dirty trick: 1. remove lib-dynload from sys.path before trying to import readline the first time 2. after import, restore lib-dynload to its place in sys.path 3. if import failed without lib-dynload, try it one more time

File last commit:

r5110:7c74d0b0
r5206:387dcd6a
Show More
notebookmain.js
59 lines | 2.4 KiB | application/javascript | JavascriptLexer
Brian E. Granger
More review changes....
r4609 //----------------------------------------------------------------------------
// Copyright (C) 2008-2011 The IPython Development Team
//
// Distributed under the terms of the BSD License. The full license is in
// the file COPYING, distributed as part of this software.
//----------------------------------------------------------------------------
Brian E. Granger
Splitting notebook.js into muliple files for development ease.
r4349
//============================================================================
// On document ready
//============================================================================
$(document).ready(function () {
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
},
displayAlign: 'left', // Change this to 'center' to center equations.
"HTML-CSS": {
styles: {'.MathJax_Display': {"margin": 0}}
}
});
Brian E. Granger
Starting work on a Markdown cell.
r4507 IPython.markdown_converter = new Markdown.Converter();
Brian E. Granger
Splitting notebook.js into muliple files for development ease.
r4349
Brian E. Granger
Work on save widget, kernel status widget and notebook section.
r4372 $('div#header').addClass('border-box-sizing');
Brian E. Granger
Implemented basic notebook browser and fixed numerous bugs.
r4488 $('div#main_app').addClass('border-box-sizing ui-widget ui-widget-content');
Brian E. Granger
Left panel is now working.
r4363 $('div#notebook_panel').addClass('border-box-sizing ui-widget');
Brian E. Granger
Splitting notebook.js into muliple files for development ease.
r4349
Brian E. Granger
Left panel is now working.
r4363 IPython.layout_manager = new IPython.LayoutManager();
Brian E. Granger
Refactoring pager into its own class.
r4357 IPython.pager = new IPython.Pager('div#pager', 'div#pager_splitter');
Brian E. Granger
Left panel is now working.
r4363 IPython.left_panel = new IPython.LeftPanel('div#left_panel', 'div#left_panel_splitter');
Brian E. Granger
Work on save widget, kernel status widget and notebook section.
r4372 IPython.save_widget = new IPython.SaveWidget('span#save_widget');
MinRK
fix quickhelp widget...
r5066 IPython.quick_help = new IPython.QuickHelp('span#quick_help_area');
Stefan van der Walt
Refactor static printing.
r4615 IPython.print_widget = new IPython.PrintWidget('span#print_widget');
Brian E. Granger
Left panel is now working.
r4363 IPython.notebook = new IPython.Notebook('div#notebook');
Brian E. Granger
Work on save widget, kernel status widget and notebook section.
r4372 IPython.kernel_status_widget = new IPython.KernelStatusWidget('#kernel_status');
IPython.kernel_status_widget.status_idle();
Brian E. Granger
Refactoring pager into its own class.
r4357
Brian E. Granger
Updating font-sizing to use the YUI protocol.
r4379 IPython.layout_manager.do_resize();
Brian E. Granger
Hacks to prevent FLOUC (flash of unformatted content).
r4395
// These have display: none in the css file and are made visible here to prevent FLOUC.
$('div#header').css('display','block');
Brian E. Granger
Implemented basic notebook browser and fixed numerous bugs.
r4488 $('div#main_app').css('display','block');
Brian E. Granger
Massive work on the notebook document format....
r4484
// Perform these actions after the notebook has been loaded.
Brian E. Granger
Implemented basic notebook browser and fixed numerous bugs.
r4488 // We wait 100 milliseconds because the notebook scrolls to the top after a load
// is completed and we need to wait for that to mostly finish.
IPython.notebook.load_notebook(function () {
setTimeout(function () {
IPython.save_widget.update_url();
IPython.layout_manager.do_resize();
IPython.pager.collapse();
},100);
});
Brian E. Granger
Splitting notebook.js into muliple files for development ease.
r4349 });