Hi! I would like to get rid of this: ---------------------------------------------------------------------------- .../lib/python/SearchIndex/__init__.py:91: Deprecation Warning: ... blah ... Please use instead the re-factored modules in Products/PluginIndexes ---------------------------------------------------------------------------- Apparently one or more of my installed (third-party) products is causing this. I don't know of any explicit use of the SearchIndex module, so I guess it is some ZCatalog function being called that's relying on it (reindex?). Does anyone know which calls cause this to happen, so I can replace them with the "proper" ones? Thanks very much in advance, Danny
Zope 2.4 does not use the old SearchIndex package. So this warning is printed when 3rd party applications still use this package. Andreas ----- Original Message ----- From: "Danny William Adair" <danny@adair.net> To: "zope-dev @ zope.org" <zope-dev@zope.org> Sent: Tuesday, November 20, 2001 20:46 Subject: [Zope-dev] SearchIndex deprecation warning
Hi!
I would like to get rid of this:
-------------------------------------------------------------------------- -- .../lib/python/SearchIndex/__init__.py:91: Deprecation Warning: ... blah ... Please use instead the re-factored modules in Products/PluginIndexes -------------------------------------------------------------------------- --
Apparently one or more of my installed (third-party) products is causing this.
I don't know of any explicit use of the SearchIndex module, so I guess it is some ZCatalog function being called that's relying on it (reindex?).
Does anyone know which calls cause this to happen, so I can replace them with the "proper" ones?
Thanks very much in advance, Danny
_______________________________________________ Zope-Dev maillist - Zope-Dev@zope.org http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope )
On Wednesday 21 November 2001 14:49, Andreas Jung wrote:
Zope 2.4 does not use the old SearchIndex package. So this warning is printed when 3rd party applications still use this package.
Andreas
Sorry. Please allow me to repost my second sentence:
Apparently one or more of my installed (third-party) products is causing this.
So I am aware that it is some third-party product(s) that's causing this. What I would like to find out is: Which ZCatalog function calls invoke the SearchIndex module? If I knew that I could hunt them down and replace them with their corresponding successors. Yes, I would do this in the third-party products! (and inform the creators so they have less work when patching up) Thank you very much in advance, Danny
Danny William Adair wrote:
Apparently one or more of my installed (third-party) products is causing this.
I don't think so. Try this: delete all filesystem products from the Zope control panel, and restart Zope. I think you'll find that the products will return, and you won't get these messages at startup. You're getting these errors because of persistent Catalog objects stored by the Zope help system, which were created before Zope 2.4. -- Steve Alexander Software Engineer Cat-Box limited
Steve, you are right. I have only thought of a fresh 2.4 installation without using a pre-2.4 Data.fs. Andreas ----- Original Message ----- From: "Steve Alexander" <steve@cat-box.net> To: <danny@adair.net> Cc: "Andreas Jung" <andreas@andreas-jung.com>; "zope-dev @ zope.org" <zope-dev@zope.org> Sent: Wednesday, November 21, 2001 04:48 Subject: Re: [Zope-dev] SearchIndex deprecation warning
Danny William Adair wrote:
Apparently one or more of my installed (third-party) products is
causing
this.
I don't think so.
Try this: delete all filesystem products from the Zope control panel, and restart Zope. I think you'll find that the products will return, and you won't get these messages at startup.
You're getting these errors because of persistent Catalog objects stored by the Zope help system, which were created before Zope 2.4.
-- Steve Alexander Software Engineer Cat-Box limited
On Wednesday 21 November 2001 22:48, Steve Alexander wrote:
Danny William Adair wrote:
Apparently one or more of my installed (third-party) products is causing this.
I don't think so.
Try this: delete all filesystem products from the Zope control panel, and restart Zope. I think you'll find that the products will return, and you won't get these messages at startup.
You're getting these errors because of persistent Catalog objects stored by the Zope help system, which were created before Zope 2.4.
That did the trick. Thank you very much! Andreas, sorry that I didn't mention the upgrade. Thanks you two, Danny
participants (3)
-
Andreas Jung -
Danny William Adair -
Steve Alexander