My script for loading Seaside in Squeak 5.2

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

My script for loading Seaside in Squeak 5.2

Tim Johnson-2
Hi all,

The following has been working reliably for me lately, for loading Seaside into Squeak 5.2:



Installer ensureRecentMetacello.

Metacello new
 baseline:'Seaside3';
 repository: 'github://SeasideSt/Seaside:master/repository';
 load.

(Installer ss3 project: 'WebClient')
        install: 'WebClient-Seaside-Adaptor'.
       
"Optionally use the control panel to add adaptor, start and to set encoding"
"WAControlPanel open."

"do the above but without using the GUI"
(WAWebServerAdaptor port: 8080)
        codec: (GRCodec forEncoding: 'utf-8');
        start.



Best,
Tim

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside