22 Oct
2003
22 Oct
'03
7:21 p.m.
Sam Brauer wrote at 2003-10-22 09:20 -0400:
I have a need to access all revisions of objects of a certain type in my ZODB. It is straightforward enough to find all currently existing instances and then access each one's history. The problem with that approach is that it misses objects that have been deleted (but could still be brought back by an undo operation).
Does anyone know a solution?
You know that deleted objects are finally removed by a pack? Maybe, you should avoid deletion altogether and emulate deletion be moving to a thrash bin. Dieter