From ea7fe6bb966c59a38ce7079475daf6f155fafb18 Mon Sep 17 00:00:00 2001 From: "louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13" Date: Tue, 4 Jan 2011 03:05:49 +0000 Subject: /cycle command --- src/tabs.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/tabs.py') diff --git a/src/tabs.py b/src/tabs.py index b8fe9d84..30baf33a 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -364,6 +364,7 @@ class MucTab(ChatTab): self.commands['part'] = (self.command_part, _("Usage: /part [message]\n Part: disconnect from a room. You can specify an optional message."), None) self.commands['nick'] = (self.command_nick, _("Usage: /nick \nNick: Change your nickname in the current room"), None) self.commands['recolor'] = (self.command_recolor, _('Usage: /recolor\nRecolor: Re-assign a color to all participants of the current room, based on the last time they talked. Use this if the participants currently talking have too many identical colors.'), None) + self.commands['cycle'] = (self.command_cycle, _('Usage: /cycle [message]\nCycle: Leaves the current room and rejoin it immediately'), None) self.resize() def scroll_user_list_up(self): @@ -374,6 +375,13 @@ class MucTab(ChatTab): self.user_win.scroll_down() self.core.refresh_window() + def command_cycle(self, arg): + # TODO use the argument as the exit message + if self.get_room().joined: + muc.leave_groupchat(self.core.xmpp, self.get_name(), self.get_room().own_nick, "") + self.get_room().joined = False + self.core.command_join('/') + def command_recolor(self, arg): """ Re-assign color to the participants of the room -- cgit v1.2.3