Andreas Raab uploaded a new version of MonticelloConfigurations to project The Trunk:
http://source.squeak.org/trunk/MonticelloConfigurations-ar.62.mcz==================== Summary ====================
Name: MonticelloConfigurations-ar.62
Author: ar
Time: 19 September 2009, 11:54:17 am
UUID: 6c1dad77-7629-2e47-bfaa-7b3198800da2
Ancestors: MonticelloConfigurations-ar.61
Two small fixes for loading MCMs from Universes.
=============== Diff against MonticelloConfigurations-ar.61 ===============
Item was added:
+ ----- Method: MCMcmReader class>>loadVersionFile: (in category 'instance creation') -----
+ loadVersionFile: fileName
+ | version |
+ version := self versionFromFile: fileName.
+ version load.
+ !
Item was changed:
----- Method: MCConfiguration>>log (in category 'accessing') -----
log
"Answer the receiver's log. If no log exist use the default log"
log ifNil: [
+ (name notNil and:[self class logToFile]) ifFalse:[^Transcript].
- self class logToFile ifFalse:[^Transcript].
self log: (FileStream fileNamed: self name, '.log').
].
^log!