From b8002bea8fb0f96637e3bb15bfc5b55ea213234c 2014-02-05 17:58:52 From: Brian E. Granger Date: 2014-02-05 17:58:52 Subject: [PATCH] Another variation of the dashboard page title. --- diff --git a/IPython/html/tree/handlers.py b/IPython/html/tree/handlers.py index e0979c4..6be48ed 100644 --- a/IPython/html/tree/handlers.py +++ b/IPython/html/tree/handlers.py @@ -44,12 +44,11 @@ class TreeHandler(IPythonHandler): if len(comps) > 3: for i in range(len(comps)-2): comps.pop(0) - comps.insert(0, '...') page_title = url_escape(url_path_join(*comps)) if page_title: - return '/'+page_title+'/' + return page_title+'/' else: - return '/' + return 'Home' @web.authenticated def get(self, path='', name=None):