Hi.

>
>I tried zapi.getView(), but this has been deprecated, and I don't quite
>understand the best approach.
>
You need to use zapi.getMultiAdapter.
(this is a alias for zope.component.getMultiAdapter)

Because content view is named multiadapter for content's interface and
IBrowserRequest interface, example below:

  zapi.getMultiAdapter((content, request), IBrowserView, name='index.html')


I recommend to read src/zope/interface/adapter.txt. It is a very good
documentation for adapter and zope component architecture.

Regards,
--
TAHARA Yusei
[EMAIL PROTECTED]
_______________________________________________
Zope3-users mailing list
Zope3-users@zope.org
http://mail.zope.org/mailman/listinfo/zope3-users

Reply via email to