diff options
author | Lance Stout <lancestout@gmail.com> | 2012-07-26 23:04:16 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-07-26 23:04:16 -0700 |
commit | a06fa2de677afad437622216fac7971b727ac569 (patch) | |
tree | 37e8774a4cf2515bd31685c801d873ce4ef87127 /sleekxmpp/plugins/xep_0115 | |
parent | 35396d2977f9b19f6690b88a7c2f3c7f4f09356b (diff) | |
download | slixmpp-a06fa2de677afad437622216fac7971b727ac569.tar.gz slixmpp-a06fa2de677afad437622216fac7971b727ac569.tar.bz2 slixmpp-a06fa2de677afad437622216fac7971b727ac569.tar.xz slixmpp-a06fa2de677afad437622216fac7971b727ac569.zip |
Enhance plugin config with attribute accessors.
This makes updating the config after plugin initialization much easier.
Diffstat (limited to 'sleekxmpp/plugins/xep_0115')
-rw-r--r-- | sleekxmpp/plugins/xep_0115/caps.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sleekxmpp/plugins/xep_0115/caps.py b/sleekxmpp/plugins/xep_0115/caps.py index 8ce10edb..15ddb283 100644 --- a/sleekxmpp/plugins/xep_0115/caps.py +++ b/sleekxmpp/plugins/xep_0115/caps.py @@ -33,16 +33,17 @@ class XEP_0115(BasePlugin): description = 'XEP-0115: Entity Capabilities' dependencies = set(['xep_0030', 'xep_0128', 'xep_0004']) stanza = stanza + default_config = { + 'hash': 'sha-1', + 'caps_node': None, + 'broadcast': True + } def plugin_init(self): self.hashes = {'sha-1': hashlib.sha1, 'sha1': hashlib.sha1, 'md5': hashlib.md5} - self.hash = self.config.get('hash', 'sha-1') - self.caps_node = self.config.get('caps_node', None) - self.broadcast = self.config.get('broadcast', True) - if self.caps_node is None: ver = sleekxmpp.__version__ self.caps_node = 'http://sleekxmpp.com/ver/%s' % ver |