summaryrefslogtreecommitdiffstats
path: root/modules/test.py
Commit message (Collapse)AuthorAgeFilesLines
* Moved code under the func namespace.Devan Goodwin2007-10-021-19/+0
| | | | | | Previously we had overlord, minion, modules, and func all at the root of the source tree. After install these would all be shuffled below func. Relocated them in the source tree to reflect this.
* pyflakes cleanupsAdrian Likins2007-09-241-1/+0
| | | | | | | mostly just removing unused modules change "from codes import *" to "import codes" in a couple places and updated accordingly
* add some simple support for base object methodsAdrian Likins2007-09-241-0/+3
| | | | | | | | | | | | | add "module_version", "module_api_version" and "module_description" as base object methods. All classes based on func_module should get this. modules should set a self.version, self.api_version, self.description with approriate values. class or instance variables both work. If values aren't set, defaults are provided. alternativelt, the modules can implement and export "module_version", "module_api_version", and "module_description" themself if they like
* Remove underscores from exported function names as they are now redundant.Michael DeHaan2007-09-211-1/+1
|
* Rename web_svc as func_module.Michael DeHaan2007-09-211-3/+3
|
* Baseobj bites the dust.Michael DeHaan2007-09-201-11/+2
|
* initial code dropAdrian Likins2007-09-201-0/+26
module_loader from the virt-factory node server xmlrpc server from the virt-factory-server code and some test modules no ssl support yet, no init scripts, no packagin etc