Custom Query (230 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (157 - 159 of 230)

Ticket Resolution Summary Owner Reporter
#225 duplicate winswitch_server doesn't work on Ubuntu 12.10 Antoine Martin Thomas Käfer
Description

Hi there again!

I am running Ubuntu 12.10 and it seems it doesn't work as a server, client works well.

Here is the error that the winswitch_server prints:

[code][EE] 2012/14/11 20:23:16.011215 WinSwitchServer.ready()
[ee] 2012/14/11 20:23:16.011909 Traceback (most recent call last):
[ee] 2012/14/11 20:23:16.011967   File "/usr/lib/python2.7/dist-packages/winswitch/server/controller.py", line 316, in ready
[ee] 2012/14/11 20:23:16.012006     self.assign_virt_utils()
[ee] 2012/14/11 20:23:16.012033   File "/usr/lib/python2.7/dist-packages/winswitch/server/controller.py", line 405, in assign_virt_utils
[ee] 2012/14/11 20:23:16.012056     from winswitch.virt.vnc_server_util import VNCServerUtil
[ee] 2012/14/11 20:23:16.012078   File "/usr/lib/python2.7/dist-packages/winswitch/virt/vnc_server_util.py", line 16, in <module>
[ee] 2012/14/11 20:23:16.012099     from winswitch.virt.server_util_base import ServerUtilBase
[ee] 2012/14/11 20:23:16.012120   File "/usr/lib/python2.7/dist-packages/winswitch/virt/server_util_base.py", line 40, in <module>
[ee] 2012/14/11 20:23:16.012141     from winswitch.util.xkbmap_util import set_keymap
[ee] 2012/14/11 20:23:16.012161   File "/usr/lib/python2.7/dist-packages/winswitch/util/xkbmap_util.py", line 173
[ee] 2012/14/11 20:23:16.012183 SyntaxError: Non-ASCII character '\xc3' in file /usr/lib/python2.7/dist-packages/winswitch/util/xkbmap_util.py on line 173, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details
[/code] 

Please tell me what I can do to track down the problem

#285 fixed connecting with ssh to winswitch server is failing. Kundan Kumar Kundan Kumar
Description

While winswitch client is trying to connect to some other winswitch server through m_DNS. It is failing to connect through ssh. Through Direct connection it succeeds. But, opening a remote application, doesn't shows on the requesting host.

I am running latest winswitch version 0.12.21, with xpra version 0.16.1. My both host system where connection is expected, is Ubuntu 15.04. I have also seen this issue in Ubuntu 15.10.

I tried to run the winswitch_applet in debug mode. Attaching a screenshot for the same.

#242 fixed Additional NX options madmonk
Description

The composite option in the nx.conf configuration file currently doesn't actually seem to turn compositing on or off. It's fairly broken in nx anyway but may still have some value in certain apps and would therefore be good if it could be set at the application level if possible. The biggest problem when it is enabled is that certain UI elements are completely invisible. Conversely alpha blended areas of the UI appear completely black when disabled.

To turn on compositing I modified...

/usr/lib/winswitch/winswitch/virt/nx_server_util.py

and added the following code.

        def start_display(self, session, user, is_preload):

                if session.full_desktop:
                        args_list += self.get_X_geometry_args(session.screen_size)

+                args_list += ["+extension","Composite"]
+                args_list += ["-dpi", "96"]
+                #args_list += ["-nocomposite"]

                args_list += ["-name", name, session.display]
                env = session.get_env();

Perhaps the composite setting from the configuration file could enable or disable the extension as a workaround for this. I can also confirm that setting composite off in the nx.conf configuration file does not appear to disable compositing when the Composite extension is loaded as above. Likewise it would be nice if the DPI settings could be changed.

Note: See TracQuery for help on using queries.