[Seaside] seaside.st dolphin installation documentation

Claus Kick claus_kick at web.de
Wed Oct 17 17:18:06 UTC 2007


Hello everyone,

fresh Seasider here - wanted to try and play with Seaside for Dolphin 
and stumbled over the documentation served here:

http://seaside.st/download/dolphin

With Esteban A. Maringolo's port, this documentation is no longer valid.

Therefore, I would propose to change the text to (this basically is what 
he wrote in a reply to me on c.l.s.d.):

Download

Download Sport, Swazoo and Seaside from: 
http://emaringolo.users.dolphinmap.net/

Installation

Unzip each file in your Dolphin Smalltalk X6 directory.
Go to the Dolphin Package Loader and first install Sport (SPort.pac), 
then Swazoo (Swazoo-Server.pac, Swazoo-Resources.pac, 
Swazoo-Examples.pac) and finally Seaside (Seaside-Dolphin.pac, 
Seaside-Swazoo.pac, Seaside.pac).

You can then start a Seaside server with the following snippet:

| site composite |
site := Site new name: 'seaside'.
site host: 'localhost' ip: '127.0.0.1' port: 8888.
site addResource:  (composite := CompositeResource uriPattern: '/').
composite addResource: (SeasideSwazooResource uriPattern: 'seaside').
site start.
SwazooServer singleton addSite: site.
SwazooServer singleton start.

Then point your web browser to:
http://localhost:8888/seaside/counter

Cheers from cloudy Germany,

Claus



More information about the seaside mailing list