##// END OF EJS Templates
add path2url and url2path to html.utils
add path2url and url2path to html.utils

File last commit:

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