Ejemplo n.º 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)
Ejemplo n.º 2
0
Archivo: http.py Proyecto: rsnyman/ibid
 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)
Ejemplo n.º 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)
Ejemplo n.º 4
0
Archivo: silc.py Proyecto: shoosen/ibid
 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)
Ejemplo n.º 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)
Ejemplo n.º 6
0
 def __init__(self, name):
     IbidSourceFactory.__init__(self, name)
     self.log = logging.getLogger('source.%s' % name)
     self.delivery = IbidDelivery(self)
Ejemplo n.º 7
0
Archivo: smtp.py Proyecto: shoosen/ibid
 def __init__(self, name):
     IbidSourceFactory.__init__(self, name)
     self.log = logging.getLogger('source.%s' % name)
     self.delivery = IbidDelivery(self)
Ejemplo n.º 8
0
Archivo: irc.py Proyecto: B-Rich/ibid-1
 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)
Ejemplo n.º 9
0
Archivo: irc.py Proyecto: rsnyman/ibid
 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)
Ejemplo n.º 10
0
Archivo: dc.py Proyecto: vhata/ibid
 def __init__(self, name):
     IbidSourceFactory.__init__(self, name)
     self.log = logging.getLogger('source.%s' % self.name)
     self._auth = {}
Ejemplo n.º 11
0
Archivo: dc.py Proyecto: B-Rich/ibid-1
 def __init__(self, name):
     IbidSourceFactory.__init__(self, name)
     self.log = logging.getLogger('source.%s' % self.name)
     self._auth = {}
Ejemplo n.º 12
0
 def __init__(self, name):
     ShellFactory.__init__(self)
     IbidSourceFactory.__init__(self, name)
     self.name = name
Ejemplo n.º 13
0
Archivo: telnet.py Proyecto: vhata/ibid
 def __init__(self, name, *args, **kwargs):
     #protocol.ServerFactory.__init__(self, *args, **kwargs)
     IbidSourceFactory.__init__(self, name)
     self.log = logging.getLogger('source.%s' % name)