handlers.py
92 lines
| 2.7 KiB
| text/x-python
|
PythonLexer
Brian E. Granger
|
r10642 | """Tornado handlers for the tree view. | ||
Brian E. Granger
|
r10641 | |||
Authors: | ||||
* Brian Granger | ||||
""" | ||||
#----------------------------------------------------------------------------- | ||||
Brian E. Granger
|
r10642 | # Copyright (C) 2011 The IPython Development Team | ||
Brian E. Granger
|
r10641 | # | ||
# Distributed under the terms of the BSD License. The full license is in | ||||
# the file COPYING, distributed as part of this software. | ||||
#----------------------------------------------------------------------------- | ||||
#----------------------------------------------------------------------------- | ||||
# Imports | ||||
#----------------------------------------------------------------------------- | ||||
MinRK
|
r11644 | from tornado import web | ||
from ..base.handlers import IPythonHandler | ||||
Brian E. Granger
|
r10641 | |||
#----------------------------------------------------------------------------- | ||||
Brian E. Granger
|
r10642 | # Handlers | ||
Brian E. Granger
|
r10641 | #----------------------------------------------------------------------------- | ||
class ProjectDashboardHandler(IPythonHandler): | ||||
MinRK
|
r11644 | @web.authenticated | ||
Brian E. Granger
|
r10641 | def get(self): | ||
Brian E. Granger
|
r10651 | self.write(self.render_template('tree.html', | ||
Brian E. Granger
|
r10641 | project=self.project, | ||
project_component=self.project.split('/'), | ||||
Zachary Sailer
|
r13033 | notebook_path= "/" | ||
Brian E. Granger
|
r10641 | )) | ||
Brian E. Granger
|
r10647 | |||
Zachary Sailer
|
r12990 | class ProjectPathDashboardHandler(IPythonHandler): | ||
Zachary Sailer
|
r13014 | @web.authenticated | ||
Zachary Sailer
|
r12990 | def get(self, notebook_path): | ||
nbm = self.notebook_manager | ||||
name, path = nbm.named_notebook_path(notebook_path) | ||||
Zachary Sailer
|
r13033 | if name is not None: | ||
Paul Ivanov
|
r13030 | # ends with .ipynb | ||
self.redirect(self.base_project_url + 'notebooks' + path + name) | ||||
Zachary Sailer
|
r12990 | else: | ||
Paul Ivanov
|
r13030 | project = self.project + path | ||
Zachary Sailer
|
r13012 | path = nbm.url_encode(path) | ||
Zachary Sailer
|
r12990 | self.write(self.render_template('tree.html', | ||
project=project, | ||||
Zachary Sailer
|
r13033 | project_component=project.split('/')[:-1], | ||
Zachary Sailer
|
r12990 | notebook_path=path, | ||
Paul Ivanov
|
r13030 | notebook_name=name)) | ||
Zachary Sailer
|
r12990 | |||
class TreeRedirectHandler(IPythonHandler): | ||||
Zachary Sailer
|
r13014 | @web.authenticated | ||
Zachary Sailer
|
r12990 | def get(self): | ||
url = self.base_project_url + 'tree' | ||||
self.redirect(url) | ||||
Zachary Sailer
|
r12992 | class TreePathRedirectHandler(IPythonHandler): | ||
Zachary Sailer
|
r13014 | @web.authenticated | ||
Zachary Sailer
|
r12992 | def get(self, notebook_path): | ||
Zachary Sailer
|
r13033 | url = self.base_project_url + 'tree/'+ notebook_path+'/' | ||
Zachary Sailer
|
r12992 | self.redirect(url) | ||
Zachary Sailer
|
r12990 | class ProjectRedirectHandler(IPythonHandler): | ||
Zachary Sailer
|
r13014 | @web.authenticated | ||
Zachary Sailer
|
r12990 | def get(self): | ||
url = self.base_project_url + 'tree' | ||||
self.redirect(url) | ||||
Zachary Sailer
|
r13003 | |||
Brian E. Granger
|
r10647 | #----------------------------------------------------------------------------- | ||
# URL to handler mappings | ||||
#----------------------------------------------------------------------------- | ||||
Zachary Sailer
|
r12990 | _notebook_path_regex = r"(?P<notebook_path>.+)" | ||
default_handlers = [ | ||||
Zachary Sailer
|
r13033 | (r"/tree/%s/" % _notebook_path_regex, ProjectPathDashboardHandler), | ||
(r"/tree/%s" % _notebook_path_regex, TreePathRedirectHandler), | ||||
Zachary Sailer
|
r12990 | (r"/tree", ProjectDashboardHandler), | ||
(r"/tree/", TreeRedirectHandler), | ||||
(r"/", ProjectRedirectHandler) | ||||
] | ||||