[Zope3-dev] RE: ObjectMover events

2005-12-01 Thread Roger Ineichen
Hi Florent > -Original Message- > From: Florent Guillaume [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 01, 2005 4:24 PM > To: [EMAIL PROTECTED] > Cc: zope3-dev > Subject: Re: ObjectMover events > > Florent Guillaume wrote: > >> I dont' know if this affect the events itself but t

[Zope3-dev] RFC: Handling HTTP DELETE errors

2005-12-01 Thread Marius Gedminas
Hi folks, When you do HTTP DELETE on objects that do not explicitly support deletion, the default view (zope.app.http.delete.DELETE) tries to adapt self.context.__parent__ to IWriteDirectory, which raises a TypeError which is never caught. I suggest changing the view to raise MethodNotAllowed inst

[Zope3-dev] Re: ObjectMover events

2005-12-01 Thread Florent Guillaume
Florent Guillaume wrote: I dont' know if this affect the events itself but there is also a problem in the ObjectMover. If you use the ObjectMover from copypastemove on IDependable (registered) objects, it's not possible to move a object because of the order the move process is implemented.

Re: [Zope3-dev] Bugday on December 2 (yes, tomorrow)

2005-12-01 Thread Stephan Richter
On Thursday 01 December 2005 09:50, Christian Theune wrote: > I'll start about 12am CET. I'm not sure if there would be a seperate > channel than #zope3-dev for this event. Let's keep it on #zope3-dev. Here is a third person acknowledging the date. :-) Regards, Stephan -- Stephan Richter CBU Ph

[Zope3-dev] Bugday on December 2 (yes, tomorrow)

2005-12-01 Thread Christian Theune
Hi, I'm a bit confused but I'll just go forward, because I was motivated by #zope3-dev. Tomorrow was a date in question for a bug day. Two people acknowledged it and I just realized that Zope 3.2 is already at risk for falling behind schedule. Therefor I'm willing to spend my time tomorrow to wor

[Zope3-dev] X-zope-handle-errors header

2005-12-01 Thread Chris Withers
Hi All, Do we want Zope to always respond to this header? Yes, it's helpful for testing, but surely it risks information disclosure vulnerabilities or worse if used on a production application? cheers, Chris -- Simplistix - Content Management, Zope & Python Consulting - http://www

[Zope3-dev] buildbot failure in Zope3 trunk 2.4 Linux tlotze

2005-12-01 Thread buildbot
The Buildbot has detected a failed build of Zope3 trunk 2.4 Linux tlotze. Buildbot URL: http://buildbot.zope.org/ Build Reason: changes Build Source Stamp: 1889 Blamelist: mgedmin BUILD FAILED: failed test_2 sincerely, -The Buildbot ___ Zope3-dev ma

[Zope3-dev] buildbot failure in Zope3 trunk 2.4 Linux zc-buildbot

2005-12-01 Thread buildbot
The Buildbot has detected a failed build of Zope3 trunk 2.4 Linux zc-buildbot. Buildbot URL: http://buildbot.zope.org/ Build Reason: changes Build Source Stamp: 1889 Blamelist: mgedmin BUILD FAILED: failed test_2 sincerely, -The Buildbot ___ Zope3-d

Re: [Zope3-dev] zope.testbrowser.browser problem

2005-12-01 Thread Gary Poster
On Dec 1, 2005, at 5:46 AM, Chris Withers wrote: Gary Poster wrote: I have a form as follows: ... ... Now, I do the following with a zope.testbrowser.browser: browser.getForm(name='form_name').getControl(' Do Something ').click() However, the value of REQUEST.form['action'] in aPyth

Re: [Zope-dev] Re: [Zope3-dev] RFC: Reunite Zope 2 and Zope 3 in the source code repository

2005-12-01 Thread Gary Poster
On Nov 30, 2005, at 2:18 PM, Chris Withers wrote: Gary Poster wrote: Zope 2 depends on Zope 3, via Five. Zope 3 does not depend on Zope 2. A very good point, but one which makes me feel that Zope 2 shouldn't be merged in with Zope 3 ;-) Actually, yes, all of my points were made to that

[Zope3-dev] ObjectMover events

2005-12-01 Thread Florent Guillaume
I dont' know if this affect the events itself but there is also a problem in the ObjectMover. If you use the ObjectMover from copypastemove on IDependable (registered) objects, it's not possible to move a object because of the order the move process is implemented. --- target[new_name] = obj

Re: [Zope3-dev] zope.testbrowser.browser problem

2005-12-01 Thread Chris Withers
Gary Poster wrote: I have a form as follows: ... ... Now, I do the following with a zope.testbrowser.browser: browser.getForm(name='form_name').getControl(' Do Something ').click() However, the value of REQUEST.form['action'] in aPythonScript is " Go ", not " Do Something ", as I'd ex