Hi all,

I find that the provider syntax doesn't allow a nocall:
specifier. ie: the following tal syntax fails, because regardless of
the nocall: modifier, the provider: is rendered at once, and you
end up calling render on a string. Is this a bug?

  <div tal:define="obj nocall:provider:q2d-prov"
     tal:content="obj/render"/>

My intent is to call the update at a separate place from the
render. How else might I achieve this? I can only think of 
explicitly getting the provider in python code, like so

    vmgr = zope.component.getMultiAdapter(
      (self.context, self.request, self), 
      IViewletManager, name='q2d-prov')

and doing the the update and render separately.


Thanks,
Roy
_______________________________________________
Zope3-dev mailing list
Zope3-dev@zope.org
Unsub: http://mail.zope.org/mailman/options/zope3-dev/archive%40mail-archive.com

Reply via email to