Hi all, How can I uninstall CallProfiler.? If I just remove the directory in Products, I still have a broken object in the Control Panel that I can't remove. Regards, -- Jean
At 17/12/2003 09:57, you wrote:
How can I uninstall CallProfiler&? If I just remove the directory in Products, I still have a broken object in the Control Panel that I cant remove&
Create an external method with: self.Control_Panel.manage_delObjects(I'CallProfiler']) Gabriel Genellina Softlab SRL
I tried context.Control_Panel.manage_delObjects('CallProfiler') with a python script, then self.Control_Panel.manage_delObjects(['CallProfiler']) with an external method, I always get the following error: Error Type: TypeError Error Value: object of type 'None' is not callable Any clue? -- Jean -----Original Message----- From: Gabriel Genellina [mailto:gagenellina@softlab.com.ar] Sent: mercredi 17 décembre 2003 10:21 To: Jean Baltus Cc: zope@zope.org Subject: Re: [Zope] How to uninstall Callprofiler At 17/12/2003 09:57, you wrote:
How can I uninstall CallProfiler&? If I just remove the directory in Products, I still have a broken object in the Control Panel that I cant remove&
Create an external method with: self.Control_Panel.manage_delObjects(I'CallProfiler']) Gabriel Genellina Softlab SRL
On Wednesday 17 December 2003 02:57 am, Jean Baltus wrote:
How can I uninstall CallProfiler.? If I just remove the directory in Products, I still have a broken object in the Control Panel that I can't remove.
I don't know anything about this specific product, but you will notice on the control panel's "products" page, you have checkboxes and a delete button as in any other ZMI folder. Use them. Removing the product folder does not delete the product from this list, so you have to do it yourself. At least this was true in Zope 2.5.1. Cheers, Terry -- Terry Hancock ( hancock at anansispaceworks.com ) Anansi Spaceworks http://www.anansispaceworks.com
Try this: import Zope app = Zope.app() delattr(app.Control_Panel, 'CallProfiler') get_transaction().commit() Nguyen Quan Son ----- Original Message ----- From: Jean Baltus To: zope@zope.org Sent: Wednesday, December 17, 2003 3:57 PM Subject: [Zope] How to uninstall Callprofiler Hi all, How can I uninstall CallProfiler.? If I just remove the directory in Products, I still have a broken object in the Control Panel that I can't remove. Regards, -- Jean
participants (4)
-
Gabriel Genellina -
Jean Baltus -
Nguyen Quan Son -
Terry Hancock