The Trunk: CommandLine-tpr.10.mcz

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

The Trunk: CommandLine-tpr.10.mcz

commits-2
tim Rowledge uploaded a new version of CommandLine to project The Trunk:
http://source.squeak.org/trunk/CommandLine-tpr.10.mcz

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

Name: CommandLine-tpr.10
Author: tpr
Time: 1 February 2018, 4:06:45.057704 pm
UUID: 303563e6-0663-4b85-a5a6-52ef7b134e68
Ancestors: CommandLine-tpr.9

Preliminary support for changes involved in removing the Project>>dispatchTo:addPrefixAndSend:withArguments: method.

=============== Diff against CommandLine-tpr.9 ===============

Item was added:
+ ----- Method: DummyUIManager>>openDebugger:on:context:label:contents:fullView: (in category 'ui requests') -----
+ openDebugger: aDebugger on: process context: context label: title contents: contentsStringOrNil fullView: bool
+ "open a debugger - the two versions for mvc & morphic are very close and can surely be merged so that this can be removed"
+ ^nil!

Item was added:
+ ----- Method: DummyUIManager>>openFancyMailComposition: (in category 'ui requests') -----
+ openFancyMailComposition: fancyMail
+ "FancyMailComposition should probably be removed in favour of MailComposition, but at least ought to be made a ToolBuilder thing"
+ ^nil!

Item was added:
+ ----- Method: DummyUIManager>>openPluggableFileList:label:in: (in category 'ui requests') -----
+ openPluggableFileList: aPluggableFileList label: aString in: aWorld
+ "PluggableFileList is being deprecated and this can go away soon"
+ ^nil!

Item was added:
+ ----- Method: DummyUIManager>>openPluggableFileListLabel:in: (in category 'ui requests') -----
+ openPluggableFileListLabel: aString in: aWorld
+ "PluggableFileList is being deprecated and this can go away soon"
+ ^nil!

Item was added:
+ ----- Method: DummyUIManager>>resumeDebugger:process: (in category 'ui requests') -----
+ resumeDebugger: aDebugger process: aTopView
+ "resume a debugger - the two versions for mvc & morphic are very close and can surely be merged so that this can be removed"
+ ^nil!

Item was added:
+ ----- Method: DummyUIManager>>startUpMenu:withCaption:icon:at:allowKeyboard: (in category 'ui requests') -----
+ startUpMenu: aMenu withCaption: captionOrNil icon: aForm at: location allowKeyboard: aBoolean
+ "A menu needs to startup and depends on the current type of ui manager for what sort of startup to do. Very ugly, and really needs replacing with a much better menu system"
+
+ ^nil
+ !