The branch, master has been updated
via 4d9c2a5660b0a9292af92ee06897b2f5606e0191 (commit)
from 35b86a6fdfa93eb807413d9f22425c5dc2971246 (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 4d9c2a5660b0a9292af92ee06897b2f5606e0191
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de…
[View More]>
Date: Thu Sep 15 14:07:23 2011 +0200
Depend on destop-file-utils.
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 3 ++-
debian/control | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 2513f7c..5ac8866 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,8 +4,9 @@ x2golxdebindings (1.0.1.0-0~x2go1) UNRELEASED; urgency=low
* Imported original tarball version to X2go Git.
* Adds Debian/Ubuntu packaging (/debian folder).
* Add icon symlinks for sshfs/LXDE MIME types.
+ * Depend on destop-file-utils.
[ Milan Knížek ]
* Fix for wrong/test MIME type in x2gopcmanfm.desktop.
- -- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Sun, 29 May 2011 22:36:34 +0200
+ -- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Thu, 15 Sep 2011 14:04:27 +0200
diff --git a/debian/control b/debian/control
index 45eb109..ea84f81 100644
--- a/debian/control
+++ b/debian/control
@@ -14,7 +14,8 @@ Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
x2goserver,
- lxde-icon-theme
+ lxde-icon-theme,
+ desktop-file-utils
Description: LXDE bindings for X2go
X2go is a server based computing environment with
- session resuming
hooks/post-receive
--
x2golxdebindings.git (LXDE bindings for X2go)
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 "x2golxdebindings.git" (LXDE bindings for X2go).
[View Less]
The branch, master has been updated
via 956ae90c84e189d3ef764e36db60d06b47f80fbd (commit)
from 019e478b242d2879de567cbcf35d04b0b7a88799 (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 956ae90c84e189d3ef764e36db60d06b47f80fbd
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de…
[View More]>
Date: Thu Sep 15 00:13:56 2011 +0200
Add support for x2goumount-session calls.
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 2 +-
x2go/backends/terminal/_stdout.py | 18 +++++++++++++++
x2go/client.py | 42 +++++++++++++++++++++++++++++++++++++
x2go/session.py | 36 ++++++++++++++++++++++++++++++-
4 files changed, 96 insertions(+), 2 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index c5c9f26..8350ba2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,7 +7,7 @@ python-x2go (0.1.2.0-0~x2go1) UNRELEASED; urgency=low
python-x2go (0.1.1.7-0-x2go1) UNRELEASED; urgency=low
* New upstream version (0.1.1.6), bugfix release for 0.1.1.x series:
- - continue development...
+ - Add support for x2goumount-session calls.
-- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Wed, 14 Sep 2011 21:35:54 +0200
diff --git a/x2go/backends/terminal/_stdout.py b/x2go/backends/terminal/_stdout.py
index 8f00822..c5bbdbc 100644
--- a/x2go/backends/terminal/_stdout.py
+++ b/x2go/backends/terminal/_stdout.py
@@ -678,6 +678,24 @@ class X2goTerminalSessionSTDOUT(object):
(stdin, stdout, stderr) = self.control_session._x2go_exec_command(cmd_line)
self.logger('x2gomountdirs output is : %s' % stdout.read().split('\n'), log.loglevel_NOTICE)
+ def unshare_all_local_folders(self):
+ """\
+ Unshare all local folders mount in the X2go session.
+
+ @return: returns C{True} if all local folders could be successfully unmounted from the X2go server session
+ @rtype: bool
+
+ """
+ self.logger('unsharing all local folders for session %s' % self.session_info, log.loglevel_INFO)
+
+ cmd_line = [ 'export HOSTNAME &&',
+ 'x2goumount-session',
+ self.session_info,
+ ]
+
+ (stdin, stdout, stderr) = self.control_session._x2go_exec_command(cmd_line)
+ self.logger('x2goumount-session output is : %s' % stdout.read().split('\n'), log.loglevel_NOTICE)
+
def color_depth(self):
"""\
Retrieve the session's color depth.
diff --git a/x2go/client.py b/x2go/client.py
index e589f5a..8316360 100644
--- a/x2go/client.py
+++ b/x2go/client.py
@@ -1501,6 +1501,48 @@ class X2goClient(object):
return False
__share_local_folder_with_session = share_local_folder_with_session
+ def unshare_all_local_folders_from_session(self, session_uuid=None, folder_name=_LOCAL_HOME, profile_name=None):
+ """\
+ Unshare all local folders mounted in X2go session registered as
+ C{session_uuid}.
+
+ When calling this method all client-side mounted folders on the X2go
+ server (via sshfs) for session with ID <session_uuid> will get
+ unmounted.
+
+ @param session_uuid: the X2go session's UUID registry hash
+ @type session_uuid: C{str}
+ @param profile_name: alternatively, the profile name can be used to unshare
+ mounted folders
+ @type profile_name: C{str}
+
+ @return: returns C{True} if all local folders could be successfully unmounted
+ @rtype: C{bool}
+
+ """
+ if session_uuid is None and profile_name:
+ _associated = self._X2goClient__client_associated_sessions_of_profile_name(profile_name, return_objects=False)
+ if len(_associated) > 0:
+ session_uuid = _associated[0]
+ if session_uuid:
+ return self.session_registry(session_uuid).unshare_all_local_folders()
+ else:
+ self.logger('Cannot find a terminal session for profile ,,%s\'\' from which to unmount local folders' % profile_name, loglevel=log.loglevel_WARN)
+ return False
+ __unshare_all_local_folders_from_session = unshare_all_local_folders_from_session
+
+ def session_get_shared_folders(self, session_uuid):
+ """\
+ Get a list of local folders mounted within X2go session with session hash <session_uuid>
+ from this client.
+
+ @return: returns a C{list} of those local folder names that are mounted within X2go session <session_uuid>.
+ @rtype: C{list}
+
+ """
+ return self(session_uuid).get_shared_folders()
+ __session_get_shared_folders = session_get_shared_folders
+
###
### Provide access to the X2goClient's session registry
###
diff --git a/x2go/session.py b/x2go/session.py
index 53b5dd5..39a950c 100644
--- a/x2go/session.py
+++ b/x2go/session.py
@@ -236,6 +236,7 @@ class X2goSession(object):
self.terminal_params = {}
self.sshproxy_params = {}
self.update_params(params)
+ self.shared_folders = []
self.session_environment = {}
@@ -1396,13 +1397,46 @@ class X2goSession(object):
"""
if self.has_terminal_session():
if self.allow_share_local_folders:
- return self.terminal_session.share_local_folder(folder_name=folder_name)
+ if self.terminal_session.share_local_folder(folder_name=folder_name):
+ self.shared_folders.append(folder_name)
+ return True
+ return False
else:
self.logger('local folder sharing is disabled for this session profile', loglevel=log.loglevel_WARN)
else:
raise X2goSessionException('this X2goSession object does not have any associated terminal')
__share_local_folder = share_local_folder
+ def unshare_all_local_folders(self):
+ """\
+ Unshare all local folders mounted within this X2go session.
+
+ @return: returns C{True} if all local folders could be successfully unmounted
+ inside this X2go session
+ @rtype: C{bool}
+
+ """
+ if self.has_terminal_session():
+ if self.allow_share_local_folders:
+ self.shared_folders = []
+ return self.terminal_session.unshare_all_local_folders()
+ else:
+ self.logger('local folder sharing is disabled for this session profile', loglevel=log.loglevel_WARN)
+ else:
+ raise X2goSessionException('this X2goSession object does not have any associated terminal')
+ __unshare_all_local_folders = unshare_all_local_folders
+
+ def get_shared_folders(self):
+ """\
+ Get a list of local folders mounted within this X2go session from this client.
+
+ @return: returns a C{list} of those folder names that are mounted with this X2go session.
+ @rtype: C{list}
+
+ """
+ return self.shared_folders
+ __get_shared_folders = get_shared_folders
+
def is_locked(self):
"""\
Query session if it is locked by some command being processed.
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).
[View Less]
The branch, release/0.1.1.x has been updated
via 47ed80c80e7d6e8388d699ed3e0897a4d7be9d04 (commit)
from 6fd557ede24430dac8b67b2341152969ad5b1584 (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 47ed80c80e7d6e8388d699ed3e0897a4d7be9d04
Author: Mike Gabriel <mike.gabriel(a)das-…
[View More]netzwerkteam.de>
Date: Thu Sep 15 00:13:56 2011 +0200
Add support for x2goumount-session calls.
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 2 +-
x2go/backends/terminal/_stdout.py | 18 +++++++++++++++
x2go/client.py | 42 +++++++++++++++++++++++++++++++++++++
x2go/session.py | 36 ++++++++++++++++++++++++++++++-
4 files changed, 96 insertions(+), 2 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index bcd22a1..9d3079e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,7 +1,7 @@
python-x2go (0.1.1.7-0~x2go1) UNRELEASED; urgency=low
* New upstream version (0.1.1.6), bugfix release for 0.1.1.x series:
- - continue development...
+ - Add support for x2goumount-session calls.
-- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Wed, 14 Sep 2011 21:43:55 +0200
diff --git a/x2go/backends/terminal/_stdout.py b/x2go/backends/terminal/_stdout.py
index 92dac9f..339aa5f 100644
--- a/x2go/backends/terminal/_stdout.py
+++ b/x2go/backends/terminal/_stdout.py
@@ -678,6 +678,24 @@ class X2goTerminalSessionSTDOUT(object):
(stdin, stdout, stderr) = self.control_session._x2go_exec_command(cmd_line)
self.logger('x2gomountdirs output is : %s' % stdout.read().split('\n'), log.loglevel_NOTICE)
+ def unshare_all_local_folders(self):
+ """\
+ Unshare all local folders mount in the X2go session.
+
+ @return: returns C{True} if all local folders could be successfully unmounted from the X2go server session
+ @rtype: bool
+
+ """
+ self.logger('unsharing all local folders for session %s' % self.session_info, log.loglevel_INFO)
+
+ cmd_line = [ 'export HOSTNAME &&',
+ 'x2goumount-session',
+ self.session_info,
+ ]
+
+ (stdin, stdout, stderr) = self.control_session._x2go_exec_command(cmd_line)
+ self.logger('x2goumount-session output is : %s' % stdout.read().split('\n'), log.loglevel_NOTICE)
+
def color_depth(self):
"""\
Retrieve the session's color depth.
diff --git a/x2go/client.py b/x2go/client.py
index 396757b..cd3bae3 100644
--- a/x2go/client.py
+++ b/x2go/client.py
@@ -1501,6 +1501,48 @@ class X2goClient(object):
return False
__share_local_folder_with_session = share_local_folder_with_session
+ def unshare_all_local_folders_from_session(self, session_uuid=None, folder_name=_LOCAL_HOME, profile_name=None):
+ """\
+ Unshare all local folders mounted in X2go session registered as
+ C{session_uuid}.
+
+ When calling this method all client-side mounted folders on the X2go
+ server (via sshfs) for session with ID <session_uuid> will get
+ unmounted.
+
+ @param session_uuid: the X2go session's UUID registry hash
+ @type session_uuid: C{str}
+ @param profile_name: alternatively, the profile name can be used to unshare
+ mounted folders
+ @type profile_name: C{str}
+
+ @return: returns C{True} if all local folders could be successfully unmounted
+ @rtype: C{bool}
+
+ """
+ if session_uuid is None and profile_name:
+ _associated = self._X2goClient__client_associated_sessions_of_profile_name(profile_name, return_objects=False)
+ if len(_associated) > 0:
+ session_uuid = _associated[0]
+ if session_uuid:
+ return self.session_registry(session_uuid).unshare_all_local_folders()
+ else:
+ self.logger('Cannot find a terminal session for profile ,,%s\'\' from which to unmount local folders' % profile_name, loglevel=log.loglevel_WARN)
+ return False
+ __unshare_all_local_folders_from_session = unshare_all_local_folders_from_session
+
+ def session_get_shared_folders(self, session_uuid):
+ """\
+ Get a list of local folders mounted within X2go session with session hash <session_uuid>
+ from this client.
+
+ @return: returns a C{list} of those local folder names that are mounted within X2go session <session_uuid>.
+ @rtype: C{list}
+
+ """
+ return self(session_uuid).get_shared_folders()
+ __session_get_shared_folders = session_get_shared_folders
+
###
### Provide access to the X2goClient's session registry
###
diff --git a/x2go/session.py b/x2go/session.py
index 7d1c95e..054cfa1 100644
--- a/x2go/session.py
+++ b/x2go/session.py
@@ -236,6 +236,7 @@ class X2goSession(object):
self.terminal_params = {}
self.sshproxy_params = {}
self.update_params(params)
+ self.shared_folders = []
self.session_environment = {}
@@ -1396,13 +1397,46 @@ class X2goSession(object):
"""
if self.has_terminal_session():
if self.allow_share_local_folders:
- return self.terminal_session.share_local_folder(folder_name=folder_name)
+ if self.terminal_session.share_local_folder(folder_name=folder_name):
+ self.shared_folders.append(folder_name)
+ return True
+ return False
else:
self.logger('local folder sharing is disabled for this session profile', loglevel=log.loglevel_WARN)
else:
raise X2goSessionException('this X2goSession object does not have any associated terminal')
__share_local_folder = share_local_folder
+ def unshare_all_local_folders(self):
+ """\
+ Unshare all local folders mounted within this X2go session.
+
+ @return: returns C{True} if all local folders could be successfully unmounted
+ inside this X2go session
+ @rtype: C{bool}
+
+ """
+ if self.has_terminal_session():
+ if self.allow_share_local_folders:
+ self.shared_folders = []
+ return self.terminal_session.unshare_all_local_folders()
+ else:
+ self.logger('local folder sharing is disabled for this session profile', loglevel=log.loglevel_WARN)
+ else:
+ raise X2goSessionException('this X2goSession object does not have any associated terminal')
+ __unshare_all_local_folders = unshare_all_local_folders
+
+ def get_shared_folders(self):
+ """\
+ Get a list of local folders mounted within this X2go session from this client.
+
+ @return: returns a C{list} of those folder names that are mounted with this X2go session.
+ @rtype: C{list}
+
+ """
+ return self.shared_folders
+ __get_shared_folders = get_shared_folders
+
def is_locked(self):
"""\
Query session if it is locked by some command being processed.
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).
[View Less]
The branch, master has been updated
via cc9f41b0d44e17ab509d6497bc5aece965ba8af9 (commit)
from fccdd1dc0577f8099043a106459bb44d9657f76b (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 cc9f41b0d44e17ab509d6497bc5aece965ba8af9
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de…
[View More]>
Date: Wed Sep 14 20:57:51 2011 +0200
built pyhoca-gui 0.1.0.8 for win32
-----------------------------------------------------------------------
Summary of changes:
....1.0.7.nsi => PyHoca-GUI+VcXsrv+GS_0.1.0.8.nsi} | 4 ++--
...Hoca-GUI_0.1.0.7.nsi => PyHoca-GUI_0.1.0.8.nsi} | 2 +-
win32-dist/dist/library.zip | Bin 1482596 -> 1482755 bytes
win32-dist/dist/pyhoca-gui.exe | Bin 61440 -> 61440 bytes
...oca-gui+vcxsrv+gsprint-0.1.0.8_win32-setup.exe} | Bin 81678501 -> 81678738 bytes
...etup.exe => pyhoca-gui_0.1.0.8_win32-setup.exe} | Bin 12100239 -> 12100473 bytes
6 files changed, 3 insertions(+), 3 deletions(-)
copy win32-dist/{PyHoca-GUI+VcXsrv+GS_0.1.0.7.nsi => PyHoca-GUI+VcXsrv+GS_0.1.0.8.nsi} (98%)
copy win32-dist/{PyHoca-GUI_0.1.0.7.nsi => PyHoca-GUI_0.1.0.8.nsi} (99%)
copy win32-dist/installers/{pyhoca-gui+vcxsrv+gsprint-0.1.0.7_win32-setup.exe => pyhoca-gui+vcxsrv+gsprint-0.1.0.8_win32-setup.exe} (98%)
copy win32-dist/installers/{pyhoca-gui_0.1.0.7_win32-setup.exe => pyhoca-gui_0.1.0.8_win32-setup.exe} (91%)
The diff of changes is:
diff --git a/win32-dist/PyHoca-GUI+VcXsrv+GS_0.1.0.7.nsi b/win32-dist/PyHoca-GUI+VcXsrv+GS_0.1.0.8.nsi
similarity index 98%
copy from win32-dist/PyHoca-GUI+VcXsrv+GS_0.1.0.7.nsi
copy to win32-dist/PyHoca-GUI+VcXsrv+GS_0.1.0.8.nsi
index 0997cd2..9053774 100644
--- a/win32-dist/PyHoca-GUI+VcXsrv+GS_0.1.0.7.nsi
+++ b/win32-dist/PyHoca-GUI+VcXsrv+GS_0.1.0.8.nsi
@@ -1,9 +1,9 @@
; PyHoca-GUI.nsi
;
-!define VERSION "0.1.0.7"
+!define VERSION "0.1.0.8"
!define PRODUCT_NAME "PyHoca-GUI"
-!define PRODUCT_VERSION "0.1.0.7"
+!define PRODUCT_VERSION "0.1.0.8"
!define PRODUCT_PUBLISHER "X2go Team"
;
diff --git a/win32-dist/PyHoca-GUI_0.1.0.7.nsi b/win32-dist/PyHoca-GUI_0.1.0.8.nsi
similarity index 99%
copy from win32-dist/PyHoca-GUI_0.1.0.7.nsi
copy to win32-dist/PyHoca-GUI_0.1.0.8.nsi
index f2e3e26..361de38 100644
--- a/win32-dist/PyHoca-GUI_0.1.0.7.nsi
+++ b/win32-dist/PyHoca-GUI_0.1.0.8.nsi
@@ -1,7 +1,7 @@
; PyHoca-GUI.nsi
;
-!define VERSION "0.1.0.7"
+!define VERSION "0.1.0.8"
;--------------------------------
diff --git a/win32-dist/dist/library.zip b/win32-dist/dist/library.zip
index 852c7f2..80152eb 100644
Binary files a/win32-dist/dist/library.zip and b/win32-dist/dist/library.zip differ
diff --git a/win32-dist/dist/pyhoca-gui.exe b/win32-dist/dist/pyhoca-gui.exe
index fdb7618..a2675d5 100644
Binary files a/win32-dist/dist/pyhoca-gui.exe and b/win32-dist/dist/pyhoca-gui.exe differ
diff --git a/win32-dist/installers/pyhoca-gui+vcxsrv+gsprint-0.1.0.7_win32-setup.exe b/win32-dist/installers/pyhoca-gui+vcxsrv+gsprint-0.1.0.8_win32-setup.exe
similarity index 98%
copy from win32-dist/installers/pyhoca-gui+vcxsrv+gsprint-0.1.0.7_win32-setup.exe
copy to win32-dist/installers/pyhoca-gui+vcxsrv+gsprint-0.1.0.8_win32-setup.exe
index e07c805..47d849c 100644
Binary files a/win32-dist/installers/pyhoca-gui+vcxsrv+gsprint-0.1.0.7_win32-setup.exe and b/win32-dist/installers/pyhoca-gui+vcxsrv+gsprint-0.1.0.8_win32-setup.exe differ
diff --git a/win32-dist/installers/pyhoca-gui_0.1.0.7_win32-setup.exe b/win32-dist/installers/pyhoca-gui_0.1.0.8_win32-setup.exe
similarity index 91%
copy from win32-dist/installers/pyhoca-gui_0.1.0.7_win32-setup.exe
copy to win32-dist/installers/pyhoca-gui_0.1.0.8_win32-setup.exe
index e488eab..20f3af0 100644
Binary files a/win32-dist/installers/pyhoca-gui_0.1.0.7_win32-setup.exe and b/win32-dist/installers/pyhoca-gui_0.1.0.8_win32-setup.exe differ
hooks/post-receive
--
pyhoca-contrib.git (PyHoca-GUI / Python-X2go contributive Software)
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 "pyhoca-contrib.git" (PyHoca-GUI / Python-X2go contributive Software).
[View Less]
The branch, master has been updated
via bd1a17fce75b861bb8d58e698f3a52619e80f80e (commit)
from c10acfd3aedaa8ca2b5a31eb8e4bdeed427442b4 (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 bd1a17fce75b861bb8d58e698f3a52619e80f80e
Author: Ivan Kabaivanov <chepati(a)yahoo.com>
Date: …
[View More]Wed Sep 14 22:40:01 2011 +0200
Makefile fix around man page installation in x2goserver-extensions package.
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 1 +
x2goserver-compat/Makefile | 2 +-
x2goserver-extensions/Makefile | 4 ++--
3 files changed, 4 insertions(+), 3 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 58cfe0f..2a107b7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -64,6 +64,7 @@ x2goserver (3.0.99.5-0~x2go3) UNRELEASED; urgency=low
[ Ivan Kabaivanov ]
* Makefile fix around man page installation in x2goserver-compat package.
+ * Makefile fix around man page installation in x2goserver-extensions package.
[ Martin Oehler ]
* Removes old debug code fragment, fixes x2golistsessions parsing.
diff --git a/x2goserver-compat/Makefile b/x2goserver-compat/Makefile
index 3e80663..e1bc30f 100755
--- a/x2goserver-compat/Makefile
+++ b/x2goserver-compat/Makefile
@@ -68,7 +68,7 @@ install_man:
$(INSTALL_DIR) $(DESTDIR)$(MANDIR)
$(INSTALL_DIR) $(DESTDIR)$(MANDIR)/man8
$(INSTALL_FILE) man/man8/*.8 $(DESTDIR)$(MANDIR)/man8
- gzip -f $(DESTDIR)$(MANDIR)/man1/x2go*.8
+ gzip -f $(DESTDIR)$(MANDIR)/man8/x2go*.8
install_version:
$(INSTALL_DIR) $(DESTDIR)$(SHAREDIR)
diff --git a/x2goserver-extensions/Makefile b/x2goserver-extensions/Makefile
index 152dc92..b234c16 100755
--- a/x2goserver-extensions/Makefile
+++ b/x2goserver-extensions/Makefile
@@ -67,8 +67,8 @@ install_config:
install_man:
$(INSTALL_DIR) $(DESTDIR)$(MANDIR)
$(INSTALL_DIR) $(DESTDIR)$(MANDIR)/man8
- $(INSTALL_FILE) man/man1/*.8 $(DESTDIR)$(MANDIR)/man8
- gzip -f $(DESTDIR)$(MANDIR)/man1/x2go*.8
+ $(INSTALL_FILE) man/man8/*.8 $(DESTDIR)$(MANDIR)/man8
+ gzip -f $(DESTDIR)$(MANDIR)/man8/x2go*.8
install_version:
$(INSTALL_DIR) $(DESTDIR)$(SHAREDIR)
hooks/post-receive
--
x2goserver.git (X2go Server)
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 "x2goserver.git" (X2go Server).
[View Less]
The branch, build-main has been updated
via d7cc74265b286d65c55273f1312c04748d09c5be (commit)
via 5d6108fbe12a940e961e3ff70d497cc0a98d05c6 (commit)
via 209f58795491f69c5422e2015cfda26a4b500f8c (commit)
via 5c04c95acf7a394e22e311f960c51252101bd5c2 (commit)
from 9b5c4cdb9799a0715478beaef340e38723086bf9 (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, …
[View More]below.
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 12 ++++++++++++
pyhoca/wxgui/__init__.py | 2 +-
pyhoca/wxgui/profilemanager.py | 2 ++
3 files changed, 15 insertions(+), 1 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 7eda494..dd30ded 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,15 @@
+pyhoca-gui (0.1.0.8-0~x2go1) unstable; urgency=low
+
+ * New upstream version (0.1.0.8):
+ - fix session profile breakage when switching between rootless and
+ non-rootless sessions, fixes problems with x2goclient after
+ pyhoca-gui has been used on session profiles that have been switched
+ from desktop to rootless to desktop.
+ - x2goclient compat fix: make sure applications property in session
+ profiles gets always set.
+
+ -- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Wed, 14 Sep 2011 21:45:19 +0200
+
pyhoca-gui (0.1.0.7-0~x2go1) unstable; urgency=low
* New upstream version (0.1.0.7)
diff --git a/pyhoca/wxgui/__init__.py b/pyhoca/wxgui/__init__.py
index 18a8b1e..10c3e7a 100644
--- a/pyhoca/wxgui/__init__.py
+++ b/pyhoca/wxgui/__init__.py
@@ -18,6 +18,6 @@
# Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
-__VERSION__ = '0.1.0.7'
+__VERSION__ = '0.1.0.8'
from frontend import *
diff --git a/pyhoca/wxgui/profilemanager.py b/pyhoca/wxgui/profilemanager.py
index 43812bb..0cce214 100644
--- a/pyhoca/wxgui/profilemanager.py
+++ b/pyhoca/wxgui/profilemanager.py
@@ -952,6 +952,7 @@ class PyHocaGUI_ProfileManager(wx.Dialog):
)
self.profile_config['sshproxykeyfile'] = self.SSHProxyKeyFile.GetValue()
+ self.profile_config['applications'] = self.applicationChoices.keys()
_session_type = [ s for s in self.sessionChoices.keys() if self.sessionChoices[s] == self.SessionType.GetValue() ][0]
if _session_type == 'APPLICATION':
_command = [ a for a in self.applicationChoices.keys() if self.applicationChoices[a] == self.Application.GetValue() ][0]
@@ -964,6 +965,7 @@ class PyHocaGUI_ProfileManager(wx.Dialog):
self.profile_config['rootless'] = True
else:
_command = _session_type
+ self.profile_config['rootless'] = False
self.profile_config['command'] = _command
self.profile_config['rdpserver'] = self.RDPServer.GetValue()
self.profile_config['rdpoptions'] = self.RDPOptions.GetValue()
hooks/post-receive
--
pyhoca-gui.git (Python X2go Client (wxPython GUI))
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 "pyhoca-gui.git" (Python X2go Client (wxPython GUI)).
[View Less]
The branch, master has been updated
via d7cc74265b286d65c55273f1312c04748d09c5be (commit)
from 5d6108fbe12a940e961e3ff70d497cc0a98d05c6 (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 d7cc74265b286d65c55273f1312c04748d09c5be
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de…
[View More]>
Date: Wed Sep 14 21:45:48 2011 +0200
release version 0.1.0.8
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 0e54e7c..dd30ded 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-pyhoca-gui (0.1.0.8-0~x2go1) UNRELEASED; urgency=low
+pyhoca-gui (0.1.0.8-0~x2go1) unstable; urgency=low
* New upstream version (0.1.0.8):
- fix session profile breakage when switching between rootless and
@@ -8,7 +8,7 @@ pyhoca-gui (0.1.0.8-0~x2go1) UNRELEASED; urgency=low
- x2goclient compat fix: make sure applications property in session
profiles gets always set.
- -- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Wed, 14 Sep 2011 15:46:07 +0200
+ -- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Wed, 14 Sep 2011 21:45:19 +0200
pyhoca-gui (0.1.0.7-0~x2go1) unstable; urgency=low
hooks/post-receive
--
pyhoca-gui.git (Python X2go Client (wxPython GUI))
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 "pyhoca-gui.git" (Python X2go Client (wxPython GUI)).
[View Less]
The branch, pristine-tar has been created
at 737e1fa416eb44ade3787886e2bbe92b63bb9343 (commit)
- Log -----------------------------------------------------------------
commit 737e1fa416eb44ade3787886e2bbe92b63bb9343
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
Date: Sat Mar 26 21:19:21 2011 +0100
pristine-tar data for pyhoca-gui_0.0.32.0.tar.gz
commit fa0901b1372c508e85d8f6e4af1c80548a855304
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
Date:…
[View More] Fri Mar 11 00:40:55 2011 +0100
pristine-tar data for pyhoca-gui_0.0.31.0.orig.tar.gz
commit d1216482101ce5f58f6beefd73926e8962dd1230
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
Date: Tue Mar 1 01:07:46 2011 +0100
pristine-tar data for pyhoca-gui_0.0.30.1.orig.tar.gz
commit b616d3783b50d2d1f2b20900b558439691250991
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
Date: Tue Mar 1 00:47:16 2011 +0100
pristine-tar data for pyhoca-gui_0.0.30.0.orig.tar.gz
commit bbe4b5eaaf2f9297dc347bf83a311bacae3167cf
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
Date: Sun Feb 27 02:55:25 2011 +0100
pristine-tar data for pyhoca-gui_0.0.29.0.orig.tar.gz
commit 737d7254aa44b00c1a8ac1f60db1e5dd72b16b95
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
Date: Fri Feb 25 18:48:13 2011 +0100
pristine-tar data for pyhoca-gui_0.0.28.0.orig.tar.gz
-----------------------------------------------------------------------
hooks/post-receive
--
pyhoca-gui.git (Python X2go Client (wxPython GUI))
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 "pyhoca-gui.git" (Python X2go Client (wxPython GUI)).
[View Less]
The branch, release has been created
at e22118fcbcca288f06acbb74449b14b0c9f44dd1 (commit)
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
hooks/post-receive
--
pyhoca-gui.git (Python X2go Client (wxPython GUI))
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 "pyhoca-gui.git" (…
[View More]Python X2go Client (wxPython GUI)).
[View Less]
The branch, release/0.1.1.x has been updated
via 6fd557ede24430dac8b67b2341152969ad5b1584 (commit)
from 1696e45dd9d579abeb65dcb26a45bde017a1629f (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 6fd557ede24430dac8b67b2341152969ad5b1584
Author: Mike Gabriel <mike.gabriel(a)das-…
[View More]netzwerkteam.de>
Date: Wed Sep 14 21:44:34 2011 +0200
changelog version increment
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 858e98e..bcd22a1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+python-x2go (0.1.1.7-0~x2go1) UNRELEASED; urgency=low
+
+ * New upstream version (0.1.1.6), bugfix release for 0.1.1.x series:
+ - continue development...
+
+ -- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Wed, 14 Sep 2011 21:43:55 +0200
+
python-x2go (0.1.1.6-0~x2go1) unstable; urgency=low
* New upstream version (0.1.1.6), bugfix release for 0.1.1.x series:
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).
[View Less]