The Trunk: Monticello-mt.642.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Monticello-mt.642.mcz

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

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

Name: Monticello-mt.642
Author: mt
Time: 2 August 2016, 3:23:49.877305 pm
UUID: d16b4288-3e85-0148-93fe-cf9b01e79b4c
Ancestors: Monticello-mt.641

Add inbox as well-known repository.

=============== Diff against Monticello-mt.641 ===============

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

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

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

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

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