コード例 #1
0
ファイル: alerts.py プロジェクト: Mrkebubun/sputnik
 def __init__(self):
     BackendPlugin.__init__(self)
     self.proxy = ap(config.get("alerts", "export"))
コード例 #2
0
 def __init__(self):
     BackendPlugin.__init__(self)
     self.proxy = accountant.AccountantProxy(
         "dealer", config.get("accountant", "webserver_export"),
         config.getint("accountant", "webserver_export_base_port"))
コード例 #3
0
ファイル: administrator.py プロジェクト: Mrkebubun/sputnik
 def __init__(self):
     BackendPlugin.__init__(self)
     self.proxy = dealer_proxy_async(
             config.get("administrator", "webserver_export"))
コード例 #4
0
 def __init__(self):
     BackendPlugin.__init__(self)
     self.proxy = ap(config.get("alerts", "export"))
コード例 #5
0
ファイル: accountant.py プロジェクト: Mrkebubun/sputnik
 def __init__(self):
     BackendPlugin.__init__(self)
     self.proxy = accountant.AccountantProxy("dealer",
         config.get("accountant", "webserver_export"),
         config.getint("accountant", "webserver_export_base_port"))
コード例 #6
0
 def __init__(self):
     BackendPlugin.__init__(self)
     self.proxy = dealer_proxy_async(
         config.get("cashier", "webserver_export"))