search for: gridform

Displaying 10 results from an estimated 10 matches for "gridform".

2011 Aug 08
0
[PATCH] check admin password for upgrade verification
..., anchorLeft = 1) elements.setField(Label("To reset password, please enter the current password "), 0, 2, anchorLeft = 1) pw_elements.setField(Label("Current Password: "), 0, 1, anchorLeft = 1) @@ -649,23 +649,21 @@ class NodeInstallScreen: gridform.add(progress_bar, 0, 1) gridform.draw() self.screen.refresh() - root_pw_set = password.set_password(self.root_password_1.value(), "root") - if root_pw_set: - admin_pw_set = password.set_password(self.root_password_1.value(), &...
2009 Dec 21
2
[PATCH] Fixed errors when the user selects a different remove libvirt host.
...f 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: gridform.add(element, 0, current_element) diff --git a/nodeadmin/libvirtworker.py b/nodeadmin/libvirtwork...
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 Sep 23
2
[PATCH node] Introduces the virtual network administration functions.
...nfigscreen.py b/nodeadmin/configscreen.py index 0282eee..f214aea 100644 --- a/nodeadmin/configscreen.py +++ b/nodeadmin/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 =...
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 Sep 16
1
Replacement that includes utils.py
The previous patch was missing this file. Resending.