diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-11-20 02:34:31 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-11-20 02:34:31 +0100 |
commit | 6d4fbe6b3e18f75110e0420215ba5df3e0d9d7b3 (patch) | |
tree | d9b209d2627bdb3aa58094c814c235cc1b764f3e /pyload/plugins/addon/XMPPInterface.py | |
parent | Import threading instead thread + thread cleanup (diff) | |
download | pyload-6d4fbe6b3e18f75110e0420215ba5df3e0d9d7b3.tar.xz |
__config__ cleanup for addons
Diffstat (limited to 'pyload/plugins/addon/XMPPInterface.py')
-rw-r--r-- | pyload/plugins/addon/XMPPInterface.py | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/pyload/plugins/addon/XMPPInterface.py b/pyload/plugins/addon/XMPPInterface.py index 07db5c66a..7b11bd4dd 100644 --- a/pyload/plugins/addon/XMPPInterface.py +++ b/pyload/plugins/addon/XMPPInterface.py @@ -14,13 +14,14 @@ class XMPPInterface(IRCInterface, JabberClient): __type__ = "addon" __version__ = "0.11" - __config__ = [("jid", "str", "Jabber ID", "user@exmaple-jabber-server.org"), - ("pw", "str", "Password", ""), - ("tls", "bool", "Use TLS", False), - ("owners", "str", "List of JIDs accepting commands from", "me@icq-gateway.org;some@msn-gateway.org"), - ("info_file", "bool", "Inform about every file finished", False), - ("info_pack", "bool", "Inform about every package finished", True), - ("captcha", "bool", "Send captcha requests", True)] + __config__ = [("activated", "bool", "Activated" , False ), + ("jid" , "str" , "Jabber ID" , "user@exmaple-jabber-server.org" ), + ("pw" , "str" , "Password" , "" ), + ("tls" , "bool", "Use TLS" , False ), + ("owners" , "str" , "List of JIDs accepting commands from", "me@icq-gateway.org;some@msn-gateway.org"), + ("info_file", "bool", "Inform about every file finished" , False ), + ("info_pack", "bool", "Inform about every package finished" , True ), + ("captcha" , "bool", "Send captcha requests" , True )] __description__ = """Connect to jabber and let owner perform different tasks""" __license__ = "GPLv3" |