Custom Query (230 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (127 - 129 of 230)

Ticket Resolution Summary Owner Reporter
#186 fixed config apply_changes triggers error in rdp_client_base Antoine Martin Antoine Martin
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 keymaps is not defined... The RDPClientBase constructor looks like this:

		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()

(ENABLE_KEYMAP_OPTION is hardcoded to True) And this constructor is called by the RDPClientUtil constructor..

#187 fixed replace distro packaging util code with calls to packagekit on Linux Antoine Martin Antoine Martin
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

#190 wontfix support putty's pageant authentication agent on MS Windows Antoine Martin Antoine Martin
Description

On Unices we can just grab the location of the SSH_AUTH_SOCK environment variable and connect to it.

On Windows, no idea.

Note: See TracQuery for help on using queries.