diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2007-03-20 21:38:37 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2007-03-20 21:38:37 +0000 |
| commit | 4b53fef5099e42240db57ce118dd9aa570b7815d (patch) | |
| tree | f0afc726fc6c412da236f5e48de8f488df1ec08c /lib/python/Screens/NetworkSetup.py | |
| parent | eba98a3843d8358cd66d3d8a31b08771899ce705 (diff) | |
| download | enigma2-4b53fef5099e42240db57ce118dd9aa570b7815d.tar.gz enigma2-4b53fef5099e42240db57ce118dd9aa570b7815d.zip | |
some fixes for the new network configuration
adding Reichi's WirelessLan configuration plugin (not yet fully functional)
Diffstat (limited to 'lib/python/Screens/NetworkSetup.py')
| -rw-r--r-- | lib/python/Screens/NetworkSetup.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/python/Screens/NetworkSetup.py b/lib/python/Screens/NetworkSetup.py index 94d9fcbc..a2b15e93 100644 --- a/lib/python/Screens/NetworkSetup.py +++ b/lib/python/Screens/NetworkSetup.py @@ -137,6 +137,7 @@ class AdapterSetup(Screen, ConfigListScreen): self.list.append(getConfigListEntry(_('Gateway'), self.gatewayConfigEntry)) self.extended = None + self.extendedSetup = None for p in plugins.getPlugins(PluginDescriptor.WHERE_NETWORKSETUP): callFnc = p.__call__["ifaceSupported"](self.iface) if callFnc is not None: @@ -147,7 +148,7 @@ class AdapterSetup(Screen, ConfigListScreen): else: self.configStrings = None - if p.__call__.has_key(menuEntryName): + if p.__call__.has_key("menuEntryName"): menuEntryName = p.__call__["menuEntryName"](self.iface) else: menuEntryName = _('Extended Setup...') @@ -183,8 +184,6 @@ class AdapterSetup(Screen, ConfigListScreen): else: iNetwork.removeAdapterAttribute(self.iface, "gateway") - print "self.extended:", self.extended - print "self.configStrings:", self.configStrings if self.extended is not None and self.configStrings is not None: iNetwork.setAdapterAttribute(self.iface, "configStrings", self.configStrings(self.iface)) |
