Re: [Zope3-dev] hurry.query in Zope 3.2?

2005-10-28 Thread Martijn Faassen

Hey,

Martijn Faassen wrote:

Would there be any interest in merging hurry.query into Zope 3.2?


Apparently not, or at least people are lacking in time, which is 
understandable as I do too. :) I'll try in more advance for Zope 3.3. We 
find it very useful here at Infrae, but of course it works just fine as 
a stand-alone library too.


Regards,

Martijn
___
Zope3-dev mailing list
Zope3-dev@zope.org
Unsub: http://mail.zope.org/mailman/options/zope3-dev/archive%40mail-archive.com



[Zope3-dev] Re: [Zope3-Users] Freeze approaching quickly

2005-10-28 Thread Dmitry Vasiliev

Stephan Richter wrote:

Hi everyone,

with October winding down, the freeze on the trunk is coming quickly. So, if 
you have any outstanding work, now is the time to get it done. During the 
last week I have monitored the proposals and branches a bit and I think most 
people are done with their work. 

After Michael told me that WebDAV has to wait until 3.3., the only outstanding 
projects are:


- Dimitry (hdima): Merge the password manager branch. I know he is close, so I 
am not worried.


Done

Once the feature freeze is complete, I would like to keep the trunk frozen for 
about a month, so that the contribution bar for bug fixes remains as low as 
possible. And bugs we have plenty. As people start using Zope 3, we have had 
quiet a number of reports, some of which are really serious, like i18nextract 
being broken.


Thus I propose two bug days:

- Firday, November 4, 2005

- Friday, December 2, 2005

What do you guys think? Would people commit time on those days to the effort?


I don't know about those days but now I've just switched myself in the 
bug-fixing mode untill the release. :-)


--
Dmitry Vasiliev (dima at hlabs.spb.ru)
http://hlabs.spb.ru
___
Zope3-dev mailing list
Zope3-dev@zope.org
Unsub: http://mail.zope.org/mailman/options/zope3-dev/archive%40mail-archive.com



Re: [Zope3-dev] hurry.query in Zope 3.2?

2005-10-28 Thread Stephan Richter
On Friday 28 October 2005 06:18, Martijn Faassen wrote:
 Martijn Faassen wrote:
  Would there be any interest in merging hurry.query into Zope 3.2?

 Apparently not, or at least people are lacking in time, which is
 understandable as I do too. :) I'll try in more advance for Zope 3.3. We
 find it very useful here at Infrae, but of course it works just fine as
 a stand-alone library too.

The reason I did not respond was that I don't use catalogs myself yet, so 
there is no need on my end. I was hoping that other people would speak up, 
especially the ones using catalogs. On the other hand putting it in the trunk 
might give it some needed exposure.

Regards,
Stephan
-- 
Stephan Richter
CBU Physics  Chemistry (B.S.) / Tufts Physics (Ph.D. student)
Web2k - Web Software Design, Development and Training
___
Zope3-dev mailing list
Zope3-dev@zope.org
Unsub: http://mail.zope.org/mailman/options/zope3-dev/archive%40mail-archive.com



Re: [Zope3-dev] Re: [Zope3-Users] Freeze approaching quickly

2005-10-28 Thread Stephan Richter
On Friday 28 October 2005 06:55, Dmitry Vasiliev wrote:
  - Dimitry (hdima): Merge the password manager branch. I know he is close,
  so I am not worried.

 Done

Thanks a lot!

  Thus I propose two bug days:
 
  - Firday, November 4, 2005
 
  - Friday, December 2, 2005
 
  What do you guys think? Would people commit time on those days to the
  effort?

 I don't know about those days but now I've just switched myself in the
 bug-fixing mode untill the release.

Yipee! I know you don't need bug days to fix bugs. You have bug months! :-)

Regards,
Stephan
-- 
Stephan Richter
CBU Physics  Chemistry (B.S.) / Tufts Physics (Ph.D. student)
Web2k - Web Software Design, Development and Training
___
Zope3-dev mailing list
Zope3-dev@zope.org
Unsub: http://mail.zope.org/mailman/options/zope3-dev/archive%40mail-archive.com



Re: [Zope3-dev] hurry.query in Zope 3.2?

2005-10-28 Thread Jeff Shell
I love hurry.query. Whether it's in the core or not doesn't phase me,
but it is really really helpful. We got bit by not realizing that
FieldIndex queries passed directly to the catalog/index had a low and
high range. It was a small bite. But it took us a while to figure out
why searching for 'summer' pages included 'winter' ones, but searching
for 'winter' pages only returned winter. So we put in hurry.query. And
were able to do it without depending on zc.catalog. It made the
catalog experience a lot nicer.

I'd put my vote behind inclusion. While the catalog is certainly
cleaner and easier to understand than the Zope 2 catalog, querying it
is still kindof a pain, which is mentioned in
zope.index.interfaces.IIndexSearch

TODO
This is somewhat problemetic. It means that application
code that calls apply has to be aware of the
expected query type. This isn't too much of a problem now,
as we have no more general query language nor do we have
any sort of automatic query-form generation.

It would be nice to have a system later for having
query-form generation or, perhaps, sme sort of query
language. At that point, we'll need some sort of way to
determine query types, presumably through introspection of
the index objects.

hurry.query seems to fill in this hole.

On 10/24/05, Martijn Faassen [EMAIL PROTECTED] wrote:
 Hi there,

 Would there be any interest in merging hurry.query into Zope 3.2?

 What it does:

 hurry.query - higher level query system built on top of the Zope 3
catalog. Some inspiration came from Dieter Maurer's
AdvancedQuery. See src/hurry/query/query.txt for
documentation.

 Here's the code:

 http://codespeak.net/svn/z3/hurry/trunk/src/hurry/query/

 And here's a doctest:

 http://codespeak.net/svn/z3/hurry/trunk/src/hurry/query/query.txt

 Of course, it probably needs a review and adaptations before it's
 accepted, and time until the feature freeze in november is short. It
 would be a very useful addition to Zope 3's featureset, however. It
 exposes features of various indexes that the normal catalog API does not
 expose, or if so, only very obscurely. :) Now that I think of it,
 exposing the ZCTextIndex properly with the various features involved may
 need the most work.

 If there's interest, I'd really appreciate volunteers for putting up a
 proposal on the wiki and integrating it into the codebase. This way it'd
 get a review by that person. If it'd be up to myself I likely won't have
 time...

 By the way, is zc.catalog up for merging with Zope 3.2, or won't this
 happen yet? hurry.query has a dependency on zc.catalog, though I believe
   I succeeded in keeping this optional.

 Regards,

 Martijn
 ___
 Zope3-dev mailing list
 Zope3-dev@zope.org
 Unsub: http://mail.zope.org/mailman/options/zope3-dev/eucci.group%40gmail.com


___
Zope3-dev mailing list
Zope3-dev@zope.org
Unsub: http://mail.zope.org/mailman/options/zope3-dev/archive%40mail-archive.com



[Zope3-dev] buildbot failure in Zope trunk 2.4 Linux remy

2005-10-28 Thread buildbot
The Buildbot has detected a failed build of Zope trunk 2.4 Linux remy.

Buildbot URL: http://buildbot.zope.org/

Build Reason: The web-page 'force build' button was pressed by '': 

Build Source Stamp: None
Blamelist: 

BUILD FAILED: failed compile

sincerely,
 -The Buildbot

___
Zope3-dev mailing list
Zope3-dev@zope.org
Unsub: http://mail.zope.org/mailman/options/zope3-dev/archive%40mail-archive.com