Etoys: MorphicExtras-kfr.80.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

Etoys: MorphicExtras-kfr.80.mcz

commits-2
Spam detection software, running on the system "europa.mgmt.inetu.net", has
identified this incoming email as possible spam.  The original message
has been attached to this so you can view it (if it isn't spam) or label
similar future email.  If you have any questions, see
the administrator of that system for details.

Content preview:  Karl Ramberg uploaded a new version of MorphicExtras to project
   Etoys: http://source.squeak.org/etoys/MorphicExtras-kfr.80.mcz ====================
   Summary ==================== Name: MorphicExtras-kfr.80 Author: kfr Time:
   24 February 2013, 6:47:44 pm UUID: c6339333-f84d-9043-b1f1-19b382e97b20 Ancestors:
   MorphicExtras-kfr.79 [...]

Content analysis details:   (4.4 points, 4.0 required)

 pts rule name              description
---- ---------------------- --------------------------------------------------
 0.4 INVALID_DATE           Invalid Date: header (not RFC 2822)
 0.8 DATE_IN_PAST_12_24     Date: is 12 to 24 hours before Received: date
 0.1 MISSING_MID            Missing Message-Id: header
 1.3 RDNS_NONE              Delivered to internal network by a host with no rDNS
 1.7 TO_NO_BRKTS_NORDNS     To: misformatted and no rDNS



Karl Ramberg uploaded a new version of MorphicExtras to project Etoys:
http://source.squeak.org/etoys/MorphicExtras-kfr.80.mcz

==================== Summary ====================

Name: MorphicExtras-kfr.80
Author: kfr
Time: 24 February 2013, 6:47:44 pm
UUID: c6339333-f84d-9043-b1f1-19b382e97b20
Ancestors: MorphicExtras-kfr.79

Reverting
http://source.squeak.org/etoys/MorphicExtras-kfr.24.mcz

=============== Diff against MorphicExtras-kfr.79 ===============

Item was changed:
  ----- Method: MorphThumbnail>>representativeNoTallerThan:norWiderThan:thumbnailHeight: (in category 'thumbnail') -----
  representativeNoTallerThan: maxHeight norWiderThan: maxWidth thumbnailHeight: thumbnailHeight
 
  "Return a morph representing the receiver but which is no taller than aHeight.  If the receiver is already small enough, just return it, else return a MorphThumbnail companioned to the receiver, enforcing the maxWidth"
 
+ (self height <= maxHeight and: [self width <= maxWidth]) ifTrue: [^ self].
- "(self height <= maxHeight and: [self width <= maxWidth]) ifTrue: [^ self]."
 
  ^ MorphThumbnail new
+ extent: maxWidth @ (thumbnailHeight min: self height);
- extent: maxWidth @ (thumbnailHeight "min: self height");
  morphRepresented: morphRepresented!


_______________________________________________
etoys-dev mailing list
[hidden email]
http://lists.squeakland.org/mailman/listinfo/etoys-dev