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