[SimBot-commits] CVS: simbot/plugins sqlite-logger.pl,1.62,1.63
Status: Abandoned
Brought to you by:
kstange
|
From: Pete P. <fou...@us...> - 2005-08-17 16:53:50
|
Update of /cvsroot/simbot/simbot/plugins In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv533/plugins Modified Files: sqlite-logger.pl Log Message: Better SQL queries, perltidy, and a comment or two. Index: sqlite-logger.pl =================================================================== RCS file: /cvsroot/simbot/simbot/plugins/sqlite-logger.pl,v retrieving revision 1.62 retrieving revision 1.63 diff -u -d -p -r1.62 -r1.63 --- sqlite-logger.pl 17 Aug 2005 12:33:54 -0000 1.62 +++ sqlite-logger.pl 17 Aug 2005 16:53:23 -0000 1.63 @@ -2,7 +2,7 @@ # SimBot sqlite Logger Plugin # # DESCRIPTION: -# Logs chat SimBot sees to a SQLite log. This could be used to +# Logs chat SimBot sees to a SQLite log. This could be used to # generate channel statistics, a more intelligent seen plugin, and # more. # @@ -12,12 +12,12 @@ # This program is free software; you can redistribute and/or modify it # under the terms of version 2 of the GNU General Public License as [...1837 lines suppressed...] + hash_plugin_nlp_verbs => [ 'seen', 'see' ], + hash_plugin_nlp_formats => + [ '{w} here', 'see {w}', '{w} seen', 'seen {w}' ], + hash_plugin_nlp_questions => [ 'have-you', 'did-you', 'when-is', ], ); - + $SimBot::hash_plugin_httpd_pages{'log'} = { - 'title' => 'Log Viewer', + 'title' => 'Log Viewer', 'handler' => \&web_request, }; $SimBot::hash_plugin_httpd_pages{'stats'} = { - 'title' => 'Statistics', + 'title' => 'Statistics', 'handler' => \&web_stats, -}; \ No newline at end of file +}; |