Home | Trees | Indices | Help |
|
---|
|
1 # $Id: __init__.py,v 1.4 2004/10/23 08:58:45 snakeru Exp $ 2 3 import os 4 #from psyco.classes import * 5 6 #for m in os.listdir('modules'): 7 # if m[:2]=='__' or m[-3:]<>'.py': continue 8 # exec "import "+m[:-3] 9 10 import jep0078,roster,config,message,router,db_fake,muc,stream,dialback,oob,jep0077,pubsub,wq 11 12 addons = [ 13 # System stuff 14 config.Config, 15 db_fake.AUTH, 16 db_fake.DB, 17 18 # XMPP-Core 19 #stream.TLS, 20 stream.SASL, 21 dialback.Dialback, 22 23 # XMPP-IM 24 stream.Bind, 25 stream.Session, 26 stream.Handshake, 27 router.Router, 28 # privacy.Privacy, 29 30 # ROSTER -- BABY! 31 roster.ROSTER, 32 # roster.PRESENCE, 33 34 # MESSAGE 35 # Handles messages addressed to the server 36 message.MessageCatcher, 37 38 # JEPs 39 jep0077.IBR, 40 jep0078.NSA, 41 42 muc.MUC, 43 wq.WQ, 44 #webadmin.WebAdmin 45 46 pubsub.PubSubServer, 47 ] 48
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Wed Aug 1 18:45:05 2012 | http://epydoc.sourceforge.net |