##// END OF EJS Templates
move widget shim to html.py...
Min RK -
Show More
@@ -8,13 +8,17 b' import sys'
8 from warnings import warn
8 from warnings import warn
9
9
10 warn("The `IPython.html` package has been deprecated. "
10 warn("The `IPython.html` package has been deprecated. "
11 "You should import from `jupyter_notebook` instead.")
11 "You should import from `jupyter_notebook` instead. "
12 "`IPython.html.widgets` has moved to `ipython_widgets`.")
12
13
13 from IPython.utils.shimmodule import ShimModule
14 from IPython.utils.shimmodule import ShimModule
14
15
15 sys.modules['IPython.html'] = ShimModule(
16 sys.modules['IPython.html'] = ShimModule(
16 src='IPython.html', mirror='jupyter_notebook')
17 src='IPython.html', mirror='jupyter_notebook')
17
18
19 sys.modules['IPython.html.widgets'] = ShimModule(
20 src='IPython.html.widgets', mirror='ipython_widgets')
21
18 if __name__ == '__main__':
22 if __name__ == '__main__':
19 from jupyter_notebook import notebookapp as app
23 from jupyter_notebook import notebookapp as app
20 app.launch_new_instance()
24 app.launch_new_instance()
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now