From: Reed L. <r3...@us...> - 2002-06-29 20:42:07
|
CVSROOT : /cvsroot/cyclebot Module : cyclebot Commit time: 2002-06-29 20:42:06 UTC Modified files: TODO cyclebotConfParser.cpp cyclebotConfParser.h cyclebotVersion.h cyclebotWorld.cpp Log message: Various things ---------------------- diff included ---------------------- Index: cyclebot/TODO diff -u cyclebot/TODO:1.9 cyclebot/TODO:1.10 --- cyclebot/TODO:1.9 Tue Jan 22 18:10:54 2002 +++ cyclebot/TODO Sat Jun 29 13:41:56 2002 @@ -1,4 +1,4 @@ -$Id: TODO,v 1.9 2002/01/23 02:10:54 r33d Exp $ +$Id: TODO,v 1.10 2002/06/29 20:41:56 r33d Exp $ -Add PostGreSQL UserFile Stuff -Add Web Interface +TODO: +Create GNUWorld cyclebot module (see mod.cyclebot) Index: cyclebot/cyclebotConfParser.cpp diff -u cyclebot/cyclebotConfParser.cpp:1.6 cyclebot/cyclebotConfParser.cpp:1.7 --- cyclebot/cyclebotConfParser.cpp:1.6 Tue Jan 22 18:10:54 2002 +++ cyclebot/cyclebotConfParser.cpp Sat Jun 29 13:41:56 2002 @@ -1,4 +1,4 @@ -/* $Id: cyclebotConfParser.cpp,v 1.6 2002/01/23 02:10:54 r33d Exp $ */ +/* $Id: cyclebotConfParser.cpp,v 1.7 2002/06/29 20:41:56 r33d Exp $ */ // cyclebot, cyclebotConfParser.cpp // @@ -159,6 +159,7 @@ confInfo.chanlimit.erase(); confInfo.console.erase(); confInfo.consolekey.erase(); + confInfo.shortnick.erase(); confInfo.server.erase(); confInfo.vhost.erase(); confInfo.cycledelay.erase(); @@ -199,6 +200,8 @@ rp = &confInfo.console; else if(var == "consolekey") rp = &confInfo.consolekey; + else if(var == "shortnick") + rp = &confInfo.shortnick; else if(var == "server") rp = &confInfo.server; else if(var == "vhost") Index: cyclebot/cyclebotConfParser.h diff -u cyclebot/cyclebotConfParser.h:1.5 cyclebot/cyclebotConfParser.h:1.6 --- cyclebot/cyclebotConfParser.h:1.5 Tue Jan 22 18:10:54 2002 +++ cyclebot/cyclebotConfParser.h Sat Jun 29 13:41:56 2002 @@ -1,4 +1,4 @@ -/* $Id: cyclebotConfParser.h,v 1.5 2002/01/23 02:10:54 r33d Exp $ */ +/* $Id: cyclebotConfParser.h,v 1.6 2002/06/29 20:41:56 r33d Exp $ */ #ifndef cyclebotConfParser_H_ #define cyclebotConfParser_H_ @@ -69,6 +69,7 @@ string chanlimit; string console; string consolekey; + string shortnick; string server; string vhost; string cycledelay; Index: cyclebot/cyclebotVersion.h diff -u cyclebot/cyclebotVersion.h:1.6 cyclebot/cyclebotVersion.h:1.7 --- cyclebot/cyclebotVersion.h:1.6 Tue Jan 22 13:06:33 2002 +++ cyclebot/cyclebotVersion.h Sat Jun 29 13:41:56 2002 @@ -1,4 +1,4 @@ -/* $Id: cyclebotVersion.h,v 1.6 2002/01/22 21:06:33 r33d Exp $ */ +/* $Id: cyclebotVersion.h,v 1.7 2002/06/29 20:41:56 r33d Exp $ */ #ifndef cyclebotVersion_H_ #define cyclebotVersion_H_ @@ -26,7 +26,7 @@ // -#define VERSION_STRING "[cyclebot 1.1pl3]" +#define VERSION_STRING "[cyclebot 1.1pl4]" Index: cyclebot/cyclebotWorld.cpp diff -u cyclebot/cyclebotWorld.cpp:1.12 cyclebot/cyclebotWorld.cpp:1.13 --- cyclebot/cyclebotWorld.cpp:1.12 Tue Jan 22 18:10:54 2002 +++ cyclebot/cyclebotWorld.cpp Sat Jun 29 13:41:56 2002 @@ -1,4 +1,4 @@ -/* $Id: cyclebotWorld.cpp,v 1.12 2002/01/23 02:10:54 r33d Exp $ */ +/* $Id: cyclebotWorld.cpp,v 1.13 2002/06/29 20:41:56 r33d Exp $ */ // cyclebot, cyclebotWorld.cpp // @@ -33,7 +33,7 @@ #include "cyclebotVersion.h" #include "string_tokenizer.h" -#include "numeric.h" // ircu numerics +#include "numeric.h" // IRCu numerics #include <fstream> #include <strstream> ----------------------- End of diff ----------------------- |