The branch, master has been updated via c5981026bd3dc77f6d33adf8d170d606e65de9fd (commit) from 61081484edc970a30a3101813b45cfa71365ab05 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit c5981026bd3dc77f6d33adf8d170d606e65de9fd Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon Nov 4 12:37:09 2013 +0100 New authentication mechanism: none. Always authenticate a user, even if password is not provided or wrong. ----------------------------------------------------------------------- Summary of changes: debian/changelog | 2 ++ .../{base_authmech.py => none_authmech.py} | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) copy x2gobroker/authmechs/{base_authmech.py => none_authmech.py} (97%) The diff of changes is: diff --git a/debian/changelog b/debian/changelog index 04d5f12..180f147 100644 --- a/debian/changelog +++ b/debian/changelog @@ -52,6 +52,8 @@ x2gobroker (0.0.3.0-0~x2go1) UNRELEASED; urgency=low AssertionErrors whenever we trigger a tornado.web.HTTPError. - Add password prompt to x2gobroker-testauth. Password prompt is used if the --password option is not used. + - New authentication mechanism: none. Always authenticate a user, even if + password is not provided or wrong. * /debian/control: + Replace LDAP support with session brokerage support in LONG_DESCRIPTION. + Recommend apache2 and libapache2-mod-wsgi for x2gobroker-wsgi. diff --git a/x2gobroker/authmechs/base_authmech.py b/x2gobroker/authmechs/none_authmech.py similarity index 97% copy from x2gobroker/authmechs/base_authmech.py copy to x2gobroker/authmechs/none_authmech.py index 5ed362f..b5f1b11 100644 --- a/x2gobroker/authmechs/base_authmech.py +++ b/x2gobroker/authmechs/none_authmech.py @@ -21,4 +21,4 @@ class X2GoBrokerAuthMech(object): def authenticate(self, username, password): - return False + return True hooks/post-receive -- x2gobroker.git (HTTP(S) Session broker for X2Go) This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "x2gobroker.git" (HTTP(S) Session broker for X2Go).