[Pkg] The Trunk: Network-nice.212.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Dec 2 21:29:35 UTC 2017


Nicolas Cellier uploaded a new version of Network to project The Trunk:
http://source.squeak.org/trunk/Network-nice.212.mcz

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

Name: Network-nice.212
Author: nice
Time: 2 December 2017, 10:29:23.48884 pm
UUID: be2cd95d-5a11-437a-9014-2de33fdbe2bc
Ancestors: Network-pre.211

Remove remnant methods from MailComposition now that it has been refactored (Tool-builder-ized and using a MailMessage instance)

=============== Diff against Network-pre.211 ===============

Item was removed:
- ----- Method: MailComposition>>menuGet:shifted: (in category 'interface') -----
- menuGet: aMenu shifted: shifted
- 	
- 	aMenu addList: {
- 		{'find...(f)' translated.		#find}.
- 		{'find selection again (g)' translated.		#findAgain}.
- 			#-.
- 		{'accept (s)' translated. #accept}.
- 		{'send message' translated.  #submit}}.
- 
- 	^aMenu.!

Item was removed:
- ----- Method: MailComposition>>submit (in category 'access') -----
- submit
- 	| message |
- 	"submit the message"
- 	textEditor
- 		ifNotNil: [self hasUnacceptedEdits ifTrue: [textEditor accept]].
- 	message := MailMessage from: messageText asString.
- 	self breakLinesInMessage: message.
- 	SMTPClient deliverMailFrom: message from to: (Array with: message to) text: message text usingServer: self smtpServer.
- 
- 	morphicWindow ifNotNil: [morphicWindow delete].
- 	mvcWindow ifNotNil: [mvcWindow controller close]!



More information about the Packages mailing list