Re: [Zope] Strange warning after removing products

2005-09-11 Thread Dieter Maurer
Martin Koekenberg wrote at 2005-9-10 17:20 +0200:
> ...
>A while ago I used the products 'Superlogger' and 'Quicklinks.'
>I Also removed 'PlacelessTranslationService'.
>All the products were available in the control_panel.
>
>But I still get the following warnings ?
>
>2005-09-10 16:49:05 WARNING ZODB Could not import class 
>'PlacelessTranslationService' from module 
>'Products.PlacelessTranslationService.PlacelessTranslationService'
>2005-09-10 16:49:05 WARNING ZODB Could not import class 'SuperLogger' 
>from module 'Products.SuperLogger.SuperLogger'
>2005-09-10 16:49:05 WARNING ZODB Could not import class 'QuickLinks' 
>from module 'Products.QuickLinks.QuickLinks'

As you observed, the products installed objects in "Control_Panel".
Removing the products cannot remove these objects automatically.
When the "Control_Panel" is accessed, these object can not be loaded
(because their classes are not longer importable). This gives
you the warnings above.

You can manually remove the objects in an interactive Python interpreter.
Under *nix, you enter such an interpreter with "bin/zopectl debug".
The deletion looks then like:

app.Control_Panel.manage_delObjects(['id1', 'id2', ...])
get_transaction().commit()

-- 
Dieter
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] Zope 2.8.1 won't "make"

2005-09-11 Thread Dieter Maurer
Sophia Grimm wrote at 2005-9-9 11:59 -0700:
>Just downloaded Zope 2.8.1 and I'm trying to install
>it on MOSX 10.4, which has XCode 2.1 installed.
>
>I'm following installation instructions on this page:
>http://www.plope.com/Books/2_7Edition/InstallingZope.stx#2-6
>
>./configure runs, but when I try to make, I get this
>error:
>
>makefile:54: *** target pattern contains no `%'. 
>Stop.

Zope might require a "gnu make" version.

-- 
Dieter
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )