Loading Seaside into Pharo 1.2 core
Posted by Michael Roberts-2 on Feb 14, 2011; 8:42pm
URL: https://forum.world.st/Loading-Seaside-into-Pharo-1-2-core-tp3305778.html
Hi, i want to load Seaside into Pharo 1.2 core. I have followed
various threads talking about doing this with metacello, but beyond
the simple tutorial i have worked through I am lost. I don't want to
have to specify each package by hand.
I can do this...
Gofer new
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfSeaside30';
load.
(ConfigurationOfSeaside30 project version: '3.0.3')
load: { 'Grease Core'. 'Grease Core Tests'. 'Swazoo2'}
I can do this...
(ConfigurationOfSeaside30 project version: '3.0.3')
load: { 'Javascript-Core'}
but how do I load all the stuff declared as #common, or some of the
other parts, in the spec? I don't want to do this in a Pharo image.
If I do something like load: { #common } or load: { #pharo } then
this was clearly a stupid request and I get 100s of errors pop up from
some decompiler issue and my image dies. If someone can help or just
point me at the part of the docs I should be reading that would be
great.
thanks,
Mike