[Seaside] How to run the new Seaside with halos

Avi Bryant avi at beta4.com
Thu Mar 25 00:21:58 CET 2004


On Mar 24, 2004, at 3:15 PM, Martijn Emmelot wrote:

> Although I still get the error:
>
> An internal error has occured.
> MessageNotUnderstood: UndefinedObject>>at:ifAbsentPut:
>
> when I try http://localhost:9090/seaside/counter or /config

Ah, it's a 3.6 vs. 3.7 problem.  In 3.7, Object class>>new calls 
#initialize, whereas in 3.6 it doesn't.  I'm mostly pretty good about 
not depending on that but sometimes I overlook it.

So you need to add this method:

WARenderingContext class>>new
   ^ self basicNew initialize

Avi



More information about the Seaside mailing list