| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
Also, fix module import failure error message.
|
|
|
|
| |
An ImportError will now just print the error and continue with module loading.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This also implies that methods calls need a module as well
(aka, you now have to call test.test_add instead of just test_add)
but this also means you can setup
modules/foo/bar/blip.py
and blip.py exports a "do_blippy" method, which you would call
by the name
foo.bar.blip.do_blippy()
Note, any subdir that has module files in it, will need an
approriate __init__.py file.
server.py, func_module.py: To do the above, we need to pass
in the module_name to the register function, so we can associate
it correctly.
server.py also got a fix for a FuncException that needed
tobe codes.FuncException
|
| |
|
|
|
|
|
| |
3rd party modules wont be here anyway, so remove all that
weird noise
|
| |
|
|\ |
|
| |
| |
| |
| | |
to virt-factory.
|
|/
|
|
| |
there are smarter ways to do this I'm sure
|
|
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
|