[Zope] uncatalog of absent id?
R. David Murray
bitz@bitdance.com
Fri, 14 Jul 2000 16:24:23 -0400 (EDT)
On Thu, 13 Jul 2000, Nitesh Dhanjani wrote:
> Im fairly new to the Zope world. Im trying to delete a PTK folder, and get
> this error:
>
> Zope Error
> Zope has encountered an error while publishing this resource.
>
> Error Type: ValueError
> Error Value: Uncatalog of absent id '/icds/Members/bob/index_html'
This means you are trying to delete a CatalogAware object that was
not entered into the catalog. (Some have argued that this is a
but, some a feature). To get around it, you can probably just
call the URL
/icds/Members/bob/index_html/index_object
and then do the delete.
--RDM