[Zope-CMF] Path indexes

Dieter Maurer dieter@handshake.de
Fri, 20 Sep 2002 20:35:22 +0200


Miles Waller writes:
 > ...
 > To do this, I carry out a query against a path index, using the path from
 > the current folder.  All straightforward so far, and works fine.  However,
 > if i rename a section, the paths indexed for any subitems are not updated in
 > the index and so the script returns nothing!
Strange:

  Zope usually renames by copying the object to the new location
  and then deleting the original.

  After the copying, "manage_afterAdd" is called, which usually
  calls "indexObject". This should update all indexes.

Cannot understand why it fails...


Dieter