Update of /cvsroot/pybot/pybot
In directory sc8-pr-cvs1:/tmp/cvs-serv11697
Modified Files:
ChangeLog TODO pybot.conf
Log Message:
- modules/userdata.py,modules/permission.py: A much better userdata
registry and permission system was developed.
- misc.py: Increased maximum line size to 400 characters.
- Miscelaneous bugfixes.
Index: ChangeLog
===================================================================
RCS file: /cvsroot/pybot/pybot/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** ChangeLog 8 May 2003 19:11:33 -0000 1.10
--- ChangeLog 9 May 2003 15:27:43 -0000 1.11
***************
*** 1,2 ****
--- 1,7 ----
+ 2003-05-09 Gustavo Niemeyer <nie...@co...>
+ * modules/userdata.py,modules/permission.py: A much better userdata
+ registry and permission system was developed.
+ * misc.py: Increased maximum line size to 400 characters.
+
2003-05-08 Gustavo Niemeyer <nie...@co...>
* modules/xmlrpc.py: New xmlrpc module.
Index: TODO
===================================================================
RCS file: /cvsroot/pybot/pybot/TODO,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** TODO 5 May 2003 20:47:14 -0000 1.3
--- TODO 9 May 2003 15:27:43 -0000 1.4
***************
*** 14,21 ****
the code.
- - Give users a chance to identify themselves to pybot when they are in
- other servers than their registered ones. Must discover some way to
- detect when the user has left and auto-logout him
-
- Develop a README explaining how to do the basic setup of pybot.
--- 14,17 ----
Index: pybot.conf
===================================================================
RCS file: /cvsroot/pybot/pybot/pybot.conf,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** pybot.conf 8 May 2003 19:11:34 -0000 1.4
--- pybot.conf 9 May 2003 15:27:43 -0000 1.5
***************
*** 9,12 ****
--- 9,27 ----
; ~/.pybot/config -> ~/.pybot/data/
+ [permission]
+ ; This will tell pybot who should have unrestricted access to all
+ ; permissions. You should register the nicks you put here as soon as
+ ; possible (send "help register" to pybot for more information).
+ ;
+ ; After you have admin powers, you can also give others admin powers
+ ; on-the-fly, by giving the "admin" permission through the permission
+ ; system (send "help permission" to pybot for more information), or just
+ ; append an entry here and restart pybot.
+ admins = niemeyer@i.conectiva.com.br
+
+ [userdata]
+ ; 30min
+ login_timeout = 1800
+
[infopack]
infopackdir = %(datadir)s/infopacks
***************
*** 23,27 ****
interval = 10
! [plocks]
dirpath = /cnc/distro/plocks/
--- 38,42 ----
interval = 10
! [plock]
dirpath = /cnc/distro/plocks/
|