2005-04-26 18:45:54 +00:00
|
|
|
# $Id: __init__.py,v 1.9 2005/03/07 09:34:51 snakeru Exp $
|
|
|
|
|
|
|
|
"""
|
2008-12-24 14:28:17 +00:00
|
|
|
Gajim maintains a fork of the xmpppy jabber python library. Most of the code is
|
|
|
|
inherited but has been extended by implementation of non-blocking transports
|
|
|
|
and new features like BOSH.
|
2005-04-26 18:45:54 +00:00
|
|
|
|
2008-12-24 14:28:17 +00:00
|
|
|
Most of the xmpp classes are ancestors of PlugIn class to share a single set of methods in order to compile a featured and extensible XMPP client.
|
2005-04-26 18:45:54 +00:00
|
|
|
|
2008-12-24 14:28:17 +00:00
|
|
|
Thanks and credits to the xmpppy developers. See: http://xmpppy.sourceforge.net/
|
2005-04-26 18:45:54 +00:00
|
|
|
"""
|
|
|
|
|
2009-07-16 17:44:45 +02:00
|
|
|
from protocol import *
|
2008-07-02 23:29:10 +00:00
|
|
|
import simplexml, protocol, auth_nb, transports_nb, roster_nb
|
2008-08-14 21:48:43 +00:00
|
|
|
import dispatcher_nb, features_nb, idlequeue, bosh, tls_nb, proxy_connectors
|
2008-12-24 14:28:17 +00:00
|
|
|
from client_nb import NonBlockingClient
|
2009-01-09 00:49:58 +00:00
|
|
|
from plugin import PlugIn
|