[Zope] Re: Is there a "Virtual Folder" Product??
Dieter Maurer
dieter@handshake.de
Mon, 30 Jul 2001 19:25:26 +0200 (CEST)
Philipp Robbel writes:
> Thanks for your help! I would really be interested in that hotfix solution,
> but I have not yet understood, if my following code would do what you meant
> with: "You would need to merge the Application's __bobo_traverse__ with that
> of MFolder".
>
> --- snip ----
> from OFS.Application import Application
> from Products.MFolder import MFolder
>
> Application.__bobo_traverse__ = MFolder.__bobo_traverse__
I would call this "overwriting" not "merging".
> Or would I have to define a new __bobo_traverse__ (i.e. "merge" both of
> them - how?) and assign that new one to Application.__bobo_traverse__ ?
If "Application" has a "__bobo_traverse__" (and I think, it does),
then you need to combine the effect of both.
This means, you need your own "__bobo_traverse__", let it do
what "Application.__bobo_traverse__" would do and do on
the result, what "MFolder.__bobo_traverse__" does.
> It would be very nice if you could still provide me with further
> information/implementation despite me being rude with BCC.
I already forgot about the "BCC". Nevertheless, I do not
have the time to solve your problem. You must look into it
yourself.
> Another "problem" I'm currently having with MFolder I have described in the
> mailing list at
> http://groups.yahoo.com/group/zope/message/67633
> http://groups.yahoo.com/group/zope/message/67642
>
> which concern index_html difficulties.
>
> It would be great if you could look into this one as well.
If I get these messages.... (to be precise, if they come to
me and I do not need to fetch them).
Dieter