Re: [Zope-dev] Re: [Zope3-dev] Google Summer of Code

2007-03-14 Thread Martijn Pieters
On 3/14/07, Baiju M [EMAIL PROTECTED] wrote: I think you added (by mistake?) this link instead: http://pyre.third-bit.com/blog/archives/863.html Whoops, indeed, that's not the right one. Blame late night inattention, brought on by a better half asking when I was going to be done. ;) I found

Re: [Zope-dev] Re: [Zope3-dev] Google Summer of Code

2007-03-14 Thread Baiju M
Hi, I have added a new page under this wiki page: http://wiki.zope.org/zope3/SummerOfCode2007 to motivate students. See the page here: http://wiki.zope.org/zope3/Zope3UsingPython25 Please edit/correct that page details. So far only four ideas are added to the wiki page. No more ideas to add

[Zope3-dev] Re[2]: [Zope3-Users] correct display of Text field in a view

2007-03-14 Thread Adam Groszer
Hello Ivan, I don't think that you'll need IMultiLineText and MultiLineText. That's why IText and Text are there for. You'll have to register the widget for IText or use it directly in your view with CustomWidgetFactory. In fact it's a good question why Z3 doesn't provide such a widget for Text.

[Zope3-dev] Community opinion about search+filter

2007-03-14 Thread Adam Groszer
Hello, I'd like to ask your opinion, your experiences about searching and filtering in quite large object DBs. We need to add search and filter functions to our current app, where the user might be able to create quite _sophisticated_ filter criterias. (The app is a pure Z3 app, subject is

Re: [Zope3-dev] Community opinion about workflow engine

2007-03-14 Thread Philipp von Weitershausen
Stephan Richter wrote: class Application(Contained, Persistent): ... @apply def stati(): See IApplication def getStati(self): return self._stati def setStati(self, value): removed = set(self._stati) - set(value) added =

Re: [Zope3-dev] Community opinion about search+filter

2007-03-14 Thread Baiju M
I think general questions can be posted to zope3-users list. No need to cross-post it to zope3-dev list also. Regards, Baiju M ___ Zope3-dev mailing list Zope3-dev@zope.org Unsub:

[Zope3-dev] Re: [Zope3-Users] Community opinion about search+filter

2007-03-14 Thread Christophe Combelles
Adam Groszer a écrit : Hello, I'd like to ask your opinion, your experiences about searching and filtering in quite large object DBs. We need to add search and filter functions to our current app, where the user might be able to create quite _sophisticated_ filter criterias. (The app is a pure