[Zope-dev] manage_pasteObjects and REQUEST
Dieter Maurer
dieter@handshake.de
Wed, 19 Sep 2001 18:48:29 +0200 (CEST)
Danny William Adair writes:
> Does anyone know when manage_PasteObjects will stop requiring REQUEST to be passed? I want to mimick the Cut/Copy/Paste Support of the management interface in a UI of my own.
>
> my method "objectsCut" holds:
> <dtml-call "manage_cutObjects(REQUEST['ids'], REQUEST)">
>
> while my "objectsPaste" method holds:
> <dtml-call "manage_pasteObjects(_.None, REQUEST)">
>
> Pasting objects will sometimes (!?!) redirect me to the management interface, which I want to hide.
In these cases, you do not ignore the return value of
"manage_pasteObjects" (which you should do).
Dieter