[Pkg] Monticello Public: Monticello.impl-kph.632.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Sun Feb 15 16:10:07 UTC 2009


A new version of Monticello.impl was added to project Monticello Public:
http://www.squeaksource.com/mc/Monticello.impl-kph.632.mcz

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

Name: Monticello.impl-kph.632
Author: kph
Time: 15 February 2009, 4:09:52 pm
UUID: 77dc3cfb-0e3e-497f-893d-0ad78d7a4d87
Ancestors: Monticello.impl-kph.631

fix to visibleClasses 

+ collect: #path
+ collect: [:f | f path]. 

=============== Diff against Monticello.impl-kph.631 ===============

Item was changed:
  ----- Method: MCSnapshotBrowser>>visibleClasses (in category 'listing') -----
  visibleClasses
  
  	categorySelection = self filesCategory ifTrue: [ 
+ 		^ self fileDefinitions collect: [:f | f path]
- 		^ self fileDefinitions collect: #path
  	].
  
  	^ categorySelection = self extensionsCategory
  		ifTrue: [self extensionClassNames]
  		ifFalse: [self packageClasses
  					select: [:ea | ea category = categorySelection]
  					thenCollect: [:ea | ea className]].!

Item was added:
+ ----- Method: MCOrganizationDefinition>>unload (in category 'as yet unclassified') -----
+ unload
+ 	Transcript cr; show: 'unloading: ', self categories asString.
+ 	Beeper beep.!



More information about the Packages mailing list