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] How to get at the URL as entered in the browser?

2007-10-23 Thread Yuan HOng
Hi, list, Is it possible to retrieve the URL the user enters in the browser location box? The request's getURL method seems to return the traversed URL, including the default view name. In particular, I have a custom traverser for my object which extracts certain parameters from the URL path