comparison idavoll/idavoll.py @ 155:5191ba7c4df8

Work towards first release 0.5.0. - Add licensing information (MIT) - Improve installation instructions. - Use new plugins framework in twisted.
author Ralph Meijer <ralphm@ik.nu>
date Mon, 21 Aug 2006 16:05:35 +0000
parents d79f0816f6c3
children 6fe78048baf9
comparison
equal deleted inserted replaced
154:bd8e58c73370 155:5191ba7c4df8
1 # Copyright (c) 2003-2006 Ralph Meijer
2 # See LICENSE for details.
3
1 from twisted.words.protocols.jabber import component 4 from twisted.words.protocols.jabber import component
2 from twisted.application import service 5 from twisted.application import service
3 from twisted.internet import defer 6 from twisted.internet import defer
4 import backend 7 import backend
5 import pubsub 8 import pubsub
6 import xmpp_error 9 import xmpp_error
7 import disco 10 import disco
8 11
9 import sys 12 import sys
10 13
11 __version__ = '0.2' 14 __version__ = '0.5.0'
12 15
13 NS_VERSION = 'jabber:iq:version' 16 NS_VERSION = 'jabber:iq:version'
14 17
15 IQ_GET = '/iq[@type="get"]' 18 IQ_GET = '/iq[@type="get"]'
16 IQ_SET = '/iq[@type="set"]' 19 IQ_SET = '/iq[@type="set"]'