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