[squeak-dev] The Trunk: Monticello-mt.704.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Oct 10 08:00:59 UTC 2019


Marcel Taeumel uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-mt.704.mcz

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

Name: Monticello-mt.704
Author: mt
Time: 10 October 2019, 10:01:00.857002 am
UUID: da391285-627b-8e4d-be75-b06112d206aa
Ancestors: Monticello-cmm.703

Adds "Treated Inbox" to the list of well-known repositories.

=============== Diff against Monticello-cmm.703 ===============

Item was added:
+ ----- Method: MCHttpRepository class>>treated (in category 'well-known repositories') -----
+ treated
+ 	^ MCRepositoryGroup default repositories
+ 		detect:
+ 			[ : each | each isTreated ]
+ 		ifNone:
+ 			[ MCHttpRepository
+ 				location: MCHttpRepository treatedUrlString
+ 				user: 'squeak'
+ 				password: 'squeak' ]!

Item was added:
+ ----- Method: MCHttpRepository class>>treatedUrlString (in category 'accessing') -----
+ treatedUrlString
+ 	^ 'http://source.squeak.org/treated'!

Item was added:
+ ----- Method: MCHttpRepository>>isTreated (in category 'testing') -----
+ isTreated
+ 	^ location = self class treatedUrlString!

Item was added:
+ ----- Method: MCRepository class>>treated (in category 'well-known repositories') -----
+ treated
+ 	^ MCHttpRepository treated!

Item was added:
+ ----- Method: MCRepository>>isTreated (in category 'testing') -----
+ isTreated
+ 	^ false!



More information about the Squeak-dev mailing list