[X2Go-Commits] python-x2go.git - twofactorauth (branch) updated: 0.2.0.9-6-gbcd2472

X2Go dev team git-admin at x2go.org
Sat Sep 14 15:57:41 CEST 2013


The branch, twofactorauth has been updated
       via  bcd2472dcb7607546a1f801cf862661b50f0cad2 (commit)
      from  60d5a88d02fbf006f76219e8aae57e0d9a081eee (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                  |    4 +++-
 x2go/backends/terminal/_stdout.py |    7 +++----
 2 files changed, 6 insertions(+), 5 deletions(-)

The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 314e62f..2031bbb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,8 @@
 python-x2go (0.2.0.10-0~x2go1) UNRELEASED; urgency=low
 
-  * Continue development...
+  * New upstream version (0.2.0.10):
+    - Use session type 'D' for X2Go-proxied RDP session when run in
+      fullscreen mode. Fixes upstream issue #27.
 
  -- Mike Gabriel <mike.gabriel at das-netzwerkteam.de>  Fri, 17 Aug 2012 18:29:04 +0200
 
diff --git a/x2go/backends/terminal/_stdout.py b/x2go/backends/terminal/_stdout.py
index bcd6771..ef01b56 100644
--- a/x2go/backends/terminal/_stdout.py
+++ b/x2go/backends/terminal/_stdout.py
@@ -143,10 +143,9 @@ class X2goSessionParams(object):
             self.session_type = 'P'
             self.cmd = 'PUBLISHED'
         else:
-            if cmd == 'RDP':
-                self.session_type = 'R'
-            elif cmd.startswith('rdesktop'):
-                self.session_type = 'R'
+            if cmd == 'RDP' or cmd.startswith('rdesktop') or cmd.startswith('xfreedrp'):
+                if self.geometry == 'fullscreen': self.session_type = 'D'
+                else: self.session_type = 'R'
             elif cmd == 'XDMCP':
                 self.session_type = 'D'
             elif cmd in _X2GO_DESKTOPSESSIONS.keys():


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