Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
Wanted -- A Seaside Tutorial
Last updated at 1:15 pm UTC on 6 September 2017

by mj


  1. Installing Squeak and Damien Cassou's squeak-web image
  2. Creating the top-level component and giving it a URL

2007 Tutorial Pages

1. Wanted -- A Seaside Tutorial

image setup

2. Wanted -- A Seaside Tutorial: Part 2

  1. create subclass of WAComponent called WTComponent
  2. class side method #canBeRoot
  3. add a first rendering method #renderContentOn: html
  4. wire the Component up to a Seaside URL: http://localhost:8080/seaside/config

3. Wanted -- A Seaside Tutorial: Part 3

Create a model class WantedItem with three attributes
The 'WantedItems' are stored in a WantedDatabase class which holds the collection.
Access to the itemss is through a class method #wantedItems.

Preliminary main page that lists the WantedItems stored in the WantedDatabase.

4. Wanted -- A Seaside Tutorial: Part 4

  1. Refactor the WantedItem Class
  2. Create HTML table

5. Wanted -- A Seaside Tutorial: Part 5

  1. Refactor the WantedItem Class
  2. Create the WantedEditor Class
  3. Call WantedEditor to Add WantedItems

Some follow up tutorials