David T. Lewis uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-dtl.259.mcz==================== Summary ====================
Name: Morphic-dtl.259
Author: dtl
Time: 30 November 2009, 11:30:24 am
UUID: 48904b07-454e-4225-8681-5583dc4c124f
Ancestors: Morphic-dtl.258
Better progress display handling and rudimentary MVC implementations for
Project>>loadFromServer:
Project>>storeOnServerWithProgressInfo:
Project>>storeOnServerWithProgressInfoOn:
=============== Diff against Morphic-dtl.258 ===============
Item was added:
+ ----- Method: MorphicProject>>do:withProgressInfoOn:label: (in category 'utilities') -----
+ do: aBlock withProgressInfoOn: aMorphOrNil label: aString
+ "Evaluate aBlock with a labeled progress bar"
+
+ ComplexProgressIndicator new
+ targetMorph: aMorphOrNil;
+ historyCategory: aString;
+ withProgressDo: aBlock
+ !
Item was removed:
- ----- Method: MorphicProject>>storeOnServerWithProgressInfoOn: (in category 'file in/out') -----
- storeOnServerWithProgressInfoOn: aMorphOrNil
-
- "Save to disk as an Export Segment. Then put that file on the server I came from, as a new version. Version is literal piece of file name. Mime encoded and http encoded."
-
- ComplexProgressIndicator new
- targetMorph: aMorphOrNil;
- historyCategory: 'project storing';
- withProgressDo: [self storeOnServerInnards]
- !
Item was removed:
- ----- Method: MorphicProject>>storeOnServerWithProgressInfo (in category 'file in/out') -----
- storeOnServerWithProgressInfo
-
- "Save to disk as an Export Segment. Then put that file on the server I came from, as a new version. Version is literal piece of file name. Mime encoded and http encoded."
-
- ComplexProgressIndicator new
- targetMorph: nil;
- historyCategory: 'project storing';
- withProgressDo: [self storeOnServerInnards]
- !