aa0202576ab9d833f30d6cc561fae4bed80102f6,ilastik/applets/batchIo/batchIoGui.py,BatchIoGui,deleteAllResults,#BatchIoGui#,368

Before Change



    def deleteAllResults(self):
        with Tracer(traceLogger):
            for slot in self.topLevelOperator.OutputDataPath:
                os.remove(slot.value)
    
    def showSelectedDataset(self):
        
        Show the exported file in the viewer
        

After Change


    def deleteAllResults(self):
        with Tracer(traceLogger):
            for k in xrange(len(self.topLevelOperator)):
                operatorView = self.topLevelOperator.getLane(k)
                operatorView.cleanupPreview()
                pathComp = PathComponents(operatorView.OutputDataPath.value, operatorView.WorkingDirectory.value)
                os.remove(pathComp.externalPath)
                operatorView.setupPreview()
                // we need to toggle the dirts state in order to enforce a frech dirty signal
                operatorView.Dirty.setValue( False )
                operatorView.Dirty.setValue( True )
    
    def showSelectedDataset(self):
        
        Show the exported file in the viewer
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 7

Instances


Project Name: ilastik/ilastik
Commit Name: aa0202576ab9d833f30d6cc561fae4bed80102f6
Time: 2013-04-12
Author: ullrich.koethe@iwr.uni-heidelberg.de
File Name: ilastik/applets/batchIo/batchIoGui.py
Class Name: BatchIoGui
Method Name: deleteAllResults


Project Name: ilastik/ilastik
Commit Name: aa0202576ab9d833f30d6cc561fae4bed80102f6
Time: 2013-04-12
Author: ullrich.koethe@iwr.uni-heidelberg.de
File Name: ilastik/applets/batchIo/batchIoGui.py
Class Name: BatchIoGui
Method Name: deleteAllResults


Project Name: ilastik/ilastik
Commit Name: 4d11c9f68a38dfb94f2a353bf41c06133a8023ad
Time: 2012-08-07
Author: bergs@janelia.hhmi.org
File Name: ilastik/applets/dataSelection/dataSelectionSerializer.py
Class Name: DataSelectionSerializer
Method Name: _serializeToHdf5


Project Name: ilastik/ilastik
Commit Name: 34b42727c0d621d850eda3d230d628dc37e6639b
Time: 2012-05-01
Author: bergs@janelia.hhmi.org
File Name: ilastik-shell/applets/dataSelection/opDataSelection.py
Class Name: OpDataSelection
Method Name: setupOutputs