commit/galaxy-central: dan: Fix for frames inside of frames issue introduced in 5db0da0007fc. Seen when require_login=True.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/36998f5a7ddb/ changeset: 36998f5a7ddb user: dan date: 2011-11-30 16:20:15 summary: Fix for frames inside of frames issue introduced in 5db0da0007fc. Seen when require_login=True. affected #: 1 file diff -r 834de698004e1306b4424d0a8dbd3e7c1938ee9c -r 36998f5a7ddb12ee93068b8001a09b84a47944f4 lib/galaxy/web/framework/__init__.py --- a/lib/galaxy/web/framework/__init__.py +++ b/lib/galaxy/web/framework/__init__.py @@ -407,6 +407,7 @@ def _ensure_logged_in_user( self, environ, session_cookie ): # The value of session_cookie can be one of # 'galaxysession' or 'galaxycommunitysession' + # Currently this method does nothing unless session_cookie is 'galaxysession' if session_cookie == 'galaxysession': # TODO: re-engineer to eliminate the use of allowed_paths # as maintenance overhead is far too high. @@ -436,8 +437,8 @@ host = None if host in UCSC_SERVERS: return - if self.request.path not in allowed_paths: - self.response.send_redirect( url_for( controller='root', action='index' ) ) + if self.request.path not in allowed_paths: + self.response.send_redirect( url_for( controller='root', action='index' ) ) def __create_new_session( self, prev_galaxy_session=None, user_for_new_session=None ): """ Create a new GalaxySession for this request, possibly with a connection Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
Bitbucket