[Zope3-dev] Re: zope.interface.Interface.(isImplementedBy vs implementedBy)

2006-09-21 Thread Chris Withers
Philipp von Weitershausen wrote: I think that after eggifying Zope 3 in 3.4 and introducing some features in Zope 2.11 that makes us not depend on Zope2isms like Acquisition (while they'd still be available for those who want to use them), we should invest into the Zope 5 vision: explode Zope

[Zope3-dev] Re: zope.interface.Interface.(isImplementedBy vs implementedBy)

2006-09-21 Thread Philipp von Weitershausen
Chris Withers wrote: Philipp von Weitershausen wrote: I think that after eggifying Zope 3 in 3.4 and introducing some features in Zope 2.11 that makes us not depend on Zope2isms like Acquisition (while they'd still be available for those who want to use them), we should invest into the Zope 5

[Zope3-dev] Re: Is this a bug of HTTP response's head handling? (publisherhttpserver.py)

2006-09-21 Thread Philipp von Weitershausen
Simon Hang wrote: How about below changes? There aren't many of us who know the zope.server code that well, unfortunately. This is one of the reasons we want to get out of the server business. That said, it would *much* easier to understand what you're trying to do if you provided

[Zope3-dev] Re: [Zope3-Users] Re: Is this a bug of HTTP response's head handling? (publisherhttpserver.py)

2006-09-21 Thread Simon Hang
Thanks Philipp, here is the unified diffs. --- httptask.py.orig Fri Jan 06 02:15:48 2006+++ httptask.py Thu Sep 21 17:31:17 2006@@ -126,6 +126,15 @@ else: close_it = 1 elif version == '1.1':+ #modified by Simon + thisflag = False+ for each in self.accumulated_headers:+ if each.lower() ==

[Zope3-dev] Re: zcml questions

2006-09-21 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Philipp von Weitershausen wrote: Chris Withers wrote: Philipp von Weitershausen wrote: AFAIK, getUtilitiesFor is not supposed to order these in any way. While the returned iterator does find them in a reproduceable order due to the

[Zope3-dev] Re: zcml questions

2006-09-21 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Philipp von Weitershausen wrote: Tres Seaver wrote: How should I do things such that they can do that? I'm just wondering whether you really need the disabling feature. I've wanted it. Okay :). My major beef with the way we are *using* ZCML

[Zope3-dev] Re: [z3-five] zcml questions

2006-09-21 Thread Jim Fulton
On Sep 21, 2006, at 9:15 AM, Tres Seaver wrote: I've wanted it. My major beef with the way we are *using* ZCML now is that we expect package authors to provide policy-laden configuration for their packages (sensible defaults) but provide no means for the admin to reuse that configuration

Re: [Zope3-dev] Re: zcml questions

2006-09-21 Thread Stephan Richter
On Thursday 21 September 2006 09:15, Tres Seaver wrote: I've wanted it.  My major beef with the way we are *using* ZCML now is that we expect package authors to provide policy-laden configuration for their packages (sensible defaults) but provide no means for the admin to reuse that

Re: [Zope3-dev] Re: zcml questions

2006-09-21 Thread Jim Fulton
On Sep 21, 2006, at 11:31 AM, Stephan Richter wrote: On Thursday 21 September 2006 09:15, Tres Seaver wrote: I've wanted it. My major beef with the way we are *using* ZCML now is that we expect package authors to provide policy-laden configuration for their packages (sensible defaults)

Re: [Zope3-dev] Re: zcml questions

2006-09-21 Thread Stephan Richter
On Thursday 21 September 2006 11:52, Jim Fulton wrote: I have a feeling that xpath is overkill. I still think that for ZCML XPath is a good approach. People are familiar with it and our designers could just use it presumably. It alsoi won't work for actions defined in Python. I think this is

RE: Re[4]: [Zope3-dev] possible bug in zope.wfmc

2006-09-21 Thread Roger Ineichen
Hi Adam Hi Roger, Tuesday, September 19, 2006, 12:08:20 PM, you wrote: Update - Final is guarded by review_result == 'accepted' Update - Issue is guarded by transitionName == 'update_issue' Update - Review is guarded by transitionName == 'update_review' RI Is this (Update - Final)

[Zope3-dev] Re: [Zope3-Users] Re: Is this a bug of HTTP response's head handling? (publisherhttpserver.py)

2006-09-21 Thread Simon Hang
Philipp, Sorry for being lazy, and thanks for the tips. Here is my update version. --- httptask.py.orig Fri Jan 06 02:15:48 2006+++ httptask.py Fri Sep 22 09:13:48 2006@@ -126,6 +126,11 @@ else: close_it = 1 elif version == '1.1':+ #modified by Simon + if 'connection: close' in (header.lower() for