[pybot-commits] CVS: pybot/pybot __init__.py,1.2,1.3 module.py,1.3,1.4
Brought to you by:
niemeyer
From: Gustavo N. <nie...@us...> - 2003-05-05 20:47:26
|
Update of /cvsroot/pybot/pybot/pybot In directory sc8-pr-cvs1:/tmp/cvs-serv17260/pybot Modified Files: __init__.py module.py Log Message: Created xmlrpc module, including xmlrpc support for pybot. Index: __init__.py =================================================================== RCS file: /cvsroot/pybot/pybot/pybot/__init__.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** __init__.py 4 Dec 2001 00:57:37 -0000 1.2 --- __init__.py 5 May 2003 20:47:18 -0000 1.3 *************** *** 18,22 **** def init(): ! from pybot.module import Modules, ModuleMethods, SoapMethods from pybot.option import Options from pybot.server import Servers --- 18,22 ---- def init(): ! from pybot.module import Modules, ModuleMethods, RemoteMethods from pybot.option import Options from pybot.server import Servers *************** *** 27,31 **** import os ! global main, modls, servers, options, hooks, mm, sm, config hooks = Hooks() --- 27,31 ---- import os ! global main, modls, servers, options, hooks, mm, rm, config hooks = Hooks() *************** *** 35,39 **** modls = Modules() mm = ModuleMethods() ! sm = SoapMethods() config = ConfigParser() --- 35,39 ---- modls = Modules() mm = ModuleMethods() ! rm = RemoteMethods() config = ConfigParser() Index: module.py =================================================================== RCS file: /cvsroot/pybot/pybot/pybot/module.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** module.py 4 Dec 2001 00:57:38 -0000 1.3 --- module.py 5 May 2003 20:47:20 -0000 1.4 *************** *** 121,125 **** del self.__methods[name] ! class SoapMethods: def __init__(self): self.__func = {} --- 121,125 ---- del self.__methods[name] ! class RemoteMethods: def __init__(self): self.__func = {} |