search for: create_page

Displaying 8 results from an estimated 8 matches for "create_page".

Did you mean: create_date
2009 Sep 23
2
[PATCH node] Introduces the virtual network administration functions.
...am; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, +# MA 02110-1301, USA. A copy of the GNU General Public License is +# also available at http://www.gnu.org/copyleft/gpl.html. + +from snack import * +from configscreen import * + +LIST_PAGE = 1 +CREATE_PAGE = 2 + +class CreateNetworkConfigScreen(NetworkListConfigScreen): + def __init__(self): + NetworkListConfigScreen.__init__(self, "Create A Network") + + def get_elements_for_page(self, screen, page): + if page is LIST_PAGE: return self.get_network_list_page(screen,...
2009 Oct 21
1
[PATCH node] Renamed files and menu items for node administration:
...ranklin Street, Fifth Floor, Boston, -# MA 02110-1301, USA. A copy of the GNU General Public License is -# also available at http://www.gnu.org/copyleft/gpl.html. - -from snack import * -from configscreen import * - -class CreateDomainConfigScreen(DomainListConfigScreen): - LIST_PAGE = 1 - CREATE_PAGE = 2 - - def __init__(self): - DomainListConfigScreen.__init__(self, "Create A Domain") - - def get_elements_for_page(self, screen, page): - if page is self.LIST_PAGE: - return self.get_domain_list_page(screen, created = False) - elif page is self.CREA...
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.
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.