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

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

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