Update of /cvsroot/pybot/pybot
In directory sc8-pr-cvs1:/tmp/cvs-serv15913
Modified Files:
ChangeLog pybot.conf
Log Message:
- New xmlrpc module.
- New testadora module, supporting compile time command, for now. This is
useful for Conectiva only.
- Accept "(remove|delete|del) permission" as well.
- Implemented sqlite db storage.
- Use sqlite storage to maintain logs.
- Adopted re system, and added a command to show loaded modules.
Index: ChangeLog
===================================================================
RCS file: /cvsroot/pybot/pybot/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** ChangeLog 8 May 2003 16:50:56 -0000 1.8
--- ChangeLog 8 May 2003 18:30:59 -0000 1.9
***************
*** 6,9 ****
--- 6,13 ----
* modules/permission.py: Accept "(remove|delete|del) permission"
as well.
+ * sqlitedb.py,__init__.py: Implemented sqlite db storage.
+ * modules/log.py: Use sqlite storage to maintain logs.
+ * modules/modulecontrol.py: Adopted re system, and added a command
+ to show loaded modules.
2002-06-19 Gustavo Niemeyer <nie...@co...>
Index: pybot.conf
===================================================================
RCS file: /cvsroot/pybot/pybot/pybot.conf,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** pybot.conf 19 Jun 2002 20:05:37 -0000 1.2
--- pybot.conf 8 May 2003 18:30:59 -0000 1.3
***************
*** 4,7 ****
infopackdir = %(datadir)s/infopacks
! [log]
! logfile = %(datadir)s/logs/pybot.log
--- 4,10 ----
infopackdir = %(datadir)s/infopacks
! [testadora]
! mondir = /cnc/testadora/mon
!
! [sqlite]
! logfile = %(datadir)s/sqlite.db
|