Re: [Zope3-Users] Weird error for a certain named attribute

2007-10-23 Thread Maken Seteva
Hello Tom, Thank you very much, your pointers helped me to solving it. Tags was indexed with a TextIndex using my adapter FooTags which had a function to join the list: def getSearchableList(self): s = ' '.join(self.context.tags) #if s == '': #return None

Re: [Zope3-Users] Weird error for a certain named attribute

2007-10-23 Thread Thierry Florac
Le mardi 23 octobre 2007 à 14:11 +0200, Maken Seteva a écrit : Btw, is there an already existing way to index a field with a list of strings so you can do a search on a particular element in the list? It's a little cumbrsome writing an adapter for each field that has a list of strings to

[Zope3-Users] Weird error for a certain named attribute

2007-10-18 Thread Maken Seteva
Hello, I have a very strange error that I cannot understand. I get an error for one of my attribute only when it is named a certain name! It seems like there is an old implementation of it that is haunting in the background, how is this possible? This cursed name is called tags. This

Re: [Zope3-Users] Weird error for a certain named attribute

2007-10-18 Thread Tom Dossis
On 18/10/2007, at 11:58 PM, Maken Seteva wrote: Hello, I have a very strange error that I cannot understand. I get an error for one of my attribute only when it is named a certain name! It seems like there is an old implementation of it that is haunting in the background, how is this