diff options
author | mathieui <mathieui@mathieui.net> | 2012-12-30 19:27:59 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-12-30 19:27:59 +0100 |
commit | 80c79d8b791bd659059c2a5c8935b32f7e37edde (patch) | |
tree | 03a4f8d7b788841ec8e01be3dd86ebb0881aa09e /src/tabs.py | |
parent | 5fe494699a3abc0e1c0e53fdb0d6d875a1e0c9f8 (diff) | |
download | poezio-80c79d8b791bd659059c2a5c8935b32f7e37edde.tar.gz poezio-80c79d8b791bd659059c2a5c8935b32f7e37edde.tar.bz2 poezio-80c79d8b791bd659059c2a5c8935b32f7e37edde.tar.xz poezio-80c79d8b791bd659059c2a5c8935b32f7e37edde.zip |
Fix #2189 Fix #2139 - Make /correct work properly in all chat tabs
#2189 wasn’t crashing, but well.
Also fix a crash with the separator and /correct
Diffstat (limited to 'src/tabs.py')
-rw-r--r-- | src/tabs.py | 46 |
1 files changed, 34 insertions, 12 deletions
diff --git a/src/tabs.py b/src/tabs.py index f4e224f7..954f3b25 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -451,6 +451,13 @@ class ChatTab(Tab): user='', str_time='' ) + def log_message(self, txt, time, nickname): + """ + Log the messages in the archives, if it needs + to be + """ + if time is None and self.joined: # don't log the history messages + logger.log_message(self.name, nickname, txt) def last_words_completion(self): """ @@ -605,7 +612,7 @@ class ChatTab(Tab): def get_conversation_messages(self): return self._text_buffer.messages - def command_say(self, line): + def command_say(self, line, correct=False): pass def on_line_up(self): @@ -1717,7 +1724,14 @@ class PrivateTab(ChatTab): # This lets a plugin insert \x19xxx} colors, that will # be converted in xhtml. self.core.events.trigger('private_say', msg, self) - self.add_message(msg['body'], nickname=self.core.own_nick or self.own_nick, nick_color=get_theme().COLOR_OWN_NICK) + if correct: + msg['replace']['id'] = self.last_sent_message['id'] + self.modify_message(line, self.last_sent_message['id'], msg['id']) + else: + self.add_message(msg['body'], + nickname=self.core.own_nick or self.own_nick, + nick_color=get_theme().COLOR_OWN_NICK, + identifier=msg['id']) if msg['body'].find('\x19') != -1: msg['xhtml_im'] = xhtml.poezio_colors_to_html(msg['body']) msg['body'] = xhtml.clean_text(msg['body']) @@ -1726,8 +1740,6 @@ class PrivateTab(ChatTab): msg['chat_state'] = needed if attention and self.remote_supports_attention: msg['attention'] = True - if correct: - msg['replace']['id'] = self.last_sent_message['id'] self.core.events.trigger('private_say_after', msg, self) self.last_sent_message = msg msg.send() @@ -1905,8 +1917,11 @@ class PrivateTab(ChatTab): self.add_message(txt=reason) def modify_message(self, txt, old_id, new_id): - self._text_buffer.modify_message(txt, old_id, new_id) - self.core.refresh_window() + self.log_message(txt, time, self.name) + message = self._text_buffer.modify_message(txt, old_id, new_id, time=time) + if message: + self.text_win.modify_message(old_id, message) + self.core.refresh_window() def add_message(self, txt, time=None, nickname=None, forced_user=None, nick_color=None, identifier=None): self._text_buffer.add_message(txt, time=time, @@ -2774,8 +2789,14 @@ class ConversationTab(ChatTab): # This lets a plugin insert \x19xxx} colors, that will # be converted in xhtml. self.core.events.trigger('conversation_say', msg, self) - self.add_message(msg['body'], nickname=self.core.own_nick, - nick_color=get_theme().COLOR_OWN_NICK) + if correct: + msg['replace']['id'] = self.last_sent_message['id'] + self.modify_message(line, self.last_sent_message['id'], msg['id']) + else: + self.add_message(msg['body'], + nickname=self.core.own_nick, + nick_color=get_theme().COLOR_OWN_NICK, + identifier=msg['id']) if msg['body'].find('\x19') != -1: msg['xhtml_im'] = xhtml.poezio_colors_to_html(msg['body']) msg['body'] = xhtml.clean_text(msg['body']) @@ -2784,8 +2805,6 @@ class ConversationTab(ChatTab): msg['chat_state'] = needed if attention and self.remote_supports_attention: msg['attention'] = True - if correct: - msg['replace']['id'] = self.last_sent_message['id'] self.core.events.trigger('conversation_say_after', msg, self) self.last_sent_message = msg msg.send() @@ -2980,8 +2999,11 @@ class ConversationTab(ChatTab): self.send_chat_state('gone') def modify_message(self, txt, old_id, new_id): - self._text_buffer.modify_message(txt, old_id, new_id) - self.core.refresh_window() + self.log_message(txt, time, self.name) + message = self._text_buffer.modify_message(txt, old_id, new_id, time=time) + if message: + self.text_win.modify_message(old_id, message) + self.core.refresh_window() def add_message(self, txt, time=None, nickname=None, forced_user=None, nick_color=None, identifier=None): self._text_buffer.add_message(txt, time=time, |