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

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

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