Example #1
0
    def __init__(self, reactor=None):
        XMPPHandler.__init__(self)

        if reactor:
            self._reactor = reactor
        else:
            from twisted.internet import reactor
            self._reactor = reactor
Example #2
0
    def __init__(self, reactor=None):
        XMPPHandler.__init__(self)

        if reactor:
            self._reactor = reactor
        else:
            from twisted.internet import reactor
            self._reactor = reactor
Example #3
0
    def __init__(self, room, nick, password=None):
        XMPPHandler.__init__(self)

        self.room = room
        self.nick = nick
        self.password = password
Example #4
0
 def __init__(self, address):
     self._address = address
     self._pendingSubscriptions = {}
     self._authDB = {'russell': ('testing', '*****@*****.**', True),}
     XMPPHandler.__init__(self)
Example #5
0
    def __init__(self, room, nick):
        XMPPHandler.__init__(self)

        self.room = room
        self.nick = nick
Example #6
0
 def __init__(self, jidnat):
     XMPPHandler.__init__(self)
     self.jidnat = jidnat