summaryrefslogtreecommitdiffstats
path: root/func/minion/modules/func_module.py
Commit message (Collapse)AuthorAgeFilesLines
* Add support for local modules configuration files.Krzysztof A. Adamski2008-06-291-1/+10
|
* fixing a silly mistakemakkalot2008-06-151-1/+1
|
* validating if all arguments are registeredmakkalot2008-06-151-1/+4
|
* arghh we can not use private methods so make public that register thingmakkalot2008-06-021-3/+3
|
* remove the old version of the get_method_argumentsmakkalot2008-06-021-37/+0
|
* remove that dummy line im a complete git lame reallymakkalot2008-06-011-1/+1
|
* fix the import not to failmakkalot2008-06-011-1/+1
|
* a dummy testmakkalot2008-06-011-1/+1
|
* some testing commitsmakkalot2008-06-011-1/+0
|
* get_method args implemented also has backward supportmakkalot2008-06-011-3/+32
|
* reorganizing the func_arg to be able to get method arguments, small pushes ↵makkalot2008-06-011-7/+17
| | | | are cool
* the unittest for get_method_args it passes the system module test hacky like ↵makkalot2008-05-271-0/+1
| | | | other members like it we should implement them ...
* sometimes fails if there is no attr like that fixedmakkalot2008-05-271-3/+6
|
* we dont need the base one actually (self.__base_methods)makkalot2008-05-271-3/+6
|
* i should take a breakmakkalot2008-05-271-3/+2
|
* testing ...makkalot2008-05-271-1/+1
|
* does the arg comes with in a tuplemakkalot2008-05-271-0/+3
|
* adding get_method_args for the minion partmakkalot2008-05-271-2/+23
|
* thanks god we dont use svn everyone would see what silly things im doing :)makkalot2008-05-271-1/+1
|
* im a real git lame :) the creation of the new method for arg gettterroot2008-05-271-1/+10
|
* First commit in gsoc,reusing public method validation in func_moduleroot2008-05-271-2/+8
|
* Fix our FuncModule list_methodsLuke Macken2008-01-151-3/+13
|
* Don't expose FuncModule.register_rpcLuke Macken2008-01-151-1/+2
|
* Simplify our modules by auto-detecting them and registering their handlersLuke Macken2008-01-151-7/+7
| | | | | | | | | | | | | | - Auto-detect and load all FuncModules. This obsoletes the need to have our modules define a register_rpc method. - Use introspection in our FuncModule to auto-register all method handlers that do not being with an underscore. This obsoletes the need to hardcode methods in our modules. - Remove all __init__ methods from our modules, along with register_rpc - Modify the func-create-module script to reflect these changes. Note that doing 'from modules import func_module' is no longer supported in our modules, do to some interesting path issues with our auto-detection code. Supported methods are now: 'import func_module' or 'from func.minion.modules import func_module'
* removed a lot of misplaced shebangs.Steve 'Ashcrow' Milner2008-01-131-2/+0
|
* Moved code under the func namespace.Devan Goodwin2007-10-021-0/+67
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.