[Pkg] The Trunk: 60Deprecated-mt.50.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Sep 18 06:51:37 UTC 2019


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].!



More information about the Packages mailing list