Exemplo n.º 1
0
    def __init__(self):
        """ SpreadsheetCell() -> SpreadsheetCell
        Initialize attributes

        """
        Module.__init__(self)
        self.location = None
Exemplo n.º 2
0
 def __init__(self):
     """ vtkBaseModule() -> vtkBaseModule
     Instantiate an empty VTK Module with real VTK instance
     
     """
     Module.__init__(self)
     self.vtkInstance = None
Exemplo n.º 3
0
 def __init__(self):
     """ SheetReference() -> SheetReference
     Instantiate an empty SheetReference
     
     """
     Module.__init__(self)
     self.sheetReference = None
Exemplo n.º 4
0
    def __init__(self):
        """ SpreadsheetCell() -> SpreadsheetCell
        Initialize attributes

        """
        Module.__init__(self)
        self.location = None
Exemplo n.º 5
0
 def __init__(self):
     """ vtkBaseModule() -> vtkBaseModule
     Instantiate an emptt VTK Module with real VTK instance
     
     """
     Module.__init__(self)
     self.vtkInstance = None
Exemplo n.º 6
0
 def __init__(self):
     Module.__init__(self)
     self.locator = None
     self.version = -1
     self.pipeline = None
     self.execute = False
     self.embedWorkflow = False
     self.showSpreadsheetOnly = False
     self.forceDB = False
Exemplo n.º 7
0
 def __init__(self):
     Module.__init__(self)
     self.locator = None
     self.version = -1
     self.pipeline = None
     self.execute = False
     self.embedWorkflow = False
     self.showSpreadsheetOnly = False
     self.forceDB = False
Exemplo n.º 8
0
 def __init__(self):
     """ CellLocation() -> CellLocation
     Instantiate an empty cell location, i.e. any available cell
     
     """
     Module.__init__(self)
     self.row = -1
     self.col = -1
     self.rowSpan = -1
     self.colSpan = -1
     self.sheetReference = None
Exemplo n.º 9
0
    def __init__(self):
        Module.__init__(self)

        config = get_vistrails_persistent_configuration()
        if config.check('webRepositoryURL'):
            self.base_url = config.webRepositoryURL
        else:
            raise ModuleError(self, ("No webRepositoryURL value defined"
                                     " in the Expert Configuration"))

        # check if we are running in server mode
        # this effects how the compute method functions
        if config.check('isInServerMode'):
            self.is_server = bool(config.isInServerMode)
        else:
            self.is_server = False

        # TODO: this '/' check should probably be done in core/configuration.py
        if self.base_url[-1] == '/':
            self.base_url = self.base_url[:-1]
Exemplo n.º 10
0
    def __init__(self):
        Module.__init__(self)

        config = get_vistrails_persistent_configuration()
        if config.check('webRepositoryURL'):
            self.base_url = config.webRepositoryURL
        else:
            raise ModuleError(self,
                              ("No webRepositoryURL value defined"
                               " in the Expert Configuration"))

        # check if we are running in server mode
        # this effects how the compute method functions
        if config.check('isInServerMode'):
            self.is_server = bool(config.isInServerMode)
        else:
            self.is_server = False

        # TODO: this '/' check should probably be done in core/configuration.py
        if self.base_url[-1] == '/':
            self.base_url = self.base_url[:-1]
Exemplo n.º 11
0
 def __init__(self):
     Module.__init__(self)
     self.figInstance = None
Exemplo n.º 12
0
 def __init__(self):
     Module.__init__(self)
     self.is_group = True
     self.persistent_modules = []
Exemplo n.º 13
0
 def __init__(self):
     Module.__init__(self)
     self.is_group = True
     self.persistent_modules = []
Exemplo n.º 14
0
 def __init__(self):
     AssembleDirectoryMixin.__init__(self)
     Module.__init__(self)
Exemplo n.º 15
0
 def __init__(self, pattern, constraints=None):
     Module.__init__(self)
     self.pattern = pattern
     self.constraints = constraints
Exemplo n.º 16
0
 def __init__(self):
     Module.__init__(self)
     self.is_looping_module = True
Exemplo n.º 17
0
 def __init__(self):
     Module.__init__(self)
Exemplo n.º 18
0
 def __init__(self):
     Module.__init__(self)
Exemplo n.º 19
0
 def __init__(self):
     Module.__init__(self)
     self.qgis_obj = None
Exemplo n.º 20
0
 def __init__(self):
      Module.__init__(self)
      self.conn = None
      self.protocol = 'mysql'
Exemplo n.º 21
0
 def __init__(self):
     Module.__init__(self)
     self.is_cacheable = self.cachedOff
Exemplo n.º 22
0
 def __init__(self):
     AssembleDirectoryMixin.__init__(self)
     Module.__init__(self)
Exemplo n.º 23
0
 def __init__(self):
     Module.__init__(self)
     self.observer = None
     self.handler = None
     self.shareddata = None
Exemplo n.º 24
0
 def __init__(self):
     Module.__init__(self)
     self.qgis_obj = None
Exemplo n.º 25
0
 def __init__(self):
     Module.__init__(self)
     self.input_ports_order = []
     self.output_ports_order = []
Exemplo n.º 26
0
 def __init__(self):
     Module.__init__(self)
     self.input_ports_order = []
     self.output_ports_order = []
Exemplo n.º 27
0
 def __init__(self):
     Module.__init__(self)
     self.observer = None
     self.handler = None
     self.shareddata = None
Exemplo n.º 28
0
 def __init__(self, pattern, constraints=None):
     Module.__init__(self)
     self.pattern = pattern
     self.constraints = constraints