[Zope-dev] Problem testing CatalogAware class

2002-06-07 Thread Vincenzo Di Somma
Hi all, does someone knows about problems testing CatalogAware subclasses ? I have unit tests for my class and work well, but if I subclass also from CatalogAware I receive: File /usr/lib/zope/lib/python/OFS/ObjectManager.py, line 267, in _setObject object.manage_afterAdd(object, self)

Re: [Zope-dev] Problem testing CatalogAware class

2002-06-07 Thread Steve Alexander
Vincenzo Di Somma wrote: Hi all, does someone knows about problems testing CatalogAware subclasses ? I have unit tests for my class and work well, but if I subclass also from CatalogAware I receive: Don't use CatalogAware, use CatalogPathAware. -- Steve Alexander

[Zope-dev] Project manager ala Sourceforge in Zope ??

2002-06-07 Thread Thomas Weholt
Hi, I need something similar to Sourceforge ( project manager with docs, simple bug-reporting/issue-tracking, release-manager etc. ), implemented as a product in Zope. The zope.org-homepage has something similar. Is the code available? Does anybody know of any product like this? I'm just

Re: [Zope-dev] ACTION: 2.6 project status updates...

2002-06-07 Thread Anthony Baxter
I haven't yet finished of the CallProfiler bits, but it's a long weekend here, and I plan to attack and finish it over this weekend. I've had more of a go at the refresh problem, and I think I'll just make sure there's no refresh.txt for now :( Anthony -- Anthony Baxter [EMAIL PROTECTED]

Re: [Zope-dev] ACTION: 2.6 project status updates...

2002-06-07 Thread Stefan H. Holek
I am quite positive that when you put __refresh_module__ = 0 into your module it will not be refreshed. Stefan --On Freitag, 07. Juni 2002 21:37 +1000 Anthony Baxter [EMAIL PROTECTED] wrote: I haven't yet finished of the CallProfiler bits, but it's a long weekend here, and I plan to

Re: [Zope-dev] Project manager ala Sourceforge in Zope ??

2002-06-07 Thread Chris McDonough
Ken Manheimer's Collector works for the bug tracking piece (see http://collector.zope.org). Kapil Thangavelu's Gideon may be helpful as a release manager: http://www.zope.org/Members/k_vertigo/Products/Gideon. HTH, - C On Fri, 2002-06-07 at 05:44, Thomas Weholt wrote: Hi, I need

Re: [Zope-dev] Using propertysheets?

2002-06-07 Thread Lennart Regebro
From: peter sabaini [EMAIL PROTECTED] I think it should work well with PropertyManager Thanks, I got a lot further now. Still some things before I'm done though: - Define your own edit form How do I do that? The default edit form /propertysheets/name/manage works well, but doesn't have any

RE: [Zope-dev] ACTION: 2.6 project status updates...

2002-06-07 Thread Brian Lloyd
The appointed time is upon us :) We'd like to shoot for a 2.6 alpha 1 release at the beginning of next week (around the 10th). Eeek - six days before a hard deadline is less notice than I would have liked. What?! It's a month past the hard deadline I gave at the beginning! :^)

[Zope-dev] Re: [Zope-dev]Project manager ala Sourceforge in Zope ??

2002-06-07 Thread Simon Michael
And you could take a look at http://zwiki.org/ZwikiTracker . Cheers -Simon ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists -

[Zope-dev] Wrong length for http requests!

2002-06-07 Thread Joachim Werner
Hi! I am getting the following results from an ab (Apache benchmark) run against a Zope site: Concurrency Level: 20 Time taken for tests: 11.862 seconds Complete requests: 40 Failed requests:23 (Connect: 0, Length: 23, Exceptions: 0) Total transferred: 1517831 bytes

Re: [Zope-dev] Wrong length for http requests!

2002-06-07 Thread Andreas Jung
Maybe the headers are different? Try to increase the verbosity level for ab to get the output of the headers and the payload. Maybe you can find something there. -aj - Original Message - From: Joachim Werner [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, June 07, 2002 15:03

Re: [Zope-dev] Wrong length for http requests!

2002-06-07 Thread Joachim Werner
- Original Message - From: Joachim Werner [EMAIL PROTECTED] To: Andreas Jung [EMAIL PROTECTED] Sent: Friday, June 07, 2002 9:31 PM Subject: Re: [Zope-dev] Wrong length for http requests! Hi! I tried with more verbosity. The result is that the headers' Content_Length differs. I

[Zope-dev] Zope stops responding (Threads still present)

2002-06-07 Thread Ahsan Imam
Hello All, Zope stops responding to requests, however when I check the zope process I see seven threads plus watchdog thread. ( ps auxww | grep z2 ). I am not sure why it stops responding. Actions taken to diagnose the problem: 1) I added the -M option and started logging to the debug

Re: [Zope-dev] Wrong length for http requests!

2002-06-07 Thread Andreas Jung
When I run ab with -v20 it prints out the complete headers for *every* HTTP request including the payload. Redirect the output and as first step I would grep for 'Content-Length'. They should be the same for every single request... -aj - Original Message - From: Joachim Werner [EMAIL

Re: [Zope-dev] Wrong length for http requests!

2002-06-07 Thread Joachim Werner
Hi! I finally got it: It's not Zope that causes any trouble, it's ab. It seems to expect identical sizes for the pages retrieved. What I checked was commit a change to a test page (which was absolutely static) in the middle of an ab run. The result was almost 55% failed requests ... Cheers

Re: [Zope-dev] Zope stops responding (Threads still present)

2002-06-07 Thread Leonardo Rochael Almeida
On Fri, 2002-06-07 at 16:36, Ahsan Imam wrote: Hello All, Zope stops responding to requests, however when I check the zope process I see seven threads plus watchdog thread. ( ps auxww | grep z2 ). I am not sure why it stops responding. Try to follow the debuging procedure outlined

Re: [Zope-dev] __setattr__ and acquisition ( was RE: __getattr__ and acquisition)

2002-06-07 Thread Julien Jalon
Nicholas Henke [EMAIL PROTECTED] wrote: Given the following code: I can see why access to self.thing fails in Inner::__setattr__, but the question is how do I do that -- can I not use __setattr__ and have to use a setAttr that is accessed via O.I.setAttr('help','me rhonda') ? Nic import