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