fuel-web/fuelmenu
Matthew Mosesohn afbcea1d49 Double-quote all strings in astute.yaml
Puppet sometimes interprets a mac address as a
numeric value and not a string. For this reason,
it is necessary to enclose all values in quotes
to avoid this issue.

Change-Id: I68e3d558768d9f0afe7b8a60d9360cf257c92340
Closes-Bug: #1454708
2015-05-13 17:39:43 +03:00
..
fuelmenu Double-quote all strings in astute.yaml 2015-05-13 17:39:43 +03:00
MANIFEST.in more rebase fixes 2013-09-25 19:31:32 +04:00
README move fuelmenu to base level 2013-09-25 15:33:15 +04:00
requirements.txt Added tox.ini files to subprojects 2014-06-17 17:55:14 +04:00
setup.py Set version of Fuel to 6.1 everywhere 2015-04-16 14:55:58 +00:00
test-requirements.txt Added tox.ini files to subprojects 2014-06-17 17:55:14 +04:00
tox.ini Don't install package dependencies for flake8 2014-06-20 20:05:50 +00:00

Fuel menu

This tool is used to perform setup of network interfaces, as well as configure
Cobbler parameters. The framework is extensible. 

Plugin guidelines:

Create a python class with a filename matching the class:
class foo(urwid.Widget) and foo.py

Place this file in the Fuel Menu modules folder.

Plugin class should define the following functions:
__init__(self, parent)
check(self, args)
apply(self, args)
save(self) #Still need to complete
load(self) #Still need to complete
screenUI(self)

screenUI should use urwidwrapper class to define and set up all UI elements
Note that you need to specify a function for buttons and radio button groups
for them to work properly.  Check and Apply buttons should point to check and
apply functions, respectively.