The Trunk: System-fbs.573.mcz

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

The Trunk: System-fbs.573.mcz

commits-2
Frank Shearar uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-fbs.573.mcz

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

Name: System-fbs.573
Author: fbs
Time: 22 July 2013, 11:08:56.53 am
UUID: 652456a4-0bf0-4af9-996a-48de87331b94
Ancestors: System-fbs.572

Kernel shouldn't reference System. This lets System decorate Warning to provide nice user-level interaction while keeping UI concerns out of Kernel.

=============== Diff against System-fbs.572 ===============

Item was added:
+ ----- Method: Warning>>defaultAction (in category '*System-exceptionDescription') -----
+ defaultAction
+ "The user should be notified of the occurrence of an exceptional occurrence and given an option of continuing or aborting the computation. The description of the occurrence should include any text specified as the argument of the #signal: message."
+ ToolSet
+ debugContext: thisContext
+ label: 'Warning'
+ contents: self messageText, '\\Select Proceed to continue, or close this window to cancel the operation.' withCRs.
+ self resume.
+ !