summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven (Sbte) <svenb.linux@gmail.com>2011-11-08 22:44:58 +0100
committerLouis-Francis Ratté-Boulianne <louis-francis.ratte-boulianne@collabora.co.uk>2011-11-08 16:47:06 -0500
commit3dba97cef68714f36727d55a247d8c23e879da97 (patch)
treed723fba66b44be3376289a1582520d62ceaa77c7
parent5b7f9c27f30b9e5de201f32bd25d048b49d3a483 (diff)
Add activity capabilities so we can disable them
-rw-r--r--papyon/profile.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/papyon/profile.py b/papyon/profile.py
index e64d8b5..604ff16 100644
--- a/papyon/profile.py
+++ b/papyon/profile.py
@@ -84,6 +84,9 @@ class ClientCapabilities(gobject.GObject):
@ivar supports_chunking: does the client supports chunking messages
@type supports_chunking: bool
+ @ivar supports_activities: does the client supports activities
+ @type supports_activities: bool
+
@ivar supports_direct_im: does the client supports direct IM
@type supports_direct_im: bool
@@ -155,6 +158,7 @@ class ClientCapabilities(gobject.GObject):
'renders_isf': 0x00000008,
'supports_chunking': 0x00000020,
+ 'supports_activities': 0x00000100,
'supports_direct_im': 0x00004000,
'supports_winks': 0x00008000,
'supports_shared_search': 0x00010000,