[squeak-dev] The Trunk: Installer-Core-cmm.383.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Nov 11 21:59:40 UTC 2013


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

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

Name: Installer-Core-cmm.383
Author: cmm
Time: 11 November 2013, 3:59:16.385 pm
UUID: 3844745d-bc14-44aa-adee-033cbc0ee3be
Ancestors: Installer-Core-cmm.382

Installer simplification:  remove overly complex printing.

=============== Diff against Installer-Core-cmm.382 ===============

Item was removed:
- ----- Method: Installer class>>label (in category 'accessing') -----
- label
- 	^ ''!

Item was removed:
- ----- Method: Installer>>label (in category 'accessing') -----
- label
- 	^ self class label!

Item was removed:
- ----- Method: Installer>>printConfigurationOn: (in category 'printing') -----
- printConfigurationOn: stream
- 	!

Item was removed:
- ----- Method: Installer>>printOn: (in category 'printing') -----
- printOn: s
- 	s
- 		nextPutAll: '(Installer ';
- 		nextPutAll: self label;
- 		nextPut: $).
- 
- 	"lf project ifNotNil: [ s nextPutAll: ' project:'; nextPutAll: '''', self project, ''''.
- 						self package ifNotNil: [ s nextPutAll: '; '] ]."
- 	self package ifNotNil: [ s nextPutAll: ' package:'; nextPutAll: '''', self package asString, '''' ].
- 	self printConfigurationOn: s.
- 	s nextPut: $..!

Item was removed:
- ----- Method: InstallerCruft class>>label (in category 'accessing') -----
- label
- 	^ 'cruft'!

Item was removed:
- ----- Method: InstallerFile class>>label (in category 'accessing') -----
- label
- 	^ 'file'!

Item was removed:
- ----- Method: InstallerMantis class>>label (in category 'accessing') -----
- label
- 	^ 'mantis'!

Item was removed:
- ----- Method: InstallerMonticello class>>label (in category 'accessing') -----
- label
- 	^ 'monticello'!

Item was removed:
- ----- Method: InstallerMonticello>>label (in category 'accessing') -----
- label
- 	^ 'repository:''', mc description, ''''!

Item was removed:
- ----- Method: InstallerMonticello>>printConfigurationOn: (in category 'Installer-Core') -----
- printConfigurationOn: stream
- 	self project ifNil: [ ^ self ].
- 	
- 	stream 
- 		nextPutAll: ' project:''';
- 		nextPutAll: self project;
- 		nextPut: $'!

Item was removed:
- ----- Method: InstallerSake class>>label (in category 'accessing') -----
- label
- 	^ 'sake'!

Item was removed:
- ----- Method: InstallerSqueakMap class>>label (in category 'accessing') -----
- label
- 	^ 'squeakmap'!

Item was removed:
- ----- Method: InstallerUniverse class>>label (in category 'as yet unclassified') -----
- label
- 	^ 'universe'!

Item was removed:
- ----- Method: InstallerUpdateStream class>>label (in category 'accessing') -----
- label
- 	^ 'updatestream'!

Item was removed:
- ----- Method: InstallerUrl class>>label (in category 'accessing') -----
- label
- 	^ 'url'!

Item was removed:
- ----- Method: InstallerUrl>>label (in category 'accessing') -----
- label
- 	^ 'url:''', url, ''''!

Item was removed:
- ----- Method: InstallerWeb class>>label (in category 'accessing') -----
- label
- 	^ 'web'!

Item was removed:
- ----- Method: InstallerWebSqueakMap class>>label (in category 'accessing') -----
- label
- 	^ 'websqueammap'!



More information about the Squeak-dev mailing list