[squeak-dev] The Trunk: MonticelloConfigurations-cmm.117.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Nov 8 16:21:27 UTC 2013


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

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

Name: MonticelloConfigurations-cmm.117
Author: cmm
Time: 8 November 2013, 10:20:54.98 am
UUID: 191c2fe6-eb47-4de6-b8ff-d15366fdfd8d
Ancestors: MonticelloConfigurations-cmm.116

- Refer to new trunkUrlString accessor rather than hard-coding it in multiple places.

=============== Diff against MonticelloConfigurations-cmm.116 ===============

Item was changed:
  ----- Method: MCConfigurationBrowser>>description (in category 'description') -----
  description
  	self selectedDependency ifNotNil:
  		[:dep |
  		^ ('Package: ', dep package name, String cr, dep versionInfo summary) asText].
  	self selectedRepository ifNotNil:
  		[:repo |
  		^repo creationTemplate
  			ifNotNil: [repo creationTemplate asText]
  			ifNil: [repo asCreationTemplate asText addAttribute: TextColor red]].
+ 	^'A configuration is a set of particular versions of packages.  These can be used to manage multiple dependencies amongst packages when an update requires changes to multiple packages.  One stores the current configuration and then modifies the various packages needing modification.\\To create a new configuration first load the most up-to-date configuration in your repository (e.g.',  MCHttpRepository trunkUrlString, '), open that repository in the Monticello browser, scroll down to the "update" package, select the first entry in the list on the right hand side and click Browse, which will open the configuration in a new MCConfigurationBrowser.  Then in the new MCConfigurationBrowser click Update, and choose "update all from image" from the pop-up menu.  Click Store to save back to the repository.' withCRs!
- 	^'A configuration is a set of particular versions of packages.  These can be used to manage multiple dependencies amongst packages when an update requires changes to multiple packages.  One stores the current configuration and then modifies the various packages needing modification.\\To create a new configuration first load the most up-to-date configuration in your repository (e.g. http://source.squeak.org/trunk), open that repository in the Monticello browser, scroll down to the "update" package, select the first entry in the list on the right hand side and click Browse, which will open the configuration in a new MCConfigurationBrowser.  Then in the new MCConfigurationBrowser click Update, and choose "update all from image" from the pop-up menu.  Click Store to save back to the repository.' withCRs!

Item was changed:
  ----- Method: MCMcmUpdater class>>initialize (in category 'class initialization') -----
  initialize
  	"MCMcmUpdater initialize"
  	LastUpdateMap ifNil:[
  		LastUpdateMap := Dictionary new.
  	].
  	DefaultUpdateURL ifNil:[
+ 		DefaultUpdateURL := MCHttpRepository trunkUrlString.
- 		DefaultUpdateURL := 'http://source.squeak.org/trunk'.
  	].!



More information about the Squeak-dev mailing list