The Trunk: 60Deprecated-mt.50.mcz

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

The Trunk: 60Deprecated-mt.50.mcz

commits-2
Marcel Taeumel uploaded a new version of 60Deprecated to project The Trunk:
http://source.squeak.org/trunk/60Deprecated-mt.50.mcz

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

Name: 60Deprecated-mt.50
Author: mt
Time: 18 September 2019, 8:51:36.915595 am
UUID: ff823a66-2f5b-45ed-890f-c8ea8d9f0467
Ancestors: 60Deprecated-mt.49

Complements MorphicExtras-mt.261

=============== Diff against 60Deprecated-mt.49 ===============

Item was added:
+ ----- Method: HTTPClient class>>tellAFriend:url:name: (in category 'MorphicExtras-utilities') -----
+ tellAFriend: emailAddressOrNil url: urlForLoading name: projectName
+ | recipient subject body linkToInclude |
+ recipient := emailAddressOrNil ifNil: ['RECIPIENT.GOESHERE'].
+ subject := 'New/Updated Squeak project'.
+ body := 'This is a link to the Squeak project ' , projectName , ': ' , String crlf.
+ linkToInclude := urlForLoading.
+ HTTPClient shouldUsePluginAPI
+ ifTrue: [
+ self composeMailTo: recipient subject: subject body: body , (linkToInclude copyReplaceAll: '%' with: '%25')]
+ ifFalse: [FancyMailComposition new
+ celeste: nil
+ to: recipient
+ subject: subject
+ initialText: body
+ theLinkToInclude: linkToInclude;
+ open].!