diff --git a/IPython/frontend/html/notebook/handlers.py b/IPython/frontend/html/notebook/handlers.py index 06bfa883d2c..c4a755125fa 100644 --- a/IPython/frontend/html/notebook/handlers.py +++ b/IPython/frontend/html/notebook/handlers.py @@ -208,7 +208,7 @@ class LoginHandler(AuthenticatedHandler): def _render(self, message=None): self.render('login.html', - next=self.get_argument('next', default='/'), + next=self.get_argument('next', default=self.application.ipython_app.base_project_url), read_only=self.read_only, logged_in=self.logged_in, login_available=self.login_available, @@ -218,7 +218,7 @@ def _render(self, message=None): def get(self): if self.current_user: - self.redirect(self.get_argument('next', default='/')) + self.redirect(self.get_argument('next', default=self.application.ipython_app.base_project_url)) else: self._render() @@ -231,7 +231,7 @@ def post(self): self._render(message={'error': 'Invalid password'}) return - self.redirect(self.get_argument('next', default='/')) + self.redirect(self.get_argument('next', default=self.application.ipython_app.base_project_url)) class LogoutHandler(AuthenticatedHandler): diff --git a/IPython/frontend/html/notebook/notebookapp.py b/IPython/frontend/html/notebook/notebookapp.py index 09fef2e19d3..38ff3e0d9af 100644 --- a/IPython/frontend/html/notebook/notebookapp.py +++ b/IPython/frontend/html/notebook/notebookapp.py @@ -140,15 +140,6 @@ def __init__(self, ipython_app, kernel_manager, notebook_manager, (r"/clusters/%s/%s" % (_profile_regex, _cluster_action_regex), ClusterActionHandler), (r"/clusters/%s" % _profile_regex, ClusterProfileHandler), ] - settings = dict( - template_path=os.path.join(os.path.dirname(__file__), "templates"), - static_path=os.path.join(os.path.dirname(__file__), "static"), - cookie_secret=os.urandom(1024), - login_url="/login", - ) - - # allow custom overrides for the tornado web app. - settings.update(settings_overrides) # Python < 2.6.5 doesn't accept unicode keys in f(**kwargs), and # base_project_url will always be unicode, which will in turn @@ -160,6 +151,16 @@ def __init__(self, ipython_app, kernel_manager, notebook_manager, # and thus guaranteed to be ASCII: 'héllo' is really 'h%C3%A9llo'. base_project_url = py3compat.unicode_to_str(base_project_url, 'ascii') + settings = dict( + template_path=os.path.join(os.path.dirname(__file__), "templates"), + static_path=os.path.join(os.path.dirname(__file__), "static"), + cookie_secret=os.urandom(1024), + login_url="%s/login"%(base_project_url.rstrip('/')), + ) + + # allow custom overrides for the tornado web app. + settings.update(settings_overrides) + # prepend base_project_url onto the patterns that we match new_handlers = [] for handler in handlers: diff --git a/IPython/frontend/html/notebook/static/js/loginwidget.js b/IPython/frontend/html/notebook/static/js/loginwidget.js index 288772a940b..d0d739e3b6a 100644 --- a/IPython/frontend/html/notebook/static/js/loginwidget.js +++ b/IPython/frontend/html/notebook/static/js/loginwidget.js @@ -10,6 +10,7 @@ //============================================================================ var IPython = (function (IPython) { + var base_url = $('body').data('baseProjectUrl'); var LoginWidget = function (selector) { this.selector = selector; @@ -29,10 +30,10 @@ var IPython = (function (IPython) { LoginWidget.prototype.bind_events = function () { var that = this; this.element.find("button#logout").click(function () { - window.location = "/logout"; + window.location = base_url+"logout"; }); this.element.find("button#login").click(function () { - window.location = "/login"; + window.location = base_url+"login"; }); }; diff --git a/IPython/frontend/html/notebook/templates/login.html b/IPython/frontend/html/notebook/templates/login.html index 34f2a0e1d12..2ac7b653d21 100644 --- a/IPython/frontend/html/notebook/templates/login.html +++ b/IPython/frontend/html/notebook/templates/login.html @@ -16,7 +16,7 @@
{% if login_available %} -
+ Password:
diff --git a/IPython/frontend/html/notebook/templates/logout.html b/IPython/frontend/html/notebook/templates/logout.html index e31f0ac1c77..9ea495bb3de 100644 --- a/IPython/frontend/html/notebook/templates/logout.html +++ b/IPython/frontend/html/notebook/templates/logout.html @@ -23,9 +23,9 @@ {% end %} {% if read_only or not login_available %} - Proceed to the dashboard. + Proceed to the dashboard. {% else %} - Proceed to the login page. + Proceed to the login page. {% end %}