Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-11-12 23:10:49 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-11-12 23:10:49 (GMT)
commita3d9a93d82772a03ea34ebe196104ee7f9f69ca4 (patch)
treed256cf83781ab3c3eb9285d1ea78af1a7dd81f28 /services
parent4cd09ed5f83020a30cf75a570837d05b4c021adb (diff)
More fixes, nearly there but not quite yet.
Diffstat (limited to 'services')
-rw-r--r--services/nm/nmclient.py10
-rw-r--r--services/nm/nminfo.py29
2 files changed, 21 insertions, 18 deletions
diff --git a/services/nm/nmclient.py b/services/nm/nmclient.py
index ef71fd8..ad14f8c 100644
--- a/services/nm/nmclient.py
+++ b/services/nm/nmclient.py
@@ -775,7 +775,7 @@ class NMClientApp:
self._popdown()
- def get_key_for_network(self, wep_auth_alg=IW_AUTH_ALG_OPEN_SYSTEM):
+ def get_key_for_network(self, async_cb, async_err_cb, wep_auth_alg=IW_AUTH_ALG_OPEN_SYSTEM):
# Throw up a dialog asking for the key here, and set
# the authentication algorithm to the given one, if any
#
@@ -788,13 +788,15 @@ class NMClientApp:
dialog = WEPKeyDialog()
response = dialog.run()
+ key = dialog.get_key()
dialog.destroy()
if response == gtk.RESPONSE_OK:
- key = dialog.get_key()
- self.nminfo.get_key_for_network_cb(key, wep_auth_alg, canceled=False)
+ self.nminfo.get_key_for_network_cb(
+ key, wep_auth_alg, async_cb, async_err_cb, canceled=False)
else:
- self.nminfo.get_key_for_network_cb(None, None, canceled=True)
+ self.nminfo.get_key_for_network_cb(
+ None, None, async_cb, async_err_cb, canceled=True)
def cancel_get_key_for_network(self):
# Close the wireless key dialog and just have it return
diff --git a/services/nm/nminfo.py b/services/nm/nminfo.py
index a914a6c..a03157a 100644
--- a/services/nm/nminfo.py
+++ b/services/nm/nminfo.py
@@ -120,7 +120,7 @@ class Security(object):
return security
new_from_config = staticmethod(new_from_config)
- def new_from_args(cfg, we_cipher, args):
+ def new_from_args(we_cipher, key, auth_alg):
security = None
try:
if we_cipher == IW_AUTH_CIPHER_NONE:
@@ -131,7 +131,7 @@ class Security(object):
# FIXME: find a way to make WPA config option matrix not
# make you want to throw up
raise ValueError("Unsupported security combo")
- security.read_from_args(args)
+ security.read_from_args(key, auth_alg)
except (NoOptionError, ValueError), e:
del security
return None
@@ -146,15 +146,15 @@ class Security(object):
class WEPSecurity(Security):
- def read_from_args(self, *args):
- if len(args) != 2:
- raise ValueError("not enough arguments")
- if not isinstance(args[0], str):
- raise ValueError("wrong argument type for key")
- if not isinstance(args[1], int):
- raise ValueError("wrong argument type for auth_alg")
- self._key = args[0]
- self._auth_alg = args[1]
+ def read_from_args(self, key, auth_alg):
+# if len(args) != 2:
+# raise ValueError("not enough arguments")
+# if not isinstance(args[0], str):
+# raise ValueError("wrong argument type for key")
+# if not isinstance(args[1], int):
+# raise ValueError("wrong argument type for auth_alg")
+ self._key = key
+ self._auth_alg = auth_alg
def read_from_config(self, cfg, name):
# Key should be a hex encoded string
@@ -392,9 +392,9 @@ class NMInfo(object):
if not net:
async_err_cb(NotFoundError("Network was unknown."))
- self._nmclient.get_key_for_network(net)
+ self._nmclient.get_key_for_network(async_cb, async_err_cb, net)
- def get_key_for_network_cb(self, key, auth_alg, canceled=False):
+ def get_key_for_network_cb(self, key, auth_alg, async_cb, async_err_cb, canceled=False):
"""
Called by the NMClient when the Wireless Network Key dialog
is closed.
@@ -422,7 +422,8 @@ class NMInfo(object):
# Stuff the returned key and auth algorithm into a security object
# and return it to NetworkManager
sec = Security.new_from_args(we_cipher, key, auth_alg)
- async_cb(tuple(sec.get_properties()))
+ props = sec.get_properties()
+ async_cb(tuple(props))
def cancel_get_key_for_network(self):
# Tell the NMClient to close the key request dialog