[ZODB-Dev] Undoing a committed transaction

2005-04-13 Thread Stefan Milenkovic
Hello, I need some help for undoing a committed transaction. I have a ZODB standalone package (working with some Python code), a data.fs file containing some transactions and a ZEO ClientStorage (associated of course with a ZEO StorageServer) as storage. I want to undo a committed transaction (or

Re: [ZODB-Dev] Hanging ZEO-client hangs all other ZEO-clients?

2005-04-13 Thread Chris Withers
Dario Lopez-Kästen wrote: I am in need for some help. We are using Zope 2.6.2, DBTab on the clients (4 of them on 2 servers) and Directory storage on teh ZEO side. Out of interest, why are you using DirectoryStorage? here is where the wirdness starts. It seems that ALL the clients stop responding

RE: [ZODB-Dev] Encoded strings as keys for OOBTree in 2.7.3

2005-04-13 Thread Tim Peters
[Chris Withers] > Interesting problem with an OOBTree, in this case the _index attribute of > a FieldIndex in a Zope 2.7.3 instance. > > doing self._index.get('tést') (you can get the é by doing Alt Gr - e ;-) > resulted in a UnicodeDecodeError. > > The bizarre thing is that: > > t = OOBTree() > t.

[ZODB-Dev] Encoded strings as keys for OOBTree in 2.7.3

2005-04-13 Thread Chris Withers
Hi All, Interesting problem with an OOBTree, in this case the _index attribute of a FieldIndex in a Zope 2.7.3 instance. doing self._index.get('tést') (you can get the é by doing Alt Gr - e ;-) resulted in a UnicodeDecodeError. The bizarre thing is that: t = OOBTree() t.get('tést') returns None

Re: [ZODB-Dev] Sorting IOBtree items

2005-04-13 Thread Thomas Güttler
Am Mittwoch, 13. April 2005 12:19 schrieb Pierre-Yves Delens: > Bonjour, Guten Tag, > I'm developing my first ZODB app (without Zope). > I need to display sorted items from a BTree. > Sorting should happen by one of the fields value, not by key order. You can use "decorate sort undecorate". Ther

[ZODB-Dev] Sorting IOBtree items

2005-04-13 Thread Pierre-Yves Delens
Bonjour, I'm developing my first ZODB app (without Zope). I need to display sorted items from a BTree. Sorting should happen by one of the fields value, not by key order. Reading Btrees doc and googling about Btrees + IndexedCatalog didn't help me. I must admit that until now I didn't use IndexedC