RE: [Zope-dev] memory leak

2001-04-11 Thread Marco Nova
have you checked the debug page in the control panel and noted any refcounts increasing? Class April 10, 2001 9:17 am April 11, 2001 8:34 am Products.ParsedXML.DOM.Core.Text 3241 27318 +24077 Products.ParsedXML.DOM.Core.Element 1777 14493 +12716

Re: [Zope-dev] memory leak

2001-04-11 Thread Chris McDonough
Hi Marco, This looks like a potential bug in either ParsedXML or the code you're using to manipulate the components within ParsedXML. We'd like to find out! ;-) Do you think you can file a collector report with enough information in it to reproduce this behavior? Many thanks, - C -

[Zope-dev] How do I call an HTMLFile in context provided by a path?

2001-04-11 Thread Itai Tavor
Hi, I have a method that receives a path: '/MyApp/SomeSpecialist/some_id/edit_html' and has to call edit_html in the context of some_id. If edit_html is a DTML Method, I can do this: obj = REQUEST.traverse(path) return obj(obj.aq_parent, REQUEST) But when edit_html is an HTMLFile

RE: [Zope-dev] memory leak

2001-04-11 Thread Marco Nova
-Original Message- From: Chris McDonough [mailto:[EMAIL PROTECTED]] Sent: mercoled 11 aprile 2001 9.04 To: Marco Nova; Zope-Dev (E-mail) Subject: Re: [Zope-dev] memory leak This looks like a potential bug in either ParsedXML or the code you're using to manipulate the components

Re: [Zope-dev] Tracking memory leak

2001-04-11 Thread Chris McDonough
Andy, Jim just brought something up... do you have database result caching turned on? If so, what is your number of max results to cache and max time? - Original Message - From: "Andy McKay" [EMAIL PROTECTED] To: "Dyon Balding" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday,

Re: [Zope-dev] memory leak

2001-04-11 Thread Chris McDonough
The bugreport won't do us as much good if we need to set up an elaborate testing environment... it'd be preferable if you could break it down enough to make it happen in a single external method or pythonscript that doesn't rely on external webservers or databases, or what-have-you... but we'll

Re: [Zope-dev] Tracking memory leak

2001-04-11 Thread Andy McKay
If you're talking about ZSQLMethod options then its at the default which is Maximum results to cache 100 Maximum time (sec) to cache 0 Does that mean the first 100 results are being cached for ever? That might do it... Cheers. -- Andy McKay. - Original Message - From: "Chris

Re: [Zope-dev] [ANNOUNCE] Zope Developer's Guide Preview

2001-04-11 Thread Andy McKay
Amos Latteier wrote: I'm proud to announce the first preview release of the Zope Developer's Guide. http://www.zope.org/Documentation/ZDG woot! woot? -- Andy McKay. ___ Zope-Dev maillist - [EMAIL PROTECTED]

Re: [Zope-dev] Tracking memory leak

2001-04-11 Thread Chris McDonough
No, I think this means that caching is turned off entirely. Back to the drawing board. - C - Original Message - From: "Andy McKay" [EMAIL PROTECTED] To: "Chris McDonough" [EMAIL PROTECTED]; "Dyon Balding" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, April 11, 2001 12:35 PM

RE: [Zope-dev] ZODBCA questions...

2001-04-11 Thread Bryan Baszczewski
You may be interested in recent developments: http://www.zope.org/Wikis/DevSite/Proposals/DatabaseStategy/HistoricalRevisi ons/827.44494.7026.26188 I dont know why the DC folks havent stayed on top of ODBC. They should. Plenty of Zope/SQL Server users. -Original Message- From: Mark

Re: [Zope-dev] ZODBCA questions...

2001-04-11 Thread Chris McDonough
You may be interested in recent developments: http://www.zope.org/Wikis/DevSite/Proposals/DatabaseStategy/HistoricalRevisi ons/827.44494.7026.26188 I dont know why the DC folks havent stayed on top of ODBC. They should. Plenty of Zope/SQL Server users. This is true. But it's likely the

[Zope-dev] PLEASE trim cited text!

2001-04-11 Thread Ken Manheimer
I've been watching this for a few days now, holding back, but it's **awful**! *Please* take a few moments to extract relevant portions from cited text, definitely do *not* include the whole thing! (There is no excuse for multiple copies of the footer, usually not an excuse for a single copy.)

RE: [Zope-dev] ActiveState / DC Collaboration

2001-04-11 Thread Brian Lloyd
Will there be an effort to make Zope 2.3.x play with ActivePython 2.0 or is this a longer range goal ... Zope 3.x ??? I know there are alot of other irons in the fire but I am just trying to make some design decisions. The next Zope feature release (2.4.0) will be based on and require

Re: [Zope-dev] PLEASE trim cited text!

2001-04-11 Thread Andy McKay
Sorry I normally try to do that... Cheers. -- Andy McKay. ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists -

Re: [Zope-dev] Tracking memory leak

2001-04-11 Thread Andy McKay
Heres the graphs of Zopes memory usage, if that interests you... the drops are the restarts. -- Andy McKay. memoryused-freebytes-day.gif

RE: [Zope-dev] ZODBCA questions...

2001-04-11 Thread Bryan Baszczewski
This is true. But it's likely the aame reason we dont have an ecommerce module or an XSLT processor or a catalog which allows for easy indexing of pdfs or our own object-relational mapping story, or, or, or, or. It would be naive of me to assume what reason that is, but I just wondered why

RE: [Zope-dev] memory leak

2001-04-11 Thread Dieter Maurer
Marco Nova writes: have you checked the debug page in the control panel and noted any refcounts increasing? Class April 10, 2001 9:17 am April 11, 2001 8:34 am Products.ParsedXML.DOM.Core.Text 3241 27318 +24077 Products.ParsedXML.DOM.Core.Element

Re: [Zope-dev] [ANNOUNCE] Zope Developer's Guide Preview

2001-04-11 Thread richard
Andy McKay wrote: Amos Latteier wrote: I'm proud to announce the first preview release of the Zope Developer's Guide. http://www.zope.org/Documentation/ZDG woot! woot? Sorry, HURRAH! :) Richard -- Richard Jones [EMAIL PROTECTED] Senior Software Developer, Bizar

Re: [Zope-dev] How do I call an HTMLFile in context provided by apath?

2001-04-11 Thread Itai Tavor
Dieter Maurer wrote: Itai Tavor writes: I have a method that receives a path: '/MyApp/SomeSpecialist/some_id/edit_html' and has to call edit_html in the context of some_id. If edit_html is a DTML Method, I can do this: obj = REQUEST.traverse(path) I would use

[Zope-dev] Using Python script to create ZClass instances

2001-04-11 Thread Bjorn Stabell
Hi there, Im having problems using Python script to create a ZClass instance from a ZClass that's inside of another ZClass. I have this addMyObject Python script as constructor script for "Scriptable Type Information" type object (CMF): ## Script (Python) "addMyObject" ##bind