[Seaside] Re: Debugger, not any more with Seaside 3.x?

Stephan Eggermont stephan at stack.nl
Wed Feb 4 09:54:03 UTC 2015


The default exception handler was changed. Either change it
from config, or do something similar to

Application class>>registerForDevelopmentAt: anApplicationName
	| application |
	WAAdmin enableDevelopmentTools.
	application := self registerAt: anApplicationName.
	application filter configuration at: #exceptionHandler put: WADebugErrorHandler.
	^application

Application class>>registerAt: anApplicationName
	^(WAAdmin register: self asApplicationAt: anApplicationName)
		preferenceAt: #sessionClass put: self sessionClass;
		addLibrary: JQDeploymentLibrary;
		addLibrary: JQUiDeploymentLibrary;
		yourself


More information about the seaside mailing list