Merge lp:~stefanor/ibid/irc-password-789187 into lp:ibid

Proposed by Stefano Rivera
Status: Merged
Approved by: Max Rabkin
Approved revision: 1038
Merged at revision: 1039
Proposed branch: lp:~stefanor/ibid/irc-password-789187
Merge into: lp:ibid
Diff against target: 20 lines (+3/-0)
1 file modified
ibid/source/irc.py (+3/-0)
To merge this branch: bzr merge lp:~stefanor/ibid/irc-password-789187
Reviewer Review Type Date Requested Status
Max Rabkin Approve
Keegan Carruthers-Smith Approve
Review via email: mp+80763@code.launchpad.net

Commit message

Add the option of specifying an IRC server password.

Description of the change

Untested, but seems straightforward. Anyone know a server to test it against? (I'm not about to set one up just for this...

To post a comment you must log in.
Revision history for this message
Keegan Carruthers-Smith (keegan-csmith) wrote :

I have not tested this either, but your diff seems to agree with the twisted documentation on IRCClient.

review: Approve
Revision history for this message
Keegan Carruthers-Smith (keegan-csmith) wrote :

Ok tested on a local irc server, and it works.

Revision history for this message
Ibid Branch Auto-Lander (ibid-tarmac) wrote :

Voting does not meet specified criteria. Required: Approve >= 1, Disapprove == 0. Got: 1 Pending.

Revision history for this message
Max Rabkin (max-rabkin) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'ibid/source/irc.py'
2--- ibid/source/irc.py 2011-02-09 10:55:45 +0000
3+++ ibid/source/irc.py 2011-10-30 20:49:24 +0000
4@@ -28,6 +28,8 @@
5 def connectionMade(self):
6 self.nickname = self.factory.nick.encode('utf-8')
7 self.realname = self.factory.realname.encode('utf-8')
8+ if self.factory.password is not None:
9+ self.password = self.factory.password.encode('utf-8')
10
11 irc.IRCClient.connectionMade(self)
12
13@@ -312,6 +314,7 @@
14 server = Option('server', 'Server hostname')
15 nick = Option('nick', 'IRC nick', ibid.config['botname'])
16 realname = Option('realname', 'Full Name', ibid.config['botname'])
17+ password = Option('password', 'Connection password', None)
18 modes = Option('modes', 'User modes to set')
19 channels = ListOption('channels', 'Channels to autojoin', [])
20 ping_interval = FloatOption('ping_interval', 'Seconds idle before sending a PING', 60)

Subscribers

People subscribed via source and target branches

to all changes: