[Buildbot-commits] buildbot/docs buildbot.texinfo,1.39,1.40

Brian Warner warner at users.sourceforge.net
Mon Mar 13 09:29:59 UTC 2006


Update of /cvsroot/buildbot/buildbot/docs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5432/docs

Modified Files:
	buildbot.texinfo 
Log Message:
* buildbot/status/words.py (IRC): add an optional password= argument, which
will be sent to Nickserv in an IDENTIFY message at login, to claim the
nickname. freenode requires this before the bot can sent (or reply to)
private messages. Thanks to Clement Stenac for the patch.
* docs/buildbot.texinfo (IRC Bot): document it


Index: buildbot.texinfo
===================================================================
RCS file: /cvsroot/buildbot/buildbot/docs/buildbot.texinfo,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -d -r1.39 -r1.40
--- buildbot.texinfo	12 Mar 2006 11:53:59 -0000	1.39
+++ buildbot.texinfo	13 Mar 2006 09:29:57 -0000	1.40
@@ -3718,12 +3718,16 @@
 @example
 from twisted.status import words
 irc = words.IRC("irc.example.org", "botnickname", 
-                channels=["channel1", "channel2"])
+                channels=["channel1", "channel2"],
+                password="mysecretpassword")
 c['status'].append(irc)
 @end example
 
 Take a look at the docstring for @code{words.IRC} for more details on
-configuring this service.
+configuring this service. The @code{password} argument, if provided,
+will be sent to Nickserv to claim the nickname: some IRC servers will
+not allow clients to send private messages until they have logged in
+with a password.
 
 To use the service, you address messages at the buildbot, either
 normally (@code{botnickname: status}) or with private messages





More information about the Commits mailing list