Re: [Zope3-dev] formlib addForm

2005-09-26 Thread Gary Poster
On Sep 25, 2005, at 3:58 PM, Christian Lueck wrote: ... zope.app.container.interfaces.IAdding seems most promising -- but what to do with it? Question: Is it right to register a formlib-based addview with the browser:page-directive? Yep. How do I get the + ? ;) The '+' is an

RE: [Zope3-dev] browserDefault uses '@@' for containers

2005-09-26 Thread Garrett Smith
On , [EMAIL PROTECTED] wrote: Hi together Behalf Of Fred Drake Sent: Friday, September 23, 2005 4:13 AM To: Gary Poster Cc: Garrett Smith; zope3-dev Subject: Re: [Zope3-dev] browserDefault uses '@@' for containers On 9/22/05, Gary Poster [EMAIL PROTECTED] wrote: I believe that the

[Zope3-dev] zope.app.interpreter

2005-09-26 Thread netlander
Hi, Why module zope.app.interpreter there are in SVN repository, but not included in releases 3.1.0c2, 3.1.0c3 ? It's discrimination policy against scriptwriters? :-) - Regards, Netlander ___ Zope3-dev mailing list Zope3-dev@zope.org

Re: [Zope3-dev] A Call for Slaves

2005-09-26 Thread Chris Withers
Tim Peters wrote: [Chris Withers] Oh, sorry, I meant how do you select the right version of VC++? You don't; distutils does; if you use a Python 2.3 on Windows, its distutils will use VC6 to compile C extensions; if you use a Python 2.4 on Windows, its distutils will use VC7. It's all

RE: [Zope3-dev] browserDefault uses '@@' for containers

2005-09-26 Thread Roger Ineichen
Hi Garrett [...] I'm running into a bug with this behavior. If I call myContainer/@@ or myContainer/ and get my registred index.html (template) view back. There is the following part rendered into the template 'lt;/'. Does this extra text show up even if your template is empty?

Re: [Zope3-dev] A Call for Slaves

2005-09-26 Thread Tim Peters
[Chris Withers] So, are these two what I'm after for 6 and 7 respectively? http://www.amazon.co.uk/exec/obidos/ASIN/B4U6ZC/qid=1127557337/sr=1-4/ref=sr_1_3_4/026-8900047-5040402 http://www.amazon.co.uk/exec/obidos/ASIN/B89GKV/qid=1127557337/sr=2-1/ref=sr_2_3_1/026-8900047-5040402

Re: [Zope3-dev] zope.app.interpreter

2005-09-26 Thread Stephan Richter
On Monday 26 September 2005 14:47, netlander wrote: Why module zope.app.interpreter there are in SVN repository, but not included in releases 3.1.0c2, 3.1.0c3 ? I think we did not release it in 3.0 either. Usually when something is not in the core distribution, we are not ready to commit ot

[Zope3-dev] _notifyOfCopyTo

2005-09-26 Thread Florent Guillaume
Zope 2, when it copies/moves an object, calls ob._notifyOfCopyTo to allow it to veto the copy *before* it is done if it doesn't like the destination container. In Zope 3, is it worthwhile to have a kind of ObjectWillBeCopied/ Added event for that, or do you guys feel that this kind of

[Zope3-dev] event before delete

2005-09-26 Thread Florent Guillaume
More generally, there's a difference in philosophy between Zope 2 and Zope 3 here: - Zope 2 calls manage_beforeDelete *before* the removal, - Zope 3 sends IObjectRemovedEvent *after* the removal. This will make some porting / compatibility more difficult. I may add an IObjectWillBeRemovedEvent

Re: [Zope3-dev] _notifyOfCopyTo

2005-09-26 Thread Stephan Richter
On Monday 26 September 2005 13:36, Florent Guillaume wrote: In Zope 3, is it worthwhile to have a kind of ObjectWillBeCopied/ Added event for that, or do you guys feel that this kind of vetoing   should be done by simply subscribing to ObjectAddedEvent or one of   its friends? I think this is

Re: [Zope3-dev] event before delete

2005-09-26 Thread Fred Drake
On 9/26/05, Florent Guillaume [EMAIL PROTECTED] wrote: This will make some porting / compatibility more difficult. I may add an IObjectWillBeRemovedEvent in Five for that, but maybe it makes sense to have it in pure Zope 3 ? I think it does. -Fred -- Fred L. Drake, Jr.fdrake at

Re: [Zope3-dev] _notifyOfCopyTo

2005-09-26 Thread Gary Poster
On Sep 26, 2005, at 2:10 PM, Stephan Richter wrote: On Monday 26 September 2005 13:36, Florent Guillaume wrote: In Zope 3, is it worthwhile to have a kind of ObjectWillBeCopied/ Added event for that, or do you guys feel that this kind of vetoing should be done by simply subscribing to

Re: [Zope3-dev] event before delete

2005-09-26 Thread Jim Fulton
Florent Guillaume wrote: More generally, there's a difference in philosophy between Zope 2 and Zope 3 here: - Zope 2 calls manage_beforeDelete *before* the removal, - Zope 3 sends IObjectRemovedEvent *after* the removal. This will make some porting / compatibility more difficult. I may add an

RE: [Zope3-dev] Repository broken

2005-09-26 Thread Roger Ineichen
A small note about TortoiseSVN and svn+ssh connection on windows. The TortoiseSVN version 1.2.3 is broken, see: http://tortoisesvn.tigris.org/ChangeLog.txt there is a new bugfixed version 1.2.4 at: http://sourceforge.net/project/showfiles.php?group_id=138498package_id=1519 48 Regards Roger

Re: [Zope3-dev] formlib addForm

2005-09-26 Thread Christian Lueck
Gary Poster wrote: On Sep 25, 2005, at 3:58 PM, Christian Lueck wrote: ... zope.app.container.interfaces.IAdding seems most promising -- but what to do with it? Question: Is it right to register a formlib-based addview with the browser:page-directive? Yep. How do I get the + ? ;)