Custom Query (230 matches)
Results (88 - 90 of 230)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#188 | wontfix | Supporting the vino vnc server? | ||
Description |
I would like to run winswitch on two current ubuntu (oneiric) boxes, both running the vinagre/vino-server VNC client/server combo. The 'Desktop Default' section in server configuration ui reads 'None available' (ui/config_server.py: populate_session_types()), and 'Start Desktop Session' is disabled.
I tried trivially adding the vinagre/vino paths to The problem persisted even after installing the tightvnc viewer. Any hints would be appreciated. Thanks! |
|||
#187 | fixed | replace distro packaging util code with calls to packagekit on Linux | ||
Description |
This class: distro_packaging_util.py is horrible and buggy (no '-A' option with gksudo on some distros) so replace it with packagekit. There are dbus bindings: example and decent usage docs |
|||
#186 | fixed | config apply_changes triggers error in rdp_client_base | ||
Description |
as reported by @pmarek on irc: ConfigureAppletWindow.apply_changes() Traceback (most recent call last): File "winswitch/ui/config_common.py", line 621, in apply_changes self.do_apply_changes() File "winswitch/ui/config_applet.py", line 1014, in do_apply_changes self.applet.settings_modified() File "winswitch/client/applet.py", line 757, in settings_modified self.init_client_utils() File "winswitch/client/client_base.py", line 356, in init_client_utils self.client_utils[session_type] = constructor() File "winswitch/client/client_base.py", line 338, in rdp_common return RDPClientUtil(self.update_session_status, self.notify) File "winswitch/virt/rdp_client_util.py", line 18, in __init__ RDPClientBase.__init__(self, update_session_status, notify_callback) File "winswitch/virt/rdp_client_base.py", line 38, in __init__ ClientUtilBase.__init__(self, WINDOWS_TYPE, update_session_status, notify_callback) File "winswitch/virt/client_util_base.py", line 48, in __init__ self.options_defaults = self.load_options_defaults() File "winswitch/virt/client_util_base.py", line 58, in load_options_defaults props = self.get_options_defaults() File "winswitch/virt/rdp_client_base.py", line 373, in get_option props = self.get_options_defaults() File "winswitch/virt/rdp_client_base.py", line 373, in get_options_defaults d[KEYMAP] = self.get_default_keymap() File "winswitch/virt/rdp_client_base.py", line 85, in get_default_keymap if k in self.keymaps.keys(): AttributeError: RDPClientUtil instance has no attribute 'keymaps'
I cannot explain why ClientUtilBase.__init__(self, WINDOWS_TYPE, update_session_status, notify_callback) self.ignore_process_returncodes.append(2) #closing the window causes this returncode! if ENABLE_KEYMAP_OPTION: self.keymaps = self.find_all_keymaps() self.default_keymap = self.get_default_keymap()
( |