예제 #1
0
파일: tap.py 프로젝트: wyn/collab
def makeService(config):
    # create XMPP external component
    s, cs = base.makeServiceAndComponent(config)

    j = config['jid']
    log.msg('Creating Portfolios Manager')
    mngr = mng.CorrelatedDefaultsManager(jid=jid.JID(j), name='Portfolios Manager')
    mngr.setHandlerParent(cs)

    return s
예제 #2
0
파일: tap.py 프로젝트: wyn/collab
def makeService(config):
    # create XMPP external component
    s, cs = base.makeServiceAndComponent(config)

    j = config['jid']
    log.msg('Creating Collab system manager')
    mngr = csm.CollabSystemManager(jid=jid.JID(j), name='Collab System Manager')
    mngr.setHandlerParent(cs)

    return s
예제 #3
0
파일: tap.py 프로젝트: wyn/collab
def makeService(config):
    # create XMPP external component
    s, cs = base.makeServiceAndComponent(config)

    j = config['jid']
    log.msg('Creating Distributions Manager')
    mngr = mng.DistributionsManager(jid=jid.JID(j), name='Distributions Manager')
    mngr.setHandlerParent(cs)

    return s
예제 #4
0
파일: tap.py 프로젝트: wyn/collab
def makeService(config):
    # create XMPP external component
    s, cs = base.makeServiceAndComponent(config)

    j = config['jid']
    log.msg('Creating Collab VaR Proxy')
    mngr = mng.CollabProxy(jid=jid.JID(j), name='Collab VaR Proxy')
    mngr.setHandlerParent(cs)

    return s