On génère à la main le uid lors de la ré-indexation.
[Portfolio.git] / manipulation.py
index 9f65866..43bd086 100755 (executable)
@@ -18,6 +18,7 @@ from types import StringTypes
 from math import ceil
 import transaction
 from ZODB.POSException import ConflictError
 from math import ceil
 import transaction
 from ZODB.POSException import ConflictError
+from zope.site.hooks import setSite
 from cStringIO import StringIO
 
 console = logging.getLogger('[manipulation thread]')
 from cStringIO import StringIO
 
 console = logging.getLogger('[manipulation thread]')
@@ -50,6 +51,8 @@ class ImageQueueProcessorThread(threading.Thread) :
                #atexit.register(self.stop)
                import Zope2
                app = Zope2.app()
                #atexit.register(self.stop)
                import Zope2
                app = Zope2.app()
+               portal = app.unrestrictedTraverse(self.portal_path)
+               setSite(portal)
                while not self.__stopped and self.queueSize :
                        self._process(app)
                
                while not self.__stopped and self.queueSize :
                        self._process(app)
                
@@ -122,7 +125,11 @@ class ImageQueueProcessorThread(threading.Thread) :
                                pass
                        
                        p.tiles_available = 1
                                pass
                        
                        p.tiles_available = 1
-                       p.reindexObject(idxs=['tiles_available'])
+
+                       portal = app.unrestrictedTraverse(self.portal_path)
+                       ctool = portal.portal_catalog
+                       uid = '/'.join(p.getPhysicalPath())
+                       ctool.reindexObject(p, idxs=['tiles_available'], uid=uid)
                        transaction.commit()
 
                except ConflictError :
                        transaction.commit()
 
                except ConflictError :