Show More
@@ -103,7 +103,8 class NotebookWebApplication(web.Application): | |||||
103 | (r"/kernels/%s/shell" % _kernel_id_regex, ShellHandler), |
|
103 | (r"/kernels/%s/shell" % _kernel_id_regex, ShellHandler), | |
104 | (r"/notebooks", NotebookRootHandler), |
|
104 | (r"/notebooks", NotebookRootHandler), | |
105 | (r"/notebooks/%s" % _notebook_id_regex, NotebookHandler), |
|
105 | (r"/notebooks/%s" % _notebook_id_regex, NotebookHandler), | |
106 | (r"/rstservice/render", RSTHandler) |
|
106 | (r"/rstservice/render", RSTHandler), | |
|
107 | (r"/local/(.*)", web.StaticFileHandler, {'path' : notebook_manager.notebook_dir}), | |||
107 | ] |
|
108 | ] | |
108 | settings = dict( |
|
109 | settings = dict( | |
109 | template_path=os.path.join(os.path.dirname(__file__), "templates"), |
|
110 | template_path=os.path.join(os.path.dirname(__file__), "templates"), |
General Comments 0
You need to be logged in to leave comments.
Login now