Re: [Metakit] Mailing lists out of order

2005-01-29 Thread Jean-Claude Wippler
Well, the mailing list web interface is working again, yippie! http://www.mail-archive.com/mailman-users@python.org/msg29743.html [...] I'll just assume it'll be addressed over the coming days and come down as an update. The exact explanation. With a 10 sec fix:

[Metakit] locking on a record level

2005-01-29 Thread Eric S. Johansson
having read the documentation I think I know the answer to this question (which is no) but I want to ask you make sure I'm not missing something anyway. I need a database which can be accessed from multiple processes, lock on a record level, and survive. :-) The data isn't very much or

[Metakit] Python Patch for inserting a view into a view

2005-01-29 Thread Brian Kelley
At long last, attached is the diff and the new PyView.cpp file that allows the python interface to insert a view into another view. usage: view.insert(index, view2) is now supported. Properties that don't exist in view but exist in view2 will be added to view. example: import metakit st =

Re: [Metakit] Python Patch for inserting a view into a view

2005-01-29 Thread Jean-Claude Wippler
Brian Kelley wrote: At long last, attached is the diff and the new PyView.cpp file that allows the python interface to insert a view into another view. usage: view.insert(index, view2) is now supported. Properties that don't exist in view but exist in view2 will be added to view. example: import