[Seaside] How to set default page

Nevin Pratt nevin at bountifulbaby.com
Thu Mar 23 17:40:25 UTC 2006


Frank Sukhu wrote:

> Greetings,
>
> I would like to set the default page in Seaside so that when I enter a 
> url like http://localhost:9090/ I will get  a default page.
>
> I have experimented with the Seaside configuration but no luck so far.
>
> Any help would be appreciated.
>
> Thanks,
> Frank



I do it with Comanche.  I override WAKom, then override #process:

process: komRequest
    ..... whatever ....
    (komRequest url = '/') ifTrue: [komRequest url: 
'/seaside/default_page_whatever'].
    .... whatever else ....

Nevin





More information about the Seaside mailing list