Hi,
I've come up with the following code to identify an application's dispatcher path:
| requestContext appPath dispatcher |
requestContext := self requestContext.
dispatcher := requestContext handlers detect: [ :each | each isDispatcher ] ifNone: [ nil ].
appPath := dispatcher isNil
ifTrue: [ '' ]
ifFalse: [ dispatcher handlers keyAtValue: requestContext application ].
is there an easier/better way?
Thanks
Nick
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside