From: <br...@us...> - 2007-11-16 01:15:58
|
Revision: 323 http://libirc.svn.sourceforge.net/libirc/?rev=323&view=rev Author: brlcad Date: 2007-11-15 17:15:52 -0800 (Thu, 15 Nov 2007) Log Message: ----------- test Modified Paths: -------------- trunk/libirc/README trunk/libirc/examples/Makefile.am trunk/libirc/examples/stupidBot/sample.cfg trunk/libirc/src/ircBasicCommands.cpp Modified: trunk/libirc/README =================================================================== --- trunk/libirc/README 2007-11-16 01:10:02 UTC (rev 322) +++ trunk/libirc/README 2007-11-16 01:15:52 UTC (rev 323) @@ -59,3 +59,4 @@ For more immediate and interactive communication, please visit the developers on the Freenode IRC network (irc.freenode.net, port 6667) in #brlcad. See http://irchelp.org/ if you're new to IRC. + Modified: trunk/libirc/examples/Makefile.am =================================================================== --- trunk/libirc/examples/Makefile.am 2007-11-16 01:10:02 UTC (rev 322) +++ trunk/libirc/examples/Makefile.am 2007-11-16 01:15:52 UTC (rev 323) @@ -3,10 +3,12 @@ SUBDIRS = \ simpleIRCConnect \ simpleTCPConnect \ - spamBot \ stupidBot \ stupidServer +EXTRA_DIST = \ + spamBot + MAINTAINERCLEANFILES = Makefile.in include $(top_srcdir)/misc/Makefile.defs Modified: trunk/libirc/examples/stupidBot/sample.cfg =================================================================== --- trunk/libirc/examples/stupidBot/sample.cfg 2007-11-16 01:10:02 UTC (rev 322) +++ trunk/libirc/examples/stupidBot/sample.cfg 2007-11-16 01:15:52 UTC (rev 323) @@ -1,25 +1,26 @@ -nick:stupidBot -nick:stupiderBot -nick:stupiderBot2 +nick:CIA-MIA +nick:CIA-DOA +nick:CIA-NOHUG server:irc.freenode.net port:6667 -username: libirc +username:relay host:localhost -realname:"a lib irc sample" +realname:"a libIRC CIA relay bot" -channel:#libirc +channel:#libIRC +channel:#bzflag +//channel:#emesene +//channel:#norganna +channel:#commits -master:YOUR_USERNAME - -joinmessage:#libirc "Yet another StupidBot reporting for duty" - -dontknow:"huh?" - -part:"bye" -quit: "quiting" - -action:dance "waves it like it just don't care" -factoid:status "online" -factoid:ping "pong" +ciaecho:#commits libirc #libirc +ciaecho:#commits libirc #bzflag +ciaecho:#commits bzflag #bzflag +ciaecho:#commits gplib #bzflag +ciaecho:#commits opencombat #bzflag +//ciaecho:#commits emesene #emesene +//ciaecho:#commits auctioneer #norganna +//ciaecho:#commits gatherer #norganna +//ciaecho:#commits norganna-libs #norganna Modified: trunk/libirc/src/ircBasicCommands.cpp =================================================================== --- trunk/libirc/src/ircBasicCommands.cpp 2007-11-16 01:10:02 UTC (rev 322) +++ trunk/libirc/src/ircBasicCommands.cpp 2007-11-16 01:15:52 UTC (rev 323) @@ -261,7 +261,7 @@ bool IRCClientPrivMsgCommand::receve ( IRCClient &client, const std::string &command, BaseIRCCommandInfo &info ) { - client.privMessage(info); + // client.privMessage(info); return true; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |