Re: [Zope] uncatalog of absent id?

2000-07-14 Thread R. David Murray

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


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] uncatalog of absent id?

2000-07-14 Thread Bill Anderson

"R. David Murray" wrote:
 
 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.


If that fails:
http://www.zope.org/Members/Bill/Documentation/CatalogBadness

You could also delete the Catalog, delete the Item, and Undo the Catalog
Deletion. This has worked well for me in the past.

YMMV

Bill

--
Do not meddle in the affairs of sysadmins, for they are easy to annoy,
and have the root password.

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )