On Thu, May 27, 2010 at 09:56:45PM +0200, laurent laffont wrote:
On Thu, May 27, 2010 at 4:45 PM, David T. Lewis <lewis@mail.msen.com> wrote:
On Thu, May 27, 2010 at 09:04:37AM +0200, laurent laffont wrote:
Hi Dave,
I've managed to make it running in Pharo (remove all isMorphic ifFalse ... stuff, change menu registration, a little work is needed to adapt to Pharo new settings system). It works (I can publish a package when back at home).
Now I suppose you want to keep it running on Squeak, I don't know how to handle differences on world menu and preferences.
For the MVC part, is there some value in keeping it ?
Hi Laurent,
Thanks, I would be very interested in seeing your changes, especially the menu registration fixes.
For menu registration, add
CommandShell class>>#menuCommandOn: aBuilder <worldMenu> (aBuilder item: #'Command Shell') parent: #Tools; action:[self open]; help: 'Smalltalk simulation of a Unix command shell '.
and comment / remove Preferences in CommandShell class>>#initialize.
Laurent, Thank you, much appreciated. Dave