Finding old revisions, from an OID
Given an OID for an object in the zodb, can I ... - find out what revisions are still in the zodb? - find out what transactions modified this object? I think I can do it by using utilities/ZODBTools/fsdump.py and grepping the output. Is there an easier way? -- Paul Winkler http://www.slinkp.com Look! Up in the sky! It's QUASI GUZZLING DOG! (random hero from isometric.spaceninja.com)
On Wednesday 28 January 2004 19:12, Paul Winkler wrote:
Given an OID for an object in the zodb, can I ...
- find out what revisions are still in the zodb?
- find out what transactions modified this object? I think I can do it by using utilities/ZODBTools/fsdump.py and grepping the output. Is there an easier way?
Use the storage's history() method? -- Toby Dickenson
On Thu, Jan 29, 2004 at 10:44:40AM +0000, Toby Dickenson wrote:
On Wednesday 28 January 2004 19:12, Paul Winkler wrote:
Given an OID for an object in the zodb, can I ...
- find out what revisions are still in the zodb?
- find out what transactions modified this object? I think I can do it by using utilities/ZODBTools/fsdump.py and grepping the output. Is there an easier way?
Use the storage's history() method?
err.. umm... yeah I knew that ;-) thanks! -- Paul Winkler http://www.slinkp.com Look! Up in the sky! It's THE SAND PAINT CHIP! (random hero from isometric.spaceninja.com)
Hi Paul, Paul Winkler schrieb:
Given an OID for an object in the zodb, can I ...
- find out what revisions are still in the zodb?
- find out what transactions modified this object? I think I can do it by using utilities/ZODBTools/fsdump.py and grepping the output. Is there an easier way?
From which context? If inside Zope, just look how OFS.History implemented it. Regards Tino Wildenhain
participants (3)
-
Paul Winkler -
Tino Wildenhain -
Toby Dickenson