summaryrefslogtreecommitdiff
path: root/src/tabs.py
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2012-01-10 16:30:59 +0100
committerFlorent Le Coz <louiz@louiz.org>2012-01-10 16:30:59 +0100
commit5fee56440c10f81286699a4dd9e32506aa342d54 (patch)
tree8f577c41a90ab3649e209b2b7ce66af34ba34d59 /src/tabs.py
parent62c4f67ea53c6b1c7f4092349f4c746e5bdb14f1 (diff)
downloadpoezio-5fee56440c10f81286699a4dd9e32506aa342d54.tar.gz
poezio-5fee56440c10f81286699a4dd9e32506aa342d54.tar.bz2
poezio-5fee56440c10f81286699a4dd9e32506aa342d54.tar.xz
poezio-5fee56440c10f81286699a4dd9e32506aa342d54.zip
Add a simple_notify plugin
And also fix some issues, like the split of the exec_command arguments. And the doc for the plugin, too.
Diffstat (limited to 'src/tabs.py')
-rw-r--r--src/tabs.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tabs.py b/src/tabs.py
index 45860acc..8316d2a3 100644
--- a/src/tabs.py
+++ b/src/tabs.py
@@ -1318,6 +1318,7 @@ class MucTab(ChatTab):
Note that user can be None even if nickname is not None. It happens
when we receive an history message said by someone who is not
in the room anymore
+ Return True if the message highlighted us. False otherwise.
"""
self.log_message(txt, time, nickname)
user = self.get_user_by_name(nickname) if nickname is not None else None
@@ -1331,6 +1332,7 @@ class MucTab(ChatTab):
if self.state != 'highlight':
self.state = 'message'
nick_color = nick_color or None
+ highlight = False
if (not nickname or time) and not txt.startswith('/me '):
txt = '\x195}%s' % (txt,)
else: # TODO
@@ -1339,6 +1341,7 @@ class MucTab(ChatTab):
nick_color = highlight
time = time or datetime.now()
self._text_buffer.add_message(txt, time, nickname, nick_color, history, user)
+ return highlight
class PrivateTab(ChatTab):
"""