The branch, twofactorauth has been updated via 2e09bcaacd788687daa35ce8379da22bc26bf6b7 (commit) from 4b05f61aec2d1e9f8dfde42416be4883782c40b5 (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 ----------------------------------------------------------------- ----------------------------------------------------------------------- Summary of changes: x2go/__init__.py | 11 +++++++++++ x2go/log.py | 4 ++++ x2go/x2go_exceptions.py | 28 ++++++++++++++++++++++++++++ 3 files changed, 43 insertions(+) The diff of changes is: diff --git a/x2go/__init__.py b/x2go/__init__.py index 3183204..b604616 100644 --- a/x2go/__init__.py +++ b/x2go/__init__.py @@ -206,3 +206,14 @@ from defaults import X2GO_SSH_ROOTDIR if X2GOCLIENT_OS == 'Windows': from xserver import X2GoClientXConfig, X2GoXServer +# compat section +X2goClient = X2GoClient +X2goSessionProfiles = X2GoSessionProfiles +X2goClientPrinting = X2GoClientPrinting +X2goClientSettings = X2GoClientSettings +X2goSession = X2GoSession +X2goSSHProxy = X2GoSSHProxy + +if X2GOCLIENT_OS == 'Windows': + X2goClientXConfig = X2GoClientXconfig + X2goXServer = X2GoXServer diff --git a/x2go/log.py b/x2go/log.py index 8b5ece3..58f47d1 100644 --- a/x2go/log.py +++ b/x2go/log.py @@ -184,3 +184,7 @@ class X2GoLogger(object): """ self.loglevel = self.loglevel ^ loglevel_DEBUG_SFTPXFER + +# compat section +X2goLogger = X2GoLogger + diff --git a/x2go/x2go_exceptions.py b/x2go/x2go_exceptions.py index ad19a41..44c6aae 100644 --- a/x2go/x2go_exceptions.py +++ b/x2go/x2go_exceptions.py @@ -69,3 +69,31 @@ class X2GoTimeOutException(_X2GoException): pass if _X2GOCLIENT_OS != 'Windows': # faking Windows errors on non-Windows systems... class WindowsError(_X2GoException): pass + +# compat section +class X2goClientException(_X2GoException): pass +class X2goClientPrintingException(_X2GoException): pass +class X2goClientSettingsException(_X2GoException): pass +class X2goSessionException(_X2GoException): pass +class X2goControlSessionException(_X2GoException): pass +class X2goRemoteHomeException(_X2GoException): pass +class X2goHostKeyException(_X2GoException): pass +class X2goSSHProxyHostKeyException(_X2GoException): pass +class X2goTerminalSessionException(_X2GoException): pass +class X2goSessionCacheException(_X2GoException): pass +class X2goUserException(_X2GoException): pass +class X2goProfileException(_X2GoException): pass +class X2goSessionRegistryException(_X2GoException): pass +class X2goFwTunnelException(_X2GoException): pass +class X2goRevFwTunnelException(_X2GoException): pass +class X2goPrintException(_X2GoException): pass +class X2goPrintQueueException(_X2GoException): pass +class X2goPrintActionException(_X2GoException): pass +class X2goProxyException(_X2GoException): pass +class X2goMIMEboxActionException(_X2GoException): pass +class X2goMIMEboxQueueException(_X2GoException): pass +class X2goSSHProxyException(_X2GoException): pass +class X2goSSHProxyAuthenticationException(_X2GoException): pass +class X2goNotImplementedYetException(_X2GoException): pass +class X2goDesktopSharingException(_X2GoException): pass +class X2goTimeOutException(_X2GoException): pass 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).