search for: __current_page

Displaying 13 results from an estimated 13 matches for "__current_page".

2011 Aug 10
0
[PATCH] remove network page loop when selecting other pages
..., 4 insertions(+), 5 deletions(-) diff --git a/scripts/ovirt-config-setup.py b/scripts/ovirt-config-setup.py index a83e7e8..4bd46d5 100755 --- a/scripts/ovirt-config-setup.py +++ b/scripts/ovirt-config-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:...
2011 Jul 20
0
[PATCH] change restart button label to reboot
...;Restart" +REBOOT_BUTTON = "Reboot" POWEROFF_BUTTON = "Power Off" CONTINUE_BUTTON = "Continue" SHELL_BUTTON = "Drop To Shell" @@ -700,7 +700,7 @@ class NodeInstallScreen: current_element += 1 buttons = [] if self.__current_page == FINISHED_PAGE: - buttons.append(["Restart", RESTART_BUTTON]) + buttons.append(["Reboot", REBOOT_BUTTON]) if self.__current_page != FINISHED_PAGE: buttons.append(["Quit", QUIT_BUTTON]) if self._...
2011 Aug 08
0
[PATCH] check admin password for upgrade verification
...gridform.add(progress_bar, 0, 1) - gridform.draw() - self.screen.refresh() - boot_setup = install.ovirt_boot_setup() - if boot_setup: - progress_bar.set(100) - self.__current_page = FINISHED_PAGE + admin_pw_set = password.set_password(self.root_password_1.value(), "admin") + if admin_pw_set: + gridform.add(progress_bar, 0, 1) + gridform.draw() + self.screen.refresh() + progress_bar.se...
2011 Aug 11
0
[PATCH] map nics-> bridges correctly in network pages, when cancelling nic configuration return to network page
...(current_gateway) 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 >=...
2011 Aug 05
1
[PATCH 1/2] update comparison for presenting dowgrade/upgrade/install/reinstall options
rhbz#691679 Signed-off-by: Joey Boggs <jboggs at redhat.com> --- scripts/ovirt-config-installer.py | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/scripts/ovirt-config-installer.py b/scripts/ovirt-config-installer.py index ff2ccc8..cacce5e 100644 --- a/scripts/ovirt-config-installer.py +++ b/scripts/ovirt-config-installer.py @@ -29,6 +29,7 @@ import
2009 Jul 31
2
RFC: This patch is not being submitted for ACK...
...just looking for some feedback on the direction I'm going. The code won't get all the way to the define stage since I'm in the middle of retrofitting it to use virtinst instead of a home spun node definition.
2009 Aug 31
1
Fixed patch...
This version of the patch includes feedback from jboggs at redhat.com, including fixes to the BuildRequires and Requires in the spec file.
2009 Sep 11
1
Text-based node administration tool
This patch obsoletes any previous ones. This is an upstream candidate, so I'm looking for feedback so we can push this and start using it.
2009 Sep 14
1
Bugfixes...
This version fixes a few bugs found by jboggs. It also includes some logging facilities that need to be fleshed out more.
2009 Sep 16
1
Final push candidate for nodeadmin tool...
This patch is ready for pushing upstream.
2009 Dec 21
2
[PATCH] Fixed errors when the user selects a different remove libvirt host.
...) self.__vm_config = VirtManagerConfig() + def get_title(self): + return self.__title + def get_hal(self): return self.__hal @@ -83,7 +86,7 @@ class ConfigScreen: screen = SnackScreen() elements = self.get_elements_for_page(screen, self.__current_page) # TODO: need to set the form height to the number of elements on the page - gridform = GridForm(screen, self.__title, 1, 10) + gridform = GridForm(screen, self.get_title(), 1, 10) current_element = 0 for element in elements:...
2009 Sep 16
1
Replacement that includes utils.py
The previous patch was missing this file. Resending.
2009 Sep 23
2
[PATCH node] Introduces the virtual network administration functions.
...deadmin/configscreen.py @@ -77,8 +77,9 @@ class ConfigScreen: active = True while active and (self.__finished == False): screen = SnackScreen() - gridform = GridForm(screen, self.__title, 1, 4) elements = self.get_elements_for_page(screen, self.__current_page) + # TODO: need to set the form height to the number of elements on the page + gridform = GridForm(screen, self.__title, 1, 10) current_element = 0 for element in elements: gridform.add(element, 0, current_element) @@ -133,7 +134,7 @@...