log bridge.py @ 275:09a5bde70919 default tip master

age author description
Tue, 13 Apr 2010 11:46:02 +0200 Charly COSTE fixed an UnboundLocalError in Bridge._xmpp_join_callback
Tue, 23 Mar 2010 18:38:59 +0100 Charly COSTE catch xmpp.muc.NotConnected in Bridge._say_on_xmpp
Tue, 23 Mar 2010 00:53:01 +0100 Charly COSTE fix in Bridge, don't change mode to None otherwise restart cannot work
Tue, 23 Mar 2010 00:42:36 +0100 Charly COSTE catch irclib.UnknownChannel in Bridge.stop and Bridge.soft_restart
Tue, 23 Mar 2010 00:41:38 +0100 Charly COSTE minor fix in Bridge, forgot namespace in bca57d434e135f3a482b11c3ea490266a187612f
Tue, 23 Mar 2010 00:16:39 +0100 Charly COSTE minor change in Bridge, lighten up error message in _xmpp_join_callback
Mon, 22 Mar 2010 18:41:57 +0100 Charly COSTE handle irclib.ServerNotConnectedError in Bridge._say_on_irc
Mon, 22 Mar 2010 18:35:09 +0100 Charly COSTE fixed Bot.restart_bridges_delayed: removed buggy and useless test and improved error messages
Sat, 13 Mar 2010 17:38:47 +0100 Charly COSTE (irclib) created a "Channel" class
Thu, 11 Mar 2010 14:15:31 +0100 Charly COSTE (muc) created "state" attribute to replace the "connected" one
Mon, 08 Mar 2010 23:41:37 +0100 Charly COSTE minor fix in Bridge, don't log the same error twice
Mon, 08 Mar 2010 21:35:31 +0100 Charly COSTE minor changes in Bridge
Mon, 08 Mar 2010 11:12:41 +0100 Charly COSTE fix for Bridge.remove_participant, bug introduced in d875cbf0a544e6ad0c640f3afedbc2c87fb4db9c
Mon, 08 Mar 2010 11:14:40 +0100 Charly COSTE created Bridge.soft_restart
Sun, 07 Mar 2010 23:50:56 +0100 Charly COSTE tried to fix Bridge.remove_participant
Sun, 07 Mar 2010 23:03:18 +0100 Charly COSTE fix for 48ad162772b79740e8ff580bde2c250b9957c126, we do need arguments in nick callbacks
Sun, 07 Mar 2010 18:52:48 +0100 Charly COSTE switch to IRC join callbacks in bridge.py and participant.py
Sun, 07 Mar 2010 14:00:21 +0100 Charly COSTE moved irc_id handling to irclib
Sun, 07 Mar 2010 12:08:29 +0100 Charly COSTE moved "nicknametoolong" and ServerConnection.really_connected handling to irclib, renamed ServerConnection.really_connected to .logged_in
Sat, 06 Mar 2010 22:55:47 +0100 Charly COSTE merged Bot.find_bridges and Bot.get_bridges into Bot.iter_bridges, btw we don't need to lock Bot.bridges because lists don't raise RuntimeError
Sat, 06 Mar 2010 19:58:28 +0100 Charly COSTE minor fix in bridge.py, the "reconnecting" attribute is declared in "init2", no need to do so in "__init__" too
Sat, 06 Mar 2010 19:05:07 +0100 Charly COSTE created Bridge.say_on_behalf in order to avoid code repetition in participant.py
Sat, 27 Feb 2010 12:55:28 +0100 Charly COSTE bugfix, we don't delete Bridge.reconnecting since 3518e463b82185bde91a61a810d38dbf58e55147
Sat, 27 Feb 2010 12:47:38 +0100 Charly COSTE bugfix, added optional "message" argument to Bridge.restart(), needed since fa73f1292eafabf2ef868c2b056fe045a0704e97
Thu, 25 Feb 2010 23:29:39 +0100 Charly COSTE renamed camelCased functions
Thu, 25 Feb 2010 20:48:33 +0100 Charly COSTE log some more things when Bot.debug is False
Tue, 23 Feb 2010 22:14:13 +0100 Charly COSTE bugfix, forgot "importance" argument of Bridge.say() in c5922031a4ac09c95713c4a4a18b1e0a0aad3e54
Sun, 21 Feb 2010 16:19:25 +0100 Charly COSTE fixed Bot.restart_bridges_delayed(), don't send the message to admins more than once
Sun, 21 Feb 2010 15:38:42 +0100 Charly COSTE handle IRC inviteonlychan event, improved error messages
Sun, 21 Feb 2010 14:51:14 +0100 Charly COSTE check connection in Bridge.say(), use Bridge.say() in Participant.sayOn{IRC,XMPP}()
Sun, 21 Feb 2010 12:08:42 +0100 Charly COSTE removed buggy exception catch in bridge.py
Sun, 21 Feb 2010 11:53:47 +0100 Charly COSTE fixed calls to Bot.restart_bridges_delayed(), arguments changed in f52cb2f6e273328e73d75ab4ecf214c8dc9dfe1b
Sat, 20 Feb 2010 23:08:39 +0100 Charly COSTE split the leaving process in two, first call to Bridge.removeParticipant() calls Participant.leave(), second call (when the bot receives the part or quit event) removes it from Bridge.participants
Sat, 20 Feb 2010 18:35:23 +0100 Charly COSTE handle IRC mode event
Fri, 19 Feb 2010 14:14:51 +0100 Charly COSTE minor fix in bridge.py, importance was printed twice
Sat, 13 Feb 2010 16:32:28 +0100 Charly COSTE added a required "importance" argument to Bot.error()
Fri, 12 Feb 2010 14:37:48 +0100 Charly COSTE handle IRC events cannotsendtochan and notonchannel, send unhandled events to bot admins
Mon, 08 Feb 2010 18:54:54 +0100 Charly COSTE attach traceback to error message when joining IRC or XMPP fails
Mon, 08 Feb 2010 19:01:04 +0100 Charly COSTE minor fix in Bridge.addParticipant(), don't rely on Bridge.irc_connection or Bridge.xmpp_room when not necessary
Thu, 04 Feb 2010 21:02:36 +0100 Charly COSTE moved irc connection interval handling to irclib
Tue, 02 Feb 2010 20:19:50 +0100 Charly COSTE removed encoding.py, charsets handling is now in irclib and custom charsets can be set per server in the configuration file
Sat, 30 Jan 2010 10:04:12 +0100 Charly COSTE minor fix in bridge.py
Sun, 17 Jan 2010 23:24:00 +0100 Charly COSTE fixed the halt command
Sun, 17 Jan 2010 22:30:23 +0100 Charly COSTE removed automatic switching to limited mode (created Bridge.show_participants_list_on())
Sun, 17 Jan 2010 21:14:23 +0100 Charly COSTE new bridge attribute "irc_connection_interval" (in seconds)
Sat, 16 Jan 2010 22:59:42 +0100 Charly COSTE fixed minimal→*limited mode changing
Sat, 16 Jan 2010 17:01:17 +0100 Charly COSTE reduced duplication of error messages
Sat, 16 Jan 2010 12:36:37 +0100 Charly COSTE handle xmpp.muc.RemoteServerNotFound
Fri, 15 Jan 2010 17:04:45 +0100 Charly COSTE handle more mode changing cases (added bridge.createDuplicatesOn())
Fri, 15 Jan 2010 16:30:50 +0100 Charly COSTE added irclib.ServerConnection.left_channels
Wed, 13 Jan 2010 22:28:09 +0100 Charly COSTE fixed participant.changeNickname(), renamed IRC.server() to IRC.open_connection(), created IRC.get_connection() and IRC.has_connection(), removed irclib.SimpleIRCClient (we don't need it)
Wed, 13 Jan 2010 23:08:44 +0100 Charly COSTE code cleaning
Wed, 13 Jan 2010 22:27:00 +0100 Charly COSTE Code refactoring (new method participant.set_both_sides())
Wed, 13 Jan 2010 22:22:50 +0100 Charly COSTE bug fixes
Sat, 05 Dec 2009 11:44:59 +0100 Charly COSTE bugfix related to the bypass mode
Sat, 28 Nov 2009 23:47:11 +0100 Charly COSTE new mode bypass and new method bridge.changeMode
Sat, 28 Nov 2009 23:33:48 +0100 Charly COSTE split long messages when sending on IRC
Sat, 28 Nov 2009 10:12:43 +0100 Charly COSTE minor fix
Fri, 27 Nov 2009 23:45:47 +0100 Charly COSTE added "--show-say-level" and "--show-participants" options to the "bridges" command, renamed {irc,xmpp}_participants commands
Fri, 27 Nov 2009 23:18:54 +0100 Charly COSTE stop bridge on error instead of removing it