Hi, I have a PathHandler in my root. If I make it redirect to a DTML method also in the root it works fine. But I want the PathHandler to call a DTML method in a subfolder, for example /folder1/subfolder1/index_html Is this possible and if so what is the syntax for the Method property of the PathHandler. thanks a lot -Kevin __________________________________________________ Do You Yahoo!? Yahoo! Auctions - buy the things you want at great prices http://auctions.yahoo.com/
Kevin L wrote:
But I want the PathHandler to call a DTML method in a subfolder, for example /folder1/subfolder1/index_html
Is this possible and if so what is the syntax for the Method property of the PathHandler.
Hmm, not currently, but if you change line 89 to: return self.restrictedTraverse(self.Method) and line line 101 to: return self.restrictedTraverse(self.Method)(self,REQUEST) ...then you can use a path exactly as you have done above :-) cheers, Chris
participants (2)
-
Chris Withers -
Kevin L