Re: [Zope] How do I delete acl_users using DTML??

2005-05-24 Thread Chris Withers
Allen Huang wrote: How do I delete acl_users using DTML code?? More to the point, why on earth would you want to?! Chris -- Simplistix - Content Management, Zope & Python Consulting - http://www.simplistix.co.uk ___ Zope maillist - Zop

Re: [Zope] How do I delete acl_users using DTML??

2005-05-12 Thread Dieter Maurer
Allen Huang wrote at 2005-5-12 04:28 -0700: >How do I delete acl_users using DTML code?? In the same way, you delete any other (site building) object: container.manage_deleteObjects(ids_of_objects_to_delete) "ids_of_objects_to_delete" can be either a single id (a "string") or a list of ids.