[Pkg] The Trunk: System-fbs.544.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Jun 5 09:24:43 UTC 2013


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

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

Name: System-fbs.544
Author: fbs
Time: 5 June 2013, 8:54:43.964 am
UUID: 7a36423e-dfa0-4506-99ef-c2c211e2f644
Ancestors: System-nice.543

Avoid using Utilities; UIManager default provides a better hook.

=============== Diff against System-nice.543 ===============

Item was changed:
  ----- Method: SecurityManager>>generateKeyPairInBackground (in category 'private') -----
  generateKeyPairInBackground
  	"SecurityManager default generateKeyPairInBackground"
  	"Silently generate a key set on the local machine while running in the background."
  	| guesstimate startTime |
  	guesstimate := [10 benchmark] timeToRun * 150.
  	startTime := Time millisecondClockValue.
  	privateKeyPair := nil.
  	[self generateLocalKeyPair] fork.
+ 	UIManager default informUserDuring:[:bar|
- 	Utilities informUserDuring:[:bar|
  		[privateKeyPair == nil] whileTrue:[
  			bar value:'Initializing Squeak security system (', (Time millisecondClockValue - startTime * 100 // guesstimate) printString,'%)'.
  			(Delay forSeconds: 1) wait.
  		].
  	].
  !



More information about the Packages mailing list