This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2gobroker. from e1368e5 x2gobroker/uccsjson.py: Hide private Python class properties from JSON dict (like <obj>._api_version). new 6e4035e UCCS frontend: Fix API version check. new 541ff47 UCSS frontend: Propagate API version onwards to the X2GoServer JSON generator class. 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/uccs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) -- Alioth's /home/x2go-admin/maintenancescripts/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 6e4035e309787a9a78cacaaa0ae164c6eee5b834 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Fri May 4 12:20:26 2018 +0200 UCCS frontend: Fix API version check. --- x2gobroker/web/uccs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x2gobroker/web/uccs.py b/x2gobroker/web/uccs.py index 7b15147..9e0bb8e 100644 --- a/x2gobroker/web/uccs.py +++ b/x2gobroker/web/uccs.py @@ -196,7 +196,7 @@ class X2GoBrokerWebAPI(tornado.web.RequestHandler): if _cmd.upper() in x2gobroker.defaults.X2GO_DESKTOP_SESSIONS: _cmd = _cmd.upper() - if api_version == 4: + if self.api_version == 4: ts.set_session_type(_cmd) else: ts.set_command(_cmd) -- Alioth's /home/x2go-admin/maintenancescripts/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 541ff47c966764cd2aeabe5518b30fb377792138 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Fri May 4 12:27:35 2018 +0200 UCSS frontend: Propagate API version onwards to the X2GoServer JSON generator class. --- x2gobroker/web/uccs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/x2gobroker/web/uccs.py b/x2gobroker/web/uccs.py index 9e0bb8e..fd3c1bd 100644 --- a/x2gobroker/web/uccs.py +++ b/x2gobroker/web/uccs.py @@ -191,6 +191,7 @@ class X2GoBrokerWebAPI(tornado.web.RequestHandler): host='{hostname}:{port}'.format(hostname=_hostname, port=_port), name=profile['name'], username=profile['user'], + api_version=self.api_version, ) _cmd = profile['command'] if _cmd.upper() in x2gobroker.defaults.X2GO_DESKTOP_SESSIONS: -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gobroker.git