view idavoll/tap.py @ 40:b9e7b3b6c687

Moved get_supported_affiliations() to super class. Use string instead of JID in call to store_items().
author Ralph Meijer <ralphm@ik.nu>
date Sun, 31 Oct 2004 21:08:40 +0000
parents 4cc41776b7d7
children 7d088c61e131
line wrap: on
line source

from twisted.application import internet, service
from twisted.internet import interfaces
from twisted.python import usage
import idavoll

class Options(usage.Options):
	optParameters = [
		('jid', None, 'pubsub'),
		('secret', None, None),
		('rhost', None, '127.0.0.1'),
		('rport', None, '6000')
	]

def makeService(config):
	return idavoll.makeService(config)