Show More
1 | NO CONTENT: file renamed from IPython/frontend/html/notebook/clusters/__init__.py to IPython/frontend/html/notebook/notebook/__init__.py |
|
NO CONTENT: file renamed from IPython/frontend/html/notebook/clusters/__init__.py to IPython/frontend/html/notebook/notebook/__init__.py |
1 | NO CONTENT: file renamed from IPython/frontend/html/notebook/notebooks/handlers.py to IPython/frontend/html/notebook/notebook/handlers.py |
|
NO CONTENT: file renamed from IPython/frontend/html/notebook/notebooks/handlers.py to IPython/frontend/html/notebook/notebook/handlers.py |
@@ -194,10 +194,10 b' class NotebookWebApplication(web.Application):' | |||||
194 | handlers.extend(load_handlers('tree.handlers')) |
|
194 | handlers.extend(load_handlers('tree.handlers')) | |
195 | handlers.extend(load_handlers('auth.login')) |
|
195 | handlers.extend(load_handlers('auth.login')) | |
196 | handlers.extend(load_handlers('auth.logout')) |
|
196 | handlers.extend(load_handlers('auth.logout')) | |
197 |
handlers.extend(load_handlers('notebook |
|
197 | handlers.extend(load_handlers('notebook.handlers')) | |
198 |
handlers.extend(load_handlers('kernels. |
|
198 | handlers.extend(load_handlers('services.kernels.handlers')) | |
199 |
handlers.extend(load_handlers('notebooks. |
|
199 | handlers.extend(load_handlers('services.notebooks.handlers')) | |
200 |
handlers.extend(load_handlers('clusters. |
|
200 | handlers.extend(load_handlers('services.clusters.handlers')) | |
201 | handlers.extend([ |
|
201 | handlers.extend([ | |
202 | (r"/files/(.*)", AuthenticatedFileHandler, {'path' : settings['notebook_manager'].notebook_dir}), |
|
202 | (r"/files/(.*)", AuthenticatedFileHandler, {'path' : settings['notebook_manager'].notebook_dir}), | |
203 | ]) |
|
203 | ]) |
1 | NO CONTENT: file renamed from IPython/frontend/html/notebook/kernels/__init__.py to IPython/frontend/html/notebook/services/clusters/__init__.py |
|
NO CONTENT: file renamed from IPython/frontend/html/notebook/kernels/__init__.py to IPython/frontend/html/notebook/services/clusters/__init__.py |
1 | NO CONTENT: file renamed from IPython/frontend/html/notebook/clusters/clustermanager.py to IPython/frontend/html/notebook/services/clusters/clustermanager.py |
|
NO CONTENT: file renamed from IPython/frontend/html/notebook/clusters/clustermanager.py to IPython/frontend/html/notebook/services/clusters/clustermanager.py |
@@ -20,7 +20,7 b' from tornado import web' | |||||
20 |
|
20 | |||
21 | from zmq.utils import jsonapi |
|
21 | from zmq.utils import jsonapi | |
22 |
|
22 | |||
23 | from ..base.handlers import IPythonHandler |
|
23 | from ...base.handlers import IPythonHandler | |
24 |
|
24 | |||
25 | #----------------------------------------------------------------------------- |
|
25 | #----------------------------------------------------------------------------- | |
26 | # Cluster handlers |
|
26 | # Cluster handlers |
1 | NO CONTENT: file renamed from IPython/frontend/html/notebook/notebooks/__init__.py to IPython/frontend/html/notebook/services/kernels/__init__.py |
|
NO CONTENT: file renamed from IPython/frontend/html/notebook/notebooks/__init__.py to IPython/frontend/html/notebook/services/kernels/__init__.py |
@@ -23,8 +23,8 b' from zmq.utils import jsonapi' | |||||
23 |
|
23 | |||
24 | from IPython.utils.jsonutil import date_default |
|
24 | from IPython.utils.jsonutil import date_default | |
25 |
|
25 | |||
26 | from ..base.handlers import IPythonHandler |
|
26 | from ...base.handlers import IPythonHandler | |
27 | from ..base.zmqhandlers import AuthenticatedZMQStreamHandler |
|
27 | from ...base.zmqhandlers import AuthenticatedZMQStreamHandler | |
28 |
|
28 | |||
29 | #----------------------------------------------------------------------------- |
|
29 | #----------------------------------------------------------------------------- | |
30 | # Kernel handlers |
|
30 | # Kernel handlers |
1 | NO CONTENT: file renamed from IPython/frontend/html/notebook/kernels/kernelmanager.py to IPython/frontend/html/notebook/services/kernels/kernelmanager.py |
|
NO CONTENT: file renamed from IPython/frontend/html/notebook/kernels/kernelmanager.py to IPython/frontend/html/notebook/services/kernels/kernelmanager.py |
1 | NO CONTENT: file renamed from IPython/frontend/html/notebook/notebooks/azurenbmanager.py to IPython/frontend/html/notebook/services/notebooks/azurenbmanager.py |
|
NO CONTENT: file renamed from IPython/frontend/html/notebook/notebooks/azurenbmanager.py to IPython/frontend/html/notebook/services/notebooks/azurenbmanager.py |
1 | NO CONTENT: file renamed from IPython/frontend/html/notebook/notebooks/filenbmanager.py to IPython/frontend/html/notebook/services/notebooks/filenbmanager.py |
|
NO CONTENT: file renamed from IPython/frontend/html/notebook/notebooks/filenbmanager.py to IPython/frontend/html/notebook/services/notebooks/filenbmanager.py |
@@ -22,7 +22,7 b' from zmq.utils import jsonapi' | |||||
22 |
|
22 | |||
23 | from IPython.utils.jsonutil import date_default |
|
23 | from IPython.utils.jsonutil import date_default | |
24 |
|
24 | |||
25 | from ..base.handlers import IPythonHandler, authenticate_unless_readonly |
|
25 | from ...base.handlers import IPythonHandler, authenticate_unless_readonly | |
26 |
|
26 | |||
27 | #----------------------------------------------------------------------------- |
|
27 | #----------------------------------------------------------------------------- | |
28 | # Notebook web service handlers |
|
28 | # Notebook web service handlers |
1 | NO CONTENT: file renamed from IPython/frontend/html/notebook/notebooks/nbmanager.py to IPython/frontend/html/notebook/services/notebooks/nbmanager.py |
|
NO CONTENT: file renamed from IPython/frontend/html/notebook/notebooks/nbmanager.py to IPython/frontend/html/notebook/services/notebooks/nbmanager.py |
1 | NO CONTENT: file renamed from IPython/frontend/html/notebook/notebooks/tests/__init__.py to IPython/frontend/html/notebook/services/notebooks/tests/__init__.py |
|
NO CONTENT: file renamed from IPython/frontend/html/notebook/notebooks/tests/__init__.py to IPython/frontend/html/notebook/services/notebooks/tests/__init__.py |
1 | NO CONTENT: file renamed from IPython/frontend/html/notebook/notebooks/tests/test_nbmanager.py to IPython/frontend/html/notebook/services/notebooks/tests/test_nbmanager.py |
|
NO CONTENT: file renamed from IPython/frontend/html/notebook/notebooks/tests/test_nbmanager.py to IPython/frontend/html/notebook/services/notebooks/tests/test_nbmanager.py |
General Comments 0
You need to be logged in to leave comments.
Login now