[Tentative] MinimalMorphic.7201.zip

Edgar J. De Cleene edgardec2001 at yahoo.com.ar
Thu Nov 16 14:20:19 UTC 2006


Pavel Krivanek puso en su mail :

> the server should do this:
> - take 3.9 image and shrink it or take KernelImage
> - install latest primitive packages
> - install latest tests for it
> - test it
> - install latest minimal morphic
> - install latest test for it
> - test it
> - install latest next packages
> - install latest test for it
> - prepare some report
> - publish the final image
> this should be driven from some external script


Nice plan.
 
>> Agree on having TrashCanMorph in MinimalMorphic ?
> 
> No, trash is dependent on BookMorph.
> MinimalMorphic ~= minimal morphic practical image
> 
> -- Pavel

!TrashCanMorph methodsFor: 'dropping/grabbing' stamp: 'sw 8/15/2000 17:03'!
wantsDroppedMorph: aMorph event: evt

    ^ ((aMorph ~~ self) and: [aMorph ~~ Utilities scrapsBook]) and:
        [aMorph willingToBeDiscarded]! !

With this little override, avoid calling (or having Utilities scrapsBook)

!TrashCanMorph methodsFor: 'dropping/grabbing' stamp: 'sw 8/15/2000 17:03'!
wantsDroppedMorph: aMorph event: evt

    ^ (aMorph ~~ self) and:
        [aMorph willingToBeDiscarded]! !

But it's not important


__________________________________________________
Correo Yahoo!
Espacio para todos tus mensajes, antivirus y antispam ¡gratis! 
¡Abrí tu cuenta ya! - http://correo.yahoo.com.ar



More information about the Squeak-dev mailing list