[X2go-Commits] python-x2go.git - build-main (branch) updated: 0.1.1.4

X2go dev team git-admin at x2go.org
Thu Jul 14 10:06:52 CEST 2011


The branch, build-main has been updated
       via  ecc77798d8aee9c04f60c2c11ee14a1ec5c299e5 (commit)
       via  f83ed022b958f589b0cbb4438256d59ed772d5fc (commit)
       via  0a5516e496d1c1fe9ee4ae06e69fac9242bcdd1a (commit)
      from  1e88fc4810c4a2ab6e3fa9073f61347f538ac93a (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 ecc77798d8aee9c04f60c2c11ee14a1ec5c299e5
Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
Date:   Wed Jul 13 20:38:44 2011 +0200

    released 0.1.1.4

-----------------------------------------------------------------------

Summary of changes:
 debian/changelog                  |    7 +++++++
 x2go/__init__.py                  |    2 +-
 x2go/backends/terminal/_stdout.py |    6 +++---
 3 files changed, 11 insertions(+), 4 deletions(-)

The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 1d263ac..b47ec6e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+python-x2go (0.1.1.4-0~x2go1) unstable; urgency=low
+
+  * New upstream version (0.1.1.4):
+    - bugfix for x2gmountdirs calls that occurred if the client username contained blanks.
+
+ -- Mike Gabriel <mike.gabriel at das-netzwerkteam.de>  Wed, 13 Jul 2011 20:38:33 +0200
+
 python-x2go (0.1.1.3-0~x2go1) unstable; urgency=low
 
   * New upstream version (0.1.1.3):
diff --git a/x2go/__init__.py b/x2go/__init__.py
index 1c6beca..539b1fc 100644
--- a/x2go/__init__.py
+++ b/x2go/__init__.py
@@ -158,7 +158,7 @@ Contact
 """
 
 __NAME__    = 'python-x2go'
-__VERSION__ = '0.1.1.3'
+__VERSION__ = '0.1.1.4'
 
 from gevent import monkey
 monkey.patch_all()
diff --git a/x2go/backends/terminal/_stdout.py b/x2go/backends/terminal/_stdout.py
index 24fc74e..88ff516 100644
--- a/x2go/backends/terminal/_stdout.py
+++ b/x2go/backends/terminal/_stdout.py
@@ -642,7 +642,7 @@ class X2goTerminalSessionSTDOUT(object):
                          'x2gomountdirs', 
                          'dir',
                          str(self.session_info.name), 
-                         _CURRENT_LOCAL_USER,
+                         '"%s"' % _CURRENT_LOCAL_USER,
                          _x2go_key_fname,
                          '%s__REVERSESSH_PORT__%s; ' % (folder_name, self.session_info.sshfs_port),
                          'rm -f %s %s.ident' % (_x2go_key_fname, _x2go_key_fname), 
@@ -654,7 +654,7 @@ class X2goTerminalSessionSTDOUT(object):
                          'x2gomountdirs', 
                          'dir',
                          str(self.session_info.name), 
-                         _CURRENT_LOCAL_USER,
+                         '"%s"' % _CURRENT_LOCAL_USER,
                          _x2go_key_fname,
                          '%s__PRINT_SPOOL___REVERSESSH_PORT__%s; ' % (folder_name, self.session_info.sshfs_port),
                          'rm -f %s %s.ident' % (_x2go_key_fname, _x2go_key_fname), 
@@ -666,7 +666,7 @@ class X2goTerminalSessionSTDOUT(object):
                          'x2gomountdirs', 
                          'dir',
                          str(self.session_info.name), 
-                         _CURRENT_LOCAL_USER,
+                         '"%s"' % _CURRENT_LOCAL_USER,
                          _x2go_key_fname,
                          '%s__MIMEBOX_SPOOL___REVERSESSH_PORT__%s; ' % (folder_name, self.session_info.sshfs_port),
                          'rm -f %s %s.ident' % (_x2go_key_fname, _x2go_key_fname), 


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