[X2Go-Commits] python-x2go.git - release/0.4.0.x (branch) updated: 0.2.0.5-4-g8acf5a8

X2Go dev team git-admin at x2go.org
Tue Jan 7 16:18:06 CET 2014


The branch, release/0.4.0.x has been updated
       via  8acf5a8dde4daa53fa696b1188ed32e4f934fe6b (commit)
      from  ca6ee3d9c05a9c67adaf02b39fe1b66516bdebcd (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:
 debian/changelog |    1 +
 x2go/client.py   |    8 ++++++++
 2 files changed, 9 insertions(+)

The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 52f8d49..2ae2cb9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,7 @@ python-x2go (0.2.0.6-0~x2go1) UNRELEASED; urgency=low
     - Ignore non-master sessions before calling the foldersharing-
       not-available hook.
     - Add several double underscore method aliases in X2goSession class.
+    - Add several double underscore method aliases in X2goClient class.
 
  -- Mike Gabriel <mike.gabriel at das-netzwerkteam.de>  Tue, 12 Jun 2012 15:51:52 +0200
 
diff --git a/x2go/client.py b/x2go/client.py
index c9527bb..e52b535 100644
--- a/x2go/client.py
+++ b/x2go/client.py
@@ -1014,6 +1014,7 @@ class X2goClient(object):
 
         """
         return self.session_registry.session_summary(session_uuid)
+    __get_session_summary = get_session_summary
 
     ###
     ### WRAPPER METHODS FOR X2goSession objects
@@ -1180,6 +1181,7 @@ class X2goClient(object):
 
         """
         return self.session_registry(session_uuid).set_username(username=username)
+    __set_session_username = set_session_username
 
     def check_session_host(self, session_uuid):
         """\
@@ -2269,6 +2271,7 @@ class X2goClient(object):
         for session_uuid in self.client_connected_sessions():
             _all_alive = _all_alive and self.server_is_alive(session_uuid)
         return _all_alive
+    __all_servers_are_alive = all_servers_are_alive
 
     def server_valid_x2gouser(self, session_uuid, username=None):
         """\
@@ -2331,6 +2334,7 @@ class X2goClient(object):
 
         """
         return session_name in self._X2goClient__server_running_sessions(session_uuid)
+    __server_has_running_session_of_name = server_has_running_session_of_name
 
     def server_suspended_sessions(self, session_uuid):
         """\
@@ -2362,6 +2366,7 @@ class X2goClient(object):
 
         """
         return len(self._X2goClient__server_suspended_sessions(session_uuid)) > 0
+    __server_has_suspended_sessions = server_has_suspended_sessions
 
     def server_has_suspended_session_of_name(self, session_uuid, session_name):
         """\
@@ -2376,6 +2381,7 @@ class X2goClient(object):
 
         """
         return session_name in self._X2goClient__server_suspended_sessions(session_uuid)
+    __server_has_suspended_session_of_name = server_has_suspended_session_of_name
 
     ###
     ### CLIENT OPERATIONS ON SESSIONS (listing sessions, terminating non-associated sessions etc.)
@@ -2579,6 +2585,7 @@ class X2goClient(object):
             for session in sessions:
                 _list_mounts.update(self.__list_mounts(session_uuid=session(), no_cache=no_cache, refresh_cache=refresh_cache, raw=False))
         return _list_mounts
+    __list_mounts_by_profile_name = list_mounts_by_profile_name
 
     def list_mounts(self, session_uuid,
                     no_cache=False, refresh_cache=False,
@@ -2639,6 +2646,7 @@ class X2goClient(object):
 
         """
         return self.session_profiles.profile_names
+    __profile_names = profile_names
 
     def get_client_settings(self):
         """\


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).




More information about the x2go-commits mailing list