commit/galaxy-central: dannon: Case sensitivity note for login not found error.
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/8e05f9425723/ changeset: 8e05f9425723 user: dannon date: 2011-07-18 21:02:37 summary: Case sensitivity note for login not found error. affected #: 3 files (129 bytes) --- a/lib/galaxy/web/controllers/mobile.py Mon Jul 18 15:09:49 2011 +0200 +++ b/lib/galaxy/web/controllers/mobile.py Mon Jul 18 15:02:37 2011 -0400 @@ -47,7 +47,7 @@ error = password_error = None user = trans.sa_session.query( model.User ).filter_by( email = email ).first() if not user: - error = "No such user" + error = "No such user (please note that login is case sensitive)" elif user.deleted: error = "This account has been marked deleted, contact your Galaxy administrator to restore the account." elif user.external: --- a/lib/galaxy/web/controllers/user.py Mon Jul 18 15:09:49 2011 +0200 +++ b/lib/galaxy/web/controllers/user.py Mon Jul 18 15:02:37 2011 -0400 @@ -394,7 +394,7 @@ success = False user = trans.sa_session.query( trans.app.model.User ).filter( trans.app.model.User.table.c.email==email ).first() if not user: - message = "No such user" + message = "No such user (please note that login is case sensitive)" status = 'error' elif user.deleted: message = "This account has been marked deleted, contact your Galaxy administrator to restore the account." --- a/scripts/check_galaxy.py Mon Jul 18 15:09:49 2011 +0200 +++ b/scripts/check_galaxy.py Mon Jul 18 15:02:37 2011 -0400 @@ -292,7 +292,7 @@ self.in_span = False def handle_data(self, data): if self.in_span: - if data == "No such user": + if data == "No such user (please note that login is case sensitive)": self.no_user = True elif data == "Invalid password": self.bad_pw = True 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