[Grok-dev] Custom traverse method for application not working
Achim Domma
domma at procoders.net
Sat Jul 19 18:07:49 EDT 2008
Hi,
I have defined an application and a model like this:
class CodeReview(grok.Application, grok.Model):
def traverse(self,name):
return SvnFolder()
class Index(grok.View):
grok.context(CodeReview)
pass # see app_templates/index.pt
class SvnFolder(grok.Model):
pass
As far as I understood http://grok.zope.org/documentation/developers-
notes/, this should work. The application can be created without
problem and the index page is displayed. But if I append something to
the url, I get a Zope 3 error page, telling me that the page I
requested is not available.
What am I doing wrong?
Achim
More information about the Grok-dev
mailing list