[Seaside] Possible bug in WAAdmin register: aRequestHandlerClass at: aString in: aDispatcher

Lukas Renggli renggli at gmail.com
Thu Aug 26 22:13:55 UTC 2010


This is strange. What platform are you on? What version?

On Thursday, August 26, 2010, Bart Veenstra <bart.veenstra at gmail.com> wrote:
> Hi all,
> While registring applications seaside other than root, my applications where not accessible at their paths. It seemd that the dispatcher was not tokenzing the path correctly, because the it takes the '/' as argument instead of the $/ causing the applications to be registered at the whole path, instead of registering a WADispatcher for the sub paths.
>
> Don't know of this is the right list for it, but it caused me some headaches yesterday evening :)
> Possible fix:
> WAAdmin register: aRequestHandlerClass at: aString in: aDispatcher
> 	| path dispatcher |	path := aString subStrings: $/.	dispatcher := path allButLast
> 		inject: aDispatcher		into: [ :result :each |			result handlers
> 				at: each				ifAbsent: [ result register: WADispatcher new at: each ] ].
> 	^ dispatcher register: aRequestHandlerClass new at: path last
> Regards,
> Bart
>

-- 
Lukas Renggli
www.lukas-renggli.ch


More information about the seaside mailing list