[pybot-commits] CVS: pybot/data/infopacks airport.info,1.1.1.1,1.2 ports.info,1.1.1.1,1.2 vera.info,
Brought to you by:
niemeyer
From: Gustavo N. <nie...@us...> - 2003-05-12 20:42:53
|
Update of /cvsroot/pybot/pybot/data/infopacks In directory sc8-pr-cvs1:/tmp/cvs-serv6970/data/infopacks Modified Files: airport.info ports.info vera.info Log Message: Major work on pybot!! * modules/*: All modules moved to the new re matching system. * command.py: Removed old matching system. * modules/*: Pickling replaced by sqlite in all places were persistence was needed. * modules/*: All modules have inline help. * modules/*: All modules have permission help. * modules/infopack.py: Infopacks have help now. * *: Many method names changed to a better alternative. * options.py: Removed soft/hard relation. Now there's a single dict that might resist to reboots, if necessary. Notice that no standard module uses it for persistent options, since they use sqlite. * modules/example.py: Introduced basic sample module. * modules/soap.py: Obsoleted. Use xmlrpc instead. * scripts/pybotmsg.py: Added a basic xmlrpc client. * runner.py: Included other modules in the "default load" ones. * *: Other changes I probably forgot. Index: airport.info =================================================================== RCS file: /cvsroot/pybot/pybot/data/infopacks/airport.info,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** airport.info 2 Nov 2001 17:19:09 -0000 1.1.1.1 --- airport.info 12 May 2003 20:42:19 -0000 1.2 *************** *** 4,7 **** --- 4,8 ---- # information about infobot at http://www.infobot.org. # + H:This infopack provides a database of airport locations around the world. You can ask for an airport location using "airport <code>". T:(?:what|where)(?:'s|\s+is)\s+(?:the\s+)?airport\s+(?:code\s+)?([a-z]{3})\s*(?:!*\?[!?]*)?$ T:airport\s+([a-zA-Z]{3})\s*(?:!*\?[!?]*)?$ Index: ports.info =================================================================== RCS file: /cvsroot/pybot/pybot/data/infopacks/ports.info,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ports.info 2 Nov 2001 17:19:21 -0000 1.1.1.1 --- ports.info 12 May 2003 20:42:19 -0000 1.2 *************** *** 4,7 **** --- 4,8 ---- # information about infobot at http://www.infobot.org. # + H:This infopack provides a database of port numbers. You can check what service is usually provided in a port number using "port <num>". T:what(?:'s|\s+is)\s+(?:the\s+)?port\s+(?:number\s+)?([0-9]+)(?:\s+for)\s*(?:!*\?[!?]*)?$ T:port\s+(\d+)[!?.]*$ Index: vera.info =================================================================== RCS file: /cvsroot/pybot/pybot/data/infopacks/vera.info,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** vera.info 2 Nov 2001 17:20:19 -0000 1.1.1.1 --- vera.info 12 May 2003 20:42:19 -0000 1.2 *************** *** 7,10 **** --- 7,11 ---- # ftp://ftp.gnu.org/gnu/vera # + H:This infopack provides the VERA database of acronyms. You can check for a given a acronym using "acronym <acronym>". T:acronym\s+(\w+)\s*\?*$ D:t:No acronym for that. |