Show More
|
1 | NO CONTENT: file renamed from IPython/html/texteditor/__init__.py to IPython/html/edit/__init__.py |
@@ -17,7 +17,7 b' class EditorHandler(IPythonHandler):' | |||
|
17 | 17 | raise web.HTTPError(404, u'File does not exist: %s' % path) |
|
18 | 18 | |
|
19 | 19 | basename = path.rsplit('/', 1)[-1] |
|
20 |
self.write(self.render_template(' |
|
|
20 | self.write(self.render_template('edit.html', | |
|
21 | 21 | file_path=url_escape(path), |
|
22 | 22 | basename=basename, |
|
23 | 23 | page_title=basename + " (editing)", |
@@ -199,7 +199,7 b' class NotebookWebApplication(web.Application):' | |||
|
199 | 199 | handlers.extend(load_handlers('notebook.handlers')) |
|
200 | 200 | handlers.extend(load_handlers('nbconvert.handlers')) |
|
201 | 201 | handlers.extend(load_handlers('kernelspecs.handlers')) |
|
202 |
handlers.extend(load_handlers(' |
|
|
202 | handlers.extend(load_handlers('edit.handlers')) | |
|
203 | 203 | handlers.extend(load_handlers('services.config.handlers')) |
|
204 | 204 | handlers.extend(load_handlers('services.kernels.handlers')) |
|
205 | 205 | handlers.extend(load_handlers('services.contents.handlers')) |
|
1 | NO CONTENT: file renamed from IPython/html/static/texteditor/js/editor.js to IPython/html/static/edit/js/editor.js |
@@ -7,9 +7,9 b' require([' | |||
|
7 | 7 | 'base/js/page', |
|
8 | 8 | 'base/js/events', |
|
9 | 9 | 'contents', |
|
10 |
' |
|
|
11 |
' |
|
|
12 |
' |
|
|
10 | 'edit/js/editor', | |
|
11 | 'edit/js/menubar', | |
|
12 | 'edit/js/notificationarea', | |
|
13 | 13 | 'custom/custom', |
|
14 | 14 | ], function( |
|
15 | 15 | IPython, |
|
1 | NO CONTENT: file renamed from IPython/html/static/texteditor/js/menubar.js to IPython/html/static/edit/js/menubar.js |
|
1 | NO CONTENT: file renamed from IPython/html/static/texteditor/js/notificationarea.js to IPython/html/static/edit/js/notificationarea.js |
@@ -68,5 +68,5 b' data-file-path="{{file_path}}"' | |||
|
68 | 68 | |
|
69 | 69 | {{super()}} |
|
70 | 70 | |
|
71 |
<script src="{{ static_url(" |
|
|
71 | <script src="{{ static_url("edit/js/main.js") }}" type="text/javascript" charset="utf-8"></script> | |
|
72 | 72 | {% endblock %} |
General Comments 0
You need to be logged in to leave comments.
Login now