The Trunk: System-nice.285.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-nice.285.mcz

commits-2
Nicolas Cellier uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-nice.285.mcz

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

Name: System-nice.285
Author: nice
Time: 6 March 2010, 9:01:56.997 pm
UUID: 658d441a-73d8-714e-84bc-be191ec20fc1
Ancestors: System-nice.284, System-ar.284

merge ar.284

=============== Diff against System-nice.284 ===============

Item was changed:
  ----- Method: SmalltalkImage>>unloadAllKnownPackages (in category 'shrinking') -----
  unloadAllKnownPackages
  "Unload all packages we know how to unload and reload"
 
  "Prepare unloading"
  Smalltalk zapMVCprojects.
  Flaps disableGlobalFlaps: false.
  StandardScriptingSystem removeUnreferencedPlayers.
  Project removeAllButCurrent.
  #('Morphic-UserObjects' 'EToy-UserObjects' 'Morphic-Imported' )
  do: [:each | SystemOrganization removeSystemCategory: each].
  Smalltalk at: #ServiceRegistry ifPresent:[:aClass|
  SystemChangeNotifier uniqueInstance
  noMoreNotificationsFor: aClass.
  ].
  World removeAllMorphs.
 
  "Go unloading"
  #( 'ReleaseBuilder' 'ScriptLoader'
  '311Deprecated' '39Deprecated'
  'Universes' 'SMLoader' 'SMBase' 'Installer-Core'
  'VersionNumberTests' 'VersionNumber'
  'Services-Base' 'PreferenceBrowser' 'Nebraska'
  'ToolBuilder-MVC' 'ST80'
  'CollectionsTests' 'GraphicsTests' 'KernelTests'  'MorphicTests'
  'MultilingualTests' 'NetworkTests' 'ToolsTests' 'TraitsTests'
  'SystemChangeNotification-Tests' 'FlexibleVocabularies'
  'EToys' 'Protocols' 'XML-Parser' 'Tests' 'SUnitGUI'
  ) do:[:pkgName| (MCPackage named: pkgName) unload].
  "Traits use custom unload"
  Smalltalk at: #Trait ifPresent:[:aClass| aClass unloadTraits].
 
  "Post-unload cleanup"
  PackageOrganizer instVarNamed: 'default' put: nil.
  SystemOrganization removeSystemCategory: 'UserObjects'.
  Presenter defaultPresenterClass: nil.
  World dumpPresenter.
  ScheduledControllers := nil.
  Preferences removePreference: #allowEtoyUserCustomEvents.
  SystemOrganization removeEmptyCategories.
  ChangeSet removeChangeSetsNamedSuchThat:[:cs | (cs == ChangeSet current) not].
  Undeclared removeUnreferencedKeys.
  StandardScriptingSystem initialize.
  MCFileBasedRepository flushAllCaches.
  MCDefinition clearInstances.
  Behavior flushObsoleteSubclasses.
  ChangeSet current clear.
  ChangeSet current name: 'Unnamed1'.
  Smalltalk flushClassNameCache.
  Smalltalk at: #Browser ifPresent:[:br| br initialize].
  DebuggerMethodMap voidMapCache.
  DataStream initialize.
  Smalltalk forgetDoIts.
  AppRegistry removeObsolete.
  FileServices removeObsolete.
  Preferences removeObsolete.
  TheWorldMenu removeObsolete.
  Smalltalk garbageCollect.
  Symbol compactSymbolTable.
  TheWorldMainDockingBar updateInstances.
+ MorphicProject defaultFill: (Color gray: 0.9).
+ World color: (Color gray: 0.9).
  !