Beispiel #1
0
    def __init__(self):
        """ SpreadsheetCell() -> SpreadsheetCell
        Initialize attributes

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

        """
        Module.__init__(self)
        self.location = None
Beispiel #5
0
 def __init__(self):
     """ vtkBaseModule() -> vtkBaseModule
     Instantiate an emptt VTK Module with real VTK instance
     
     """
     Module.__init__(self)
     self.vtkInstance = None
Beispiel #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
 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
Beispiel #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
Beispiel #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]
Beispiel #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]
Beispiel #11
0
 def __init__(self):
     Module.__init__(self)
     self.figInstance = None
Beispiel #12
0
 def __init__(self):
     Module.__init__(self)
     self.is_group = True
     self.persistent_modules = []
Beispiel #13
0
 def __init__(self):
     Module.__init__(self)
     self.is_group = True
     self.persistent_modules = []
Beispiel #14
0
 def __init__(self):
     AssembleDirectoryMixin.__init__(self)
     Module.__init__(self)
Beispiel #15
0
 def __init__(self, pattern, constraints=None):
     Module.__init__(self)
     self.pattern = pattern
     self.constraints = constraints
 def __init__(self):
     Module.__init__(self)
     self.is_looping_module = True
 def __init__(self):
     Module.__init__(self)
Beispiel #18
0
 def __init__(self):
     Module.__init__(self)
Beispiel #19
0
 def __init__(self):
     Module.__init__(self)
     self.qgis_obj = None
 def __init__(self):
      Module.__init__(self)
      self.conn = None
      self.protocol = 'mysql'
 def __init__(self):
     Module.__init__(self)
     self.is_cacheable = self.cachedOff
Beispiel #22
0
 def __init__(self):
     AssembleDirectoryMixin.__init__(self)
     Module.__init__(self)
Beispiel #23
0
 def __init__(self):
     Module.__init__(self)
     self.observer = None
     self.handler = None
     self.shareddata = None
Beispiel #24
0
 def __init__(self):
     Module.__init__(self)
     self.qgis_obj = None
Beispiel #25
0
 def __init__(self):
     Module.__init__(self)
     self.input_ports_order = []
     self.output_ports_order = []
Beispiel #26
0
 def __init__(self):
     Module.__init__(self)
     self.input_ports_order = []
     self.output_ports_order = []
 def __init__(self):
     Module.__init__(self)
     self.observer = None
     self.handler = None
     self.shareddata = None
Beispiel #28
0
 def __init__(self, pattern, constraints=None):
     Module.__init__(self)
     self.pattern = pattern
     self.constraints = constraints