[Seaside] My script for loading Seaside in Squeak 5.2

Tim Johnson digit at sonic.net
Sun Oct 21 16:30:55 UTC 2018


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



More information about the seaside mailing list