summaryrefslogtreecommitdiffstats
path: root/scripts/func-create-module
Commit message (Collapse)AuthorAgeFilesLines
* Added in copyright and traditional comment header for new modules.Steve 'Ashcrow' Milner2008-01-201-4/+23
|
* Updated networktest to be the new way of defining modules and updated ↵Steve 'Ashcrow' Milner2008-01-161-1/+10
| | | | func-create-module to add in docstrings.
* Simplify our modules by auto-detecting them and registering their handlersLuke Macken2008-01-151-19/+4
| | | | | | | | | | | | | | - 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'
* Added in func-create-module to make boilerplate module code. spec, setup and ↵Steve 'Ashcrow' Milner2008-01-131-0/+66
version updated as well.