Esempio n. 1
0
 def __init__(self, handler_class):
     WPApp.__init__(self, handler_class)
     self.Counter = 0
Esempio n. 2
0
 def __init__(self, mon, **args):
     WPApp.__init__(self, Handler, **args)
     self.Monitor = mon
Esempio n. 3
0
 def __init__(self, root_class):
     WPApp.__init__(self, root_class)
     cfg = DFConfig(os.environ['DFARM_CONFIG'])
     self.DiskFarmClient = DiskFarmClient(cfg)
Esempio n. 4
0
 def __init__(self, root_class):
     WPApp.__init__(self, root_class)
     self.Memory = {}
Esempio n. 5
0
 def __init__(self, handler, path, prefix):
     WPApp.__init__(self, handler, prefix=prefix)
     self.DataSource = DataSource(path)
Esempio n. 6
0
 def __init__(self, my_name, handler):
     WPApp.__init__(self, handler)
     self.MyName = my_name
Esempio n. 7
0
 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
Esempio n. 8
0
 def __init__(self, handler, dbfilename, **args):
     WPApp.__init__(self, handler, **args)
     self.DBFile = dbfilename
Esempio n. 9
0
 def __init__(self, root_class):
     WPApp.__init__(self, root_class)
     self.Record = []
Esempio n. 10
0
 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
Esempio n. 11
0
 def __init__(self, cell):
     WPApp.__init__(self, Handler)
     self.Cell = cell
Esempio n. 12
0
 def __init__(self, root_class):
     WPApp.__init__(self, root_class)
     self.Count = 0