Beispiel #1
0
 def __init__(self, name):
     IbidSourceFactory.__init__(self, name)
     self.log = logging.getLogger('source.%s' % name)
     client.DeferredClientFactory.__init__(self, JID(self.jid_str),
                                           self.password)
     bot = JabberBot()
     self.addHandler(bot)
     bot.setHandlerParent(self)
Beispiel #2
0
 def __init__(self, name):
     IbidSourceFactory.__init__(self, name)
     root = Plugin(name)
     root.putChild('', Index(name))
     root.putChild('message', Message(name))
     root.putChild('static', static.File(locate_resource('ibid', 'static')))
     root.putChild('RPC2', XMLRPC())
     root.putChild('SOAP', SOAP())
     self.site = server.Site(root)
Beispiel #3
0
 def __init__(self, name):
     IbidSourceFactory.__init__(self, name)
     root = Plugin(name)
     root.putChild('', Index(name))
     root.putChild('message', Message(name))
     root.putChild('static', static.File(locate_resource('ibid', 'static')))
     root.putChild('RPC2', XMLRPC())
     root.putChild('SOAP', SOAP())
     self.site = server.Site(root)
Beispiel #4
0
 def __init__(self, name):
     IbidSourceFactory.__init__(self, name)
     self.log = logging.getLogger('source.%s' % self.name)
     pub = join(ibid.options['base'], self.public_key)
     prv = join(ibid.options['base'], self.private_key)
     if not exists(pub) and not exists(prv):
         keys = create_key_pair(pub, prv, passphrase='')
     else:
         keys = load_key_pair(pub, prv, passphrase='')
     self.client = SilcBot(keys, self.nick, self.nick, self.realname, self)
Beispiel #5
0
 def __init__(self, name):
     IbidSourceFactory.__init__(self, name)
     self.log = logging.getLogger('source.%s' % self.name)
     pub = join(ibid.options['base'], self.public_key)
     prv = join(ibid.options['base'], self.private_key)
     if not exists(pub) and not exists(prv):
         keys = create_key_pair(pub, prv, passphrase='')
     else:
         keys = load_key_pair(pub, prv, passphrase='')
     self.client = SilcBot(keys, self.nick, self.nick, self.realname, self)
Beispiel #6
0
 def __init__(self, name):
     IbidSourceFactory.__init__(self, name)
     self.log = logging.getLogger('source.%s' % name)
     self.delivery = IbidDelivery(self)
Beispiel #7
0
 def __init__(self, name):
     IbidSourceFactory.__init__(self, name)
     self.log = logging.getLogger('source.%s' % name)
     self.delivery = IbidDelivery(self)
Beispiel #8
0
 def __init__(self, name):
     IbidSourceFactory.__init__(self, name)
     self._auth = {}
     self._auth_ticket = 0
     self._auth_ticket_lock = Lock()
     self.log = logging.getLogger('source.%s' % self.name)
Beispiel #9
0
 def __init__(self, name):
     IbidSourceFactory.__init__(self, name)
     self._auth = {}
     self._auth_ticket = 0
     self._auth_ticket_lock = Lock()
     self.log = logging.getLogger('source.%s' % self.name)
Beispiel #10
0
Datei: dc.py Projekt: vhata/ibid
 def __init__(self, name):
     IbidSourceFactory.__init__(self, name)
     self.log = logging.getLogger('source.%s' % self.name)
     self._auth = {}
Beispiel #11
0
 def __init__(self, name):
     IbidSourceFactory.__init__(self, name)
     self.log = logging.getLogger('source.%s' % self.name)
     self._auth = {}
Beispiel #12
0
 def __init__(self, name):
     ShellFactory.__init__(self)
     IbidSourceFactory.__init__(self, name)
     self.name = name
Beispiel #13
0
 def __init__(self, name, *args, **kwargs):
     #protocol.ServerFactory.__init__(self, *args, **kwargs)
     IbidSourceFactory.__init__(self, name)
     self.log = logging.getLogger('source.%s' % name)