summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2013-05-11 21:43:45 +0200
committermathieui <mathieui@mathieui.net>2013-05-11 21:43:45 +0200
commit7f1562c4c2d9481e6020322c1781c72cce74d38d (patch)
tree4cf14c4022141556f1561421604f7e8a37e12e15 /src
parenta1ef835a37f1d1dd4fb861ba4cc3919941bfb6e4 (diff)
downloadpoezio-7f1562c4c2d9481e6020322c1781c72cce74d38d.tar.gz
poezio-7f1562c4c2d9481e6020322c1781c72cce74d38d.tar.bz2
poezio-7f1562c4c2d9481e6020322c1781c72cce74d38d.tar.xz
poezio-7f1562c4c2d9481e6020322c1781c72cce74d38d.zip
Actually use it.
Diffstat (limited to 'src')
-rw-r--r--src/tabs.py11
-rw-r--r--src/windows.py2
2 files changed, 13 insertions, 0 deletions
diff --git a/src/tabs.py b/src/tabs.py
index 63c1558b..b25f5f24 100644
--- a/src/tabs.py
+++ b/src/tabs.py
@@ -2439,6 +2439,7 @@ class RosterInfoTab(Tab):
self.core.information(_('JID already in group'), 'Error')
return
+ roster.modified()
new_groups.add(group)
try:
new_groups.remove('none')
@@ -2486,6 +2487,7 @@ class RosterInfoTab(Tab):
self.core.information(_('The groups are the same.'), 'Error')
return
+ roster.modified()
new_groups.add(group_to)
if 'none' in new_groups:
new_groups.remove('none')
@@ -2520,6 +2522,8 @@ class RosterInfoTab(Tab):
self.core.information(_('JID not in group'), 'Error')
return
+ roster.modified()
+
new_groups.remove(group)
name = contact.name
subscription = contact.subscription
@@ -2541,6 +2545,7 @@ class RosterInfoTab(Tab):
self.core.information('No roster item to remove')
return
del roster[jid]
+ roster.modified()
def command_import(self, arg):
"""
@@ -2698,6 +2703,7 @@ class RosterInfoTab(Tab):
contact = roster[jid]
if contact is None:
return
+ roster.modified()
self.core.xmpp.send_presence(pto=jid, ptype='subscribed')
self.core.xmpp.client_roster.send_last_presence()
if contact.subscription in ('from', 'none') and not contact.pending_out:
@@ -2741,6 +2747,7 @@ class RosterInfoTab(Tab):
success = config.silent_set(option, 'true')
else:
success = config.silent_set(option, 'false')
+ roster.modified()
if not success:
self.information(_('Unable to write in the config file'), 'Error')
return True
@@ -2831,6 +2838,7 @@ class RosterInfoTab(Tab):
selected_row = self.roster_win.get_selected_row()
if isinstance(selected_row, RosterGroup):
selected_row.toggle_folded()
+ roster.modified()
return True
elif isinstance(selected_row, Contact):
group = "none"
@@ -2844,6 +2852,7 @@ class RosterInfoTab(Tab):
found_group = True
group = row.name
selected_row.toggle_folded(group)
+ roster.modified()
return True
return False
@@ -3765,6 +3774,7 @@ def jid_and_name_match(contact, txt):
"""
Match jid with text precisely
"""
+ roster.modified()
if not txt:
return True
if txt in safeJID(contact.bare_jid).user:
@@ -3778,6 +3788,7 @@ def jid_and_name_match_slow(contact, txt):
A function used to know if a contact in the roster should
be shown in the roster
"""
+ roster.modified()
if not txt:
return True # Everything matches when search is empty
user = safeJID(contact.bare_jid).user
diff --git a/src/windows.py b/src/windows.py
index 0040ee0c..e5cd4045 100644
--- a/src/windows.py
+++ b/src/windows.py
@@ -20,6 +20,7 @@ log = logging.getLogger(__name__)
import curses
import string
+from datetime import datetime
from math import ceil, log10
from config import config
@@ -1856,6 +1857,7 @@ class RosterWin(Win):
if not contact.folded(group.name):
for resource in contact.get_resources():
self.roster_cache.append(resource)
+ roster.last_built = datetime.now()
def refresh(self, roster):
"""