Dolphin Smalltalk
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
