This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2gobroker. from a089616 wrap too-long changelog line new 8aefc57 JSON webUI: fine-tuning of JSON keys new 85bf41e JSON webUI: rename task listsessions to listprofiles The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: x2gobroker/web/json.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2gobroker.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gobroker. commit 8aefc5770d905a60b8d05dfdfd98e0a2a9f6c4f7 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Sun Mar 9 12:36:13 2014 +0100 JSON webUI: fine-tuning of JSON keys --- x2gobroker/web/json.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x2gobroker/web/json.py b/x2gobroker/web/json.py index c7c8d9f..b40ea76 100644 --- a/x2gobroker/web/json.py +++ b/x2gobroker/web/json.py @@ -128,12 +128,12 @@ class X2GoBrokerWeb(_RequestHandler): ### CONFIRM SUCCESSFUL AUTHENTICATION FIRST ### payload.update({ - 'auth_status': 'Access granted', + 'auth-status': 'Access granted', }) if next_cookie is not None: payload.update({ - 'authid': next_cookie, + 'next-authid': next_cookie, }) ### -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2gobroker.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gobroker. commit 85bf41e89544ce8422abf1d9e0b266f287b672ef Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Sun Mar 9 12:36:44 2014 +0100 JSON webUI: rename task listsessions to listprofiles --- x2gobroker/web/json.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/x2gobroker/web/json.py b/x2gobroker/web/json.py index b40ea76..807672e 100644 --- a/x2gobroker/web/json.py +++ b/x2gobroker/web/json.py @@ -116,6 +116,8 @@ class X2GoBrokerWeb(_RequestHandler): profile_id = self.get_argument('sid', default='') new_password = self.get_argument('newpass', default='') + if task == 'listsessions': task = 'listprofiles' + payload = { 'task': task, } -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2gobroker.git