Andreas Raab uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-ar.220.mcz==================== Summary ====================
Name: Morphic-ar.220
Author: ar
Time: 31 October 2009, 1:07:39 am
UUID: 0e2ac93f-debe-6d40-922f-67364e663932
Ancestors: Morphic-dtl.219
Undeclared cleanup. Declare DefaultFill in MorphicProject and promote isSafeToServe into Morph to remove FlashMorph reference (requires companion change in Nebraska).
=============== Diff against Morphic-dtl.219 ===============
Item was changed:
Project subclass: #MorphicProject
instanceVariableNames: ''
+ classVariableNames: 'DefaultFill'
- classVariableNames: ''
poolDictionaries: ''
category: 'Morphic-Support'!
!MorphicProject commentStamp: 'ar 9/18/2009 21:38' prior: 0!
Holds Morphic Projects. Very much in transition.!
Item was added:
+ ----- Method: Morph>>isSafeToServe (in category 'testing') -----
+ isSafeToServe
+ "Return true if it is safe to serve this Morph using Nebraska."
+ ^true!
Item was removed:
- ----- Method: PasteUpMorph>>isSafeToServe (in category 'Nebraska') -----
- isSafeToServe
- "True if all conditions are met to share safely.
- (attends to mantis bug #0000519).
- Right now we reject worlds with FlashMorphs for subMorphs."
-
- (self findA: FlashMorph) ifNil: [^true].
- self inform: 'Can not share world if Squeaklogo is present. Collapse logo and try again'.
- ^false!