[squeak-dev] The Trunk: Monticello-cmm.658.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Nov 27 23:33:05 UTC 2016


Chris Muller uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-cmm.658.mcz

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

Name: Monticello-cmm.658
Author: cmm
Time: 27 November 2016, 5:32:56.411486 pm
UUID: 4e8d4c9a-f381-4d9c-bfd6-3a6cfc7c5e09
Ancestors: Monticello-cmm.657

missed renaming the #browseMcMethodHistory service

=============== Diff against Monticello-cmm.657 ===============

Item was changed:
+ (PackageInfo named: 'Monticello') preamble: '"Woops, somehow missed the #browseMcMethodRevisions Service."
- (PackageInfo named: 'Monticello') preamble: '"Former MCRepository class>>#unload.  Unregister the old names."
  	| methodMenuServiceCategory classMenuServiceCategory |
  	methodMenuServiceCategory := ServiceRegistry current serviceWithId: #browserMethodMenu.
  	methodMenuServiceCategory services copy do:
  		[ : each | (#(#browseMcMethodHistory #browseMcMethodOrigin ) includes: each id) ifTrue: [ methodMenuServiceCategory services remove: each ] ].
  	classMenuServiceCategory := ServiceRegistry current serviceWithId: #browserClassMenu.
  	classMenuServiceCategory services copy do:
  		[ : each | (#(#browseMcClassHistory #browseMcClassOrigin ) includes: each id) ifTrue: [ classMenuServiceCategory services remove: each ] ]'!

Item was changed:
  ----- Method: MCRepository class>>browseMethodRevisionsService (in category 'ui-support') -----
  browseMethodRevisionsService
  	^ ServiceAction
+ 		id: #browseMcMethodRevisions
+ 		text: 'browse revisions'
- 		id: #browseMcMethodHistory
- 		text: 'browse repository revisions'
  		button: 'mc'
  		description: 'Browse revisions of this method from the first-listed HTTP repository of this package.'
  		action:
  			[ : aBrowserRequestor | aBrowserRequestor browseMcMethodRevisions ]
  		condition:
  			[ : aBrowserRequestor | true ]!

Item was changed:
+ (PackageInfo named: 'Monticello') postscript: '"Woops somehow missed renaming the #browseMcMethodHistory service."
- (PackageInfo named: 'Monticello') postscript: '"Just renamed ''history'' nomenclature to ''revisions''."
  MCHttpRepository initialize.'!



More information about the Squeak-dev mailing list