[Zope] problems with manage_delObject()

Michel Pelletier michel@digicool.com
Thu, 09 Mar 2000 14:57:50 -0800


"M.J. Stahl" wrote:
> 
> I currently have a hyperlink, that is used to delete an object that resides
> within the OOSStorage folder.
> 
> [<a href="outofstock/OOSStorage/manage_delObject(<dtml-var
> id>)">SHIPPED</A>]

<a href="whatever/manage_delObject?id=<dtml-var id>">

Calling a method with () is a python convention.  HTTP has no convention
of calling anything, we just use the convention that the query string
(everthing after the ? in a URL) is a list of name=value pairs seperated
by &.  This is per the CGI specification.

-Michel