[Seaside] Using 3.7

Philippe Marschall philippe.marschall at gmail.com
Mon Oct 23 19:40:07 UTC 2006


2006/10/23, Keith Hodges <keith_hodges at yahoo.co.uk>:
> Is it expected that Seaside works in 3.7
>
> I am trying seaside with Juan's NoEtoys minimal image and it seems to
> work, but 'debug' does not invoke a debugger as expected.
>
> many thanks in advance

It "should" work since quite a prominent member of the Seaside
community still uses 3.7 for deployment.

If I look at the code it changed from

WAWalkbackErrorHandler >> #handleError: anError
	...
	anError defaultAction

to

WAWalkbackErrorHandler >> #handleError: anError
	...
	| process |
	process := Processor activeProcess.
	WorldState addDeferredUIMessage:
		[process
			debug: anError signalerContext
			title: anError description
			full: true].
	process suspend

Philippe


More information about the Seaside mailing list