Displaying 2 results from an estimated 2 matches for "network_page".
2011 Aug 10
0
[PATCH] remove network page loop when selecting other pages
...setup.py
@@ -1570,13 +1570,12 @@ class NodeConfigScreen():
self.__current_page = menu_choice
if self.net_apply_config == 1:
self.net_apply_config = 0
- self.__current_page = NETWORK_PAGE
elif self.__current_page == NETWORK_DETAILS_PAGE:
if pressed == BACK_BUTTON:
self.__current_page = NETWORK_PAGE
elif self.net_apply_config == 1:
self....
2011 Aug 11
0
[PATCH] map nics-> bridges correctly in network pages, when cancelling nic configuration return to network page
...or is_valid_ipv6(current_gateway):
self.ipv4_netdevgateway.set(current_gateway)
ipv4_grid = Grid (5,3)
@@ -1576,10 +1572,7 @@ class NodeConfigScreen():
elif self.net_apply_config == 1:
self.__current_page = NETWORK_PAGE
elif is_managed():
- dev_interface,dev_bootproto,dev_vendor,dev_address,dev_driver,dev_conf_status = self.nic_dict[self.nic_lb.current()].split(",", 5)
- if self.configured_nics >= 1 and dev_conf...