Permalink
Please sign in to comment.
Browse files
Merge pull request #899 from minrk/nbwork
Internal notebook refactoring and cleanup, plus fixing a bug that prevented Tornado from authenticating users with password.
- Loading branch information...
Showing
with
211 additions
and 182 deletions.
- +3 −3 IPython/core/profileapp.py
- +41 −15 IPython/frontend/html/notebook/handlers.py
- +13 −13 IPython/frontend/html/notebook/notebookapp.py
- +7 −4 IPython/frontend/html/notebook/static/css/notebook.css
- 0 IPython/frontend/html/notebook/static/css/{nbbrowser.css → projectdashboard.css}
- +3 −5 IPython/frontend/html/notebook/static/js/kernel.js
- +30 −0 IPython/frontend/html/notebook/static/js/loginmain.js
- +8 −4 IPython/frontend/html/notebook/static/js/notebook.js
- +7 −4 IPython/frontend/html/notebook/static/js/notebooklist.js
- 0 IPython/frontend/html/notebook/static/js/{notebook_main.js → notebookmain.js}
- +5 −5 IPython/frontend/html/notebook/static/js/panelsection.js
- +1 −1 IPython/frontend/html/notebook/static/js/{nbbrowser_main.js → projectdashboardmain.js}
- +2 −2 IPython/frontend/html/notebook/static/js/savewidget.js
- +0 −87 IPython/frontend/html/notebook/templates/focus.html
- +5 −18 IPython/frontend/html/notebook/templates/login.html
- +24 −14 IPython/frontend/html/notebook/templates/notebook.html
- +4 −6 IPython/frontend/html/notebook/templates/{nbbrowser.html → projectdashboard.html}
- +1 −1 IPython/frontend/terminal/ipapp.py
- +1 −0 docs/source/development/index.txt
- +56 −0 docs/source/development/notebook_todo.txt
File renamed without changes.
@@ -0,0 +1,30 @@ | ||
+//---------------------------------------------------------------------------- | ||
+// 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. | ||
+//---------------------------------------------------------------------------- | ||
+ | ||
+//============================================================================ | ||
+// On document ready | ||
+//============================================================================ | ||
+ | ||
+ | ||
+$(document).ready(function () { | ||
+ | ||
+ $('div#header').addClass('border-box-sizing'); | ||
+ $('div#header_border').addClass('border-box-sizing ui-widget ui-widget-content'); | ||
+ | ||
+ $('div#main_app').addClass('border-box-sizing ui-widget'); | ||
+ $('div#app_hbox').addClass('hbox'); | ||
+ | ||
+ $('div#left_panel').addClass('box-flex'); | ||
+ $('div#right_panel').addClass('box-flex'); | ||
+ $('input#signin').button(); | ||
+ | ||
+ // These have display: none in the css file and are made visible here to prevent FLOUC. | ||
+ $('div#header').css('display','block'); | ||
+ $('div#main_app').css('display','block'); | ||
+ | ||
+}); | ||
+ |

Oops, something went wrong.
0 comments on commit
284cfec