[squeak-dev] The Trunk: Monticello-bf.484.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Oct 17 14:34:08 UTC 2011


Bert Freudenberg uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-bf.484.mcz

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

Name: Monticello-bf.484
Author: bf
Time: 17 October 2011, 4:33:47.383 pm
UUID: 562d6829-e290-43e3-b9f6-f4c53a6be602
Ancestors: Monticello-bf.483

Make loading/unloading of class categories work (previously, install/revert of organization definitions didn't do anything)

=============== Diff against Monticello-bf.483 ===============

Item was changed:
  ----- Method: MCOrganizationDefinition>>reorderCategories:original: (in category 'actions') -----
  reorderCategories: allCategories original: oldCategories
  	| first |
+ 	first := allCategories detect: [:ea | categories includes: ea]
+ 		ifNone: [^ allCategories, categories].
- 	first := allCategories detect: [:ea | categories includes: ea] ifNone: [^ allCategories].
  	^ 	((allCategories copyUpTo: first) copyWithoutAll: oldCategories, categories),
  		categories,
  		((allCategories copyAfter: first) copyWithoutAll: oldCategories, categories)
  !

Item was added:
+ ----- Method: MCOrganizationDefinition>>unload (in category 'actions') -----
+ unload
+ 	SystemOrganization categories:
+ 		(SystemOrganization categories copyWithoutAll: categories)!




More information about the Squeak-dev mailing list