From cec1151ecb577a270b9e1f0ae5eaa238d3269ae8 Mon Sep 17 00:00:00 2001 From: mathieui Date: Mon, 11 Mar 2013 23:06:52 +0100 Subject: Fix #1839 (User mood/activity) - Added as always new theming variables: CHAR_ROSTER_MOOD, CHAR_ROSTER_ACTIVITY (a SNOWMAN!) COLOR_ROSTER_MOOD, COLOR_ROSTER_ACTIVITY - Added two new notification types in Theme.INFO_COLORS (mood/activity) - Added new configuration options: display_mood/activity/tune_notifications (those can be set for a specific JID) enable_user_tune/nick/activity/mood - Added /activity and /mood commands, with completions - Moved the old /activity to /last_activity - Details are show in the ContactInfoWin if there is room, or with "i" on a contact in the roster. --- src/connection.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'src/connection.py') diff --git a/src/connection.py b/src/connection.py index d5a393c5..8565a616 100644 --- a/src/connection.py +++ b/src/connection.py @@ -72,10 +72,18 @@ class Connection(sleekxmpp.ClientXMPP): self.register_plugin('xep_0115') self.register_plugin('xep_0191') - if config.get('receive_user_tune', 'true') != 'false': + if config.get('enable_user_tune', 'true') != 'false': self.register_plugin('xep_0118') - if config.get('use_pep_nick', 'true') != 'false': + + if config.get('enable_user_nick', 'true') != 'false': self.register_plugin('xep_0172') + + if config.get('enable_user_mood', 'true') != 'false': + self.register_plugin('xep_0107') + + if config.get('enable_user_activity', 'true') != 'false': + self.register_plugin('xep_0108') + if config.get('send_poezio_info', 'true') == 'true': info = {'name':'poezio', 'version': options.version} -- cgit v1.2.3