Re: [Zope] The product I made isn't in the product management page

2007-01-03 Thread Allen Huang
: [Zope] The product I made isn't in the product management page -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 - --On 3. Januar 2007 07:59:23 +0100 Maciej Wisniowski [EMAIL PROTECTED] wrote: What is the problem here? As Marco said use SimpleItem as base class and add: from Globals import

Re: [Zope] The product I made isn't in the product management page

2007-01-02 Thread Marco Bizzarri
Two suggestions: 1) run zope in foreground, so that you can see if Zope is complaining about your project; 2) make helloClass derive from OFS.SimpleItem.SimpleItem. Regards Marco On 1/3/07, Allen Huang [EMAIL PROTECTED] wrote: I'm using Zope 2.8.8 and I trying to make my own product.

Re: [Zope] The product I made isn't in the product management page

2007-01-02 Thread Allen Huang
PROTECTED] Cc: Zope zope@zope.org Sent: Wednesday, January 3, 2007 11:48:59 AM Subject: Re: [Zope] The product I made isn't in the product management page Two suggestions: 1) run zope in foreground, so that you can see if Zope is complaining about your project; 2) make helloClass derive from

Re: [Zope] The product I made isn't in the product management page

2007-01-02 Thread Maciej Wisniowski
What is the problem here? As Marco said use SimpleItem as base class and add: from Globals import InitializeClass (...) InitializeClass(helloClass) to helloModule.py. You'll need security declarations too. Take may take a look at http://www.upfrontsystems.co.za/courses/zope/ch04.html --

Re: [Zope] The product I made isn't in the product management page

2007-01-02 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 - --On 3. Januar 2007 07:59:23 +0100 Maciej Wisniowski [EMAIL PROTECTED] wrote: What is the problem here? As Marco said use SimpleItem as base class and add: from Globals import InitializeClass (...) InitializeClass(helloClass) to