The Trunk: MorphicExtras-mt.261.mcz

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

The Trunk: MorphicExtras-mt.261.mcz

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

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

Name: MorphicExtras-mt.261
Author: mt
Time: 18 September 2019, 8:51:03.940595 am
UUID: fd338836-7a62-4401-bc74-c8c500edcc24
Ancestors: MorphicExtras-mt.260

Remove extension from deprecated class to make MorphicExtras not be dependent on 60Deprecated.

=============== Diff against MorphicExtras-mt.260 ===============

Item was removed:
- ----- 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].!