The branch, release/0.1.1.x has been updated via 7be509ca50a0767fd13f9a358b18cde3e44a3d0d (commit) from 6fed6846c80b67eeac3c26da70987d63f0371893 (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 7be509ca50a0767fd13f9a358b18cde3e44a3d0d 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 d69b3ba..eb43e53 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,7 @@ python-x2go (0.1.1.5-0~x2go1) UNRELEASED; 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 47eeea1..5d023d9 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).