Re: [Zope-dev] makerequest issues

2006-04-05 Thread Stefan H. Holek
On 4. Apr 2006, at 22:08, Paul Winkler wrote: On Tue, Apr 04, 2006 at 08:09:05PM +0200, Stefan H. Holek wrote: This looks fine to me because the world ends at parent. Your earlier example wrapped an object that was in the middle of an acquisition chain (IIRC), no, I think you invented that

[Zope-dev] Question about RTFExport

2006-04-05 Thread [EMAIL PROTECTED]
Hello, I'm using the RTFExport product. It woks well, but I have a question. I'm exporting the fields of my archetype,and the result file shows every field. This result file hasn't any format. I would like to create a RTF file with the same formatthat I see in the Edit mode or the View mode (in

Re: [Zope-dev] makerequest issues

2006-04-05 Thread Paul Winkler
On Wed, Apr 05, 2006 at 11:48:31AM +0200, Stefan H. Holek wrote: Regarding your patch, why do you use lambda: () and not lambda: ('',)? Because that would change the path of the wrapped object, which is not a desirable side effect. Here's the behavior with my patch: from Testing.makerequest

[Zope-dev] What from zope.app are you using

2006-04-05 Thread Philipp von Weitershausen
Hi there, we don't really want to ship all of zope.app with Zope 2. zope.app is supposed to be the Zope 3 application server. It shouldn't be included in Zope 2, especially since it requires twisted and such. We're therefore moving everything that isn't part of the core Zope 3 application server

Re: [Zope-dev] What from zope.app are you using

2006-04-05 Thread Lennart Regebro
On 4/5/06, Philipp von Weitershausen [EMAIL PROTECTED] wrote: I would like to know what other zope.app packages your 3rd party software is using. Well, CMFonFive uses zope.app.publisher.browser, because that's where the menus hang. CPS uses zope.app.container for the container events and the

Re: [Zope-dev] What from zope.app are you using

2006-04-05 Thread Martin Aspeli
Lennart Regebro-2 wrote: Well, CMFonFive uses zope.app.publisher.browser, because that's where the menus hang. We would like to start using browser menus in Plone CPS uses zope.app.container for the container events and the IAdding interface all over the place. We may want to

Re: [Zope-dev] What from zope.app are you using

2006-04-05 Thread Bernd Dorn
On 05.04.2006, at 17:29, Philipp von Weitershausen wrote: implementing this proposal on the jim-adapter branch of Zope 3. I would like to know what other zope.app packages your 3rd party software is using. If thereare any other used than the ones mentioned in the proposal, we'll have to

Re: [Zope-dev] What from zope.app are you using

2006-04-05 Thread Paul Winkler
On Wed, Apr 05, 2006 at 05:29:41PM +0200, Philipp von Weitershausen wrote: I would like to know what other zope.app packages your 3rd party software is using. If thereare any other used than the ones mentioned in the proposal, we'll have to move them out of zope.app. I'd like to ask for your

Re: [Zope-dev] What from zope.app are you using

2006-04-05 Thread Philipp von Weitershausen
Bernd Dorn wrote: i use zope.app.cachedescriptors in zope2 for various projects You probably mean zope.cachedescriptors. That isn't part of zope.app and therefore no problem in the zope.app vs. Zope 2 issue. Philipp ___ Zope-Dev maillist -

Re: [Zope-dev] What from zope.app are you using

2006-04-05 Thread Lennart Regebro
On 4/5/06, Lennart Regebro [EMAIL PROTECTED] wrote: CPSMailAccess uses zope.app.cache, zope.app.dublincore, zope.app.copypastemove, and of course zope.app.mail. (And also zope.app.pagetemplate and zope.app.publisher.browser.BrowserView but I suspect those are special hacks or something, that

Re: [Zope-dev] What from zope.app are you using

2006-04-05 Thread Philipp von Weitershausen
Lennart Regebro wrote: On 4/5/06, Philipp von Weitershausen [EMAIL PROTECTED] wrote: I would like to know what other zope.app packages your 3rd party software is using. Well, CMFonFive uses zope.app.publisher.browser, because that's where the menus hang. Menu support will be moved to

Re: [Zope-dev] Hunting down objects without classes...

2006-04-05 Thread Dieter Maurer
Chris Withers wrote at 2006-4-4 17:28 +0100: I'm currently plagued by the following annoying: ZODB Could not import class 'BTree' from module 'BTree' What's the recommended way of tracking these down? At this place, nothing is known (beside the information you see). You can however log the

[Zope-dev] Re: What from zope.app are you using

2006-04-05 Thread Philipp von Weitershausen
Martin Aspeli wrote: Well, CMFonFive uses zope.app.publisher.browser, because that's where the menus hang. We would like to start using browser menus in Plone I was asking about current usage, not pious new years resolutions :). CPS uses zope.app.container for the container events and the

[Zope-dev] Re: What from zope.app are you using

2006-04-05 Thread Philipp von Weitershausen
Paul Winkler wrote: On Wed, Apr 05, 2006 at 05:29:41PM +0200, Philipp von Weitershausen wrote: I would like to know what other zope.app packages your 3rd party software is using. If thereare any other used than the ones mentioned in the proposal, we'll have to move them out of zope.app. I'd

[Zope-dev] Re: Question about RTFExport

2006-04-05 Thread Philipp von Weitershausen
[EMAIL PROTECTED] wrote: I'm using the RTFExport product. It woks well, but I have a question. I'm exporting the fields of my archetype, and the result file shows every field. This result file hasn't any format. I would like to create a RTF file with the same format that I see in the Edit mode

Re: [Zope-dev] What from zope.app are you using

2006-04-05 Thread Philipp von Weitershausen
Brian Sutherland wrote: On Wed, Apr 05, 2006 at 05:29:41PM +0200, Philipp von Weitershausen wrote: I would like to know what other zope.app packages your 3rd party software is using. Er, FiveSQLOS is using quite a lot actually:

Re: [Zope-dev] makerequest issues

2006-04-05 Thread Stefan H. Holek
Out of curiosity, you know that SimpleItem does not have a constructor? You just inherit the one from ExtensionClass.Base, which accepts everything and subsequently ignores it. So your item will have an empty id. This *may* be what you want so your physical path starts with '' instead of

Re: [Zope-dev] makerequest issues

2006-04-05 Thread Paul Winkler
On Wed, Apr 05, 2006 at 11:23:40PM +0200, Stefan H. Holek wrote: Out of curiosity, you know that SimpleItem does not have a constructor? You just inherit the one from ExtensionClass.Base, which accepts everything and subsequently ignores it. So your item will have an empty id. This *may*

Re: [Zope-dev] What from zope.app are you using

2006-04-05 Thread Philipp von Weitershausen
Brian Sutherland wrote: On Wed, Apr 05, 2006 at 11:18:46PM +0200, Philipp von Weitershausen wrote: Brian Sutherland wrote: On Wed, Apr 05, 2006 at 05:29:41PM +0200, Philipp von Weitershausen wrote: I would like to know what other zope.app packages your 3rd party software is using. Er,