RE: [Zope] help! uploading images..
-----Original Message----- From: julian@zereau.net [mailto:julian@zereau.net] Sent: Thursday, April 01, 1999 6:24 AM To: zope@zope.org Subject: [Zope] help! uploading images..
I need to let customers
1) upload a replacement for an image that already exists in the zope tree
2) upload a new image which was not already in the zope tree, and add it to the "images" folder
How can I do this? I do not want to simply give the customer write-access to the images folder as this would be both too complex for them, and too insecure. I would prefer to be able to do this from within a form of my own making.
Create your own form and define your own access policies, then use the same action="" that the management interferace 'Add Image' form uses. It's handy to remember that the management interface is just a Zope application like any other, it uses DTML and python just like a DTML or Product would. There are no (ok, there are *few*) mysterious methods. Studying the way the management interface works can enlighten many problems. -Michel
--- Julian Morrison Programmer (Zereau Ltd)
_______________________________________________ Zope maillist - Zope@zope.org http://www.zope.org/mailman/listinfo/zope
(For developer-specific issues, use the companion list, zope-dev@zope.org - http://www.zope.org/mailman/listinfo/zope-dev )
On 01-Apr-99 Michel Pelletier wrote:
Create your own form and define your own access policies, then use the same action="" that the management interferace 'Add Image' form uses. It's handy to remember that the management interface is just a Zope application like any other, it uses DTML and python just like a DTML or Product would. There are no (ok, there are *few*) mysterious methods. Studying the way the management interface works can enlighten many problems.
Tried that, and it works, but it takes me to an "Ok" button that links to a manage screen, which is not what I want to happen. --- Julian Morrison Programmer (Zereau Ltd)
participants (2)
-
julian@zereau.net -
Michel Pelletier