On Monday 12 Aug 2002 3:47 pm, smoerk@gmx.de wrote:
I want to merge two Zope instances with different Data.fs to one. First thing I tried was Export and Import the objects from one instance to the other. Problem: the dates and undo information are not preserved.
Is it possible to "mount" two Data.fs
yes....
and copy from one Data.fs to the other?
...but that would update the timestamps and destroy the undo log, just like export.
Or how could I preserve undo and the modify date of the objects?
Thats not going to be possible without some hacking. Your two databases likely have conflicting oids (object ids are only unique within the database). You would need to write some code to reassign oids, and interleave transactions.
I couldn't find anything on zope.org and in the mailing list archive.