Custom Request Handler
To create a way to have seaside serve files or images from the disk, try this:
- Subclass WAEntryPoint
- implement #handleRequest to:
- parse the Request
- read the file
- create a Response with the file
- return it
- implement #handleRequest to:
- implement #description (class side) to return 'File System' or 'Images'
- Add the new class as an Application at, for example, /images (it automatically shows up on the list of things to add)
