The branch, master has been updated via f66e48534d3b6970bb33664bb9fc5af6a4525532 (commit) from 0be3949d65568f30637210d778e40439af4cff42 (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 f66e48534d3b6970bb33664bb9fc5af6a4525532 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Thu Jul 28 16:15:25 2011 +0200 Do not ignore usekbd session profile option anymore, closes upstream issue #81. ----------------------------------------------------------------------- Summary of changes: debian/changelog | 1 + x2go/utils.py | 6 +++++- 2 files changed, 6 insertions(+), 1 deletions(-) The diff of changes is: diff --git a/debian/changelog b/debian/changelog index 423304f..06a5979 100644 --- a/debian/changelog +++ b/debian/changelog @@ -14,6 +14,7 @@ python-x2go (0.1.1.5-0~x2go1) unstable; urgency=low - If sound is set to false in session profile use snd_system='none' in terminal session. - Stabilize sshfs related problems in case remote user is not in fuse group. + - Do not ignore usekbd session profile option anymore, closes upstream issue #81. -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Tue, 19 Jul 2011 20:44:30 +0200 diff --git a/x2go/utils.py b/x2go/utils.py index 2d8eedc..fa2363b 100644 --- a/x2go/utils.py +++ b/x2go/utils.py @@ -228,11 +228,15 @@ def _convert_SessionProfileOptions_2_SessionParams(_options): if _params['mimebox_action'] not in _X2GO_MIMEBOX_ACTIONS.keys(): _params['mimebox_action'] = 'OPEN' + if not _options['usekbd']: + _params['kbtype'] = 'null/null' + _params['kblayout'] = 'null' + del _params['usekbd'] + # currently known but ignored in Python X2go _ignored_options = [ 'dpi', 'setdpi', - 'usekbd', 'startsoundsystem', 'soundtunnel', 'defsndport', hooks/post-receive -- python-x2go.git (Python X2go Client API) 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 "python-x2go.git" (Python X2go Client API).