def __init__(self, handler_class): WPApp.__init__(self, handler_class) self.Counter = 0
def __init__(self, mon, **args): WPApp.__init__(self, Handler, **args) self.Monitor = mon
def __init__(self, root_class): WPApp.__init__(self, root_class) cfg = DFConfig(os.environ['DFARM_CONFIG']) self.DiskFarmClient = DiskFarmClient(cfg)
def __init__(self, root_class): WPApp.__init__(self, root_class) self.Memory = {}
def __init__(self, handler, path, prefix): WPApp.__init__(self, handler, prefix=prefix) self.DataSource = DataSource(path)
def __init__(self, my_name, handler): WPApp.__init__(self, handler) self.MyName = my_name
def __init__(self, handler, home, cc_path, prefix, wm_path): WPApp.__init__(self, handler, prefix=prefix) self.DataViewer = DataViewer(cc_path) self.WMDataSource = WMDataSource(wm_path) self.Home = home
def __init__(self, handler, dbfilename, **args): WPApp.__init__(self, handler, **args) self.DBFile = dbfilename
def __init__(self, root_class): WPApp.__init__(self, root_class) self.Record = []
def __init__(self, handler, home, cc_path, prefix, wm_path): WPApp.__init__(self, handler, prefix=prefix) self.CCDataSource = CCDataSource(cc_path) self.UMDataSource = UMDataSource(wm_path) self.Home = home
def __init__(self, cell): WPApp.__init__(self, Handler) self.Cell = cell
def __init__(self, root_class): WPApp.__init__(self, root_class) self.Count = 0