This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository python-x2go. from 7686e68 Handle broker setups that don't require credentials. Connection can be established simply by leaving the password (and authid) empty. new 6f43617 typo fix new 5bf0169 no xconfig_config_file on non-Windows systems 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: x2go/client.py | 2 +- x2go/inifiles.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/python-x2go.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository python-x2go. commit 5bf01694a237dc85eab61881fb798e2286af653d Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon Apr 14 16:26:56 2014 +0200 no xconfig_config_file on non-Windows systems --- x2go/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x2go/client.py b/x2go/client.py index c1cefb9..7397148 100644 --- a/x2go/client.py +++ b/x2go/client.py @@ -301,7 +301,6 @@ class X2GoClient(object): _sessions_config_file = os.path.join(self.client_rootdir, _X2GO_SESSIONPROFILES_FILENAME) _settings_config_file = os.path.join(self.client_rootdir, _X2GO_SETTINGS_FILENAME) _printing_config_file = os.path.join(self.client_rootdir, _X2GO_PRINTING_FILENAME) - _xconfig_config_file = os.path.join(self.client_rootdir, _X2GO_XCONFIG_FILENAME) self.session_profiles = self.profiles_backend(config_files=[_sessions_config_file], logger=self.logger, broker_url=broker_url, broker_password=broker_password, broker_noauth=broker_noauth) self.client_settings = self.settings_backend(config_files=[_settings_config_file], logger=self.logger) self.client_printing = self.printing_backend(config_files=[_printing_config_file], client_instance=self, logger=self.logger) @@ -313,6 +312,7 @@ class X2GoClient(object): if _X2GOCLIENT_OS == 'Windows' and start_xserver: if self.client_rootdir: + _xconfig_config_file = os.path.join(self.client_rootdir, _X2GO_XCONFIG_FILENAME) self.client_xconfig = X2GoClientXConfig(config_files=[_xconfig_config_file], logger=self.logger) else: self.client_xconfig = X2GoClientXConfig(logger=self.logger) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/python-x2go.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository python-x2go. commit 6f43617e82998f75efa15d1c4996215155f3b909 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon Apr 14 16:26:28 2014 +0200 typo fix --- x2go/inifiles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x2go/inifiles.py b/x2go/inifiles.py index 84a3e51..6b0b81e 100644 --- a/x2go/inifiles.py +++ b/x2go/inifiles.py @@ -203,7 +203,7 @@ class X2GoIniFile(object): For writing the first of the C{config_files} specified on instance construction that is writable will be used. - @return: C{True} if the user config file has been successfully writte, C{False} otherwise. + @return: C{True} if the user config file has been successfully written, C{False} otherwise. @rtype: C{bool} """ -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/python-x2go.git