Re: [Zope3-Users] Visionaire! (All your problems, solved)

2006-03-03 Thread Max M
Jeff Shell wrote: Yes it does. And I hate it. At Bottlerocket, we're a very small company. We look at Plone and go alright, how do we make it do less? how do we turn this thing off, and this thing off, and this thing off, and this thing off? why is it so slow? and it still doesn't do the page

Re: [Zope3-Users] PyWebOff

2006-03-03 Thread Tom Dossis
Shane Hathaway wrote: Hello, I've been assigned to present Zope in a local upcoming Python user group meeting. As part of the assignment, I'm supposed to solve the PyWebOff challenge using Zope: http://pyre.third-bit.com/pyweb/challenge.html I'd like to do this using Zope 3. However, I'm

[Zope3-Users] ZODB - ways of storages?

2006-03-03 Thread Reinhold Strobl
Hi, in the book Web component development with ZopeX3 by Philipp von Weitershausen on page 72 I find the following statement: The ZODB can store persistency data in many ways. The most common storage is FileStorage which stores data in a file usally called Data.fs By using a different storage

[Zope3-Users] ForbiddenAttribute add error

2006-03-03 Thread Joseph Method
Hi, I get this error ForbiddenAttribute: ('add', zope.app.publisher.browser.viewmeta.+ object at 0x754d09ac) when I try to add a Claim to a DebtManager (both are subclasses of Folder) at http://localhost:8031/DebtManager/+/@@AddClaim.html The addform looks like this: browser:addform

[Zope3-Users] How do I start Zope?

2006-03-03 Thread mwebster
At this point I have: Upgraded to Python 2.4.2 and confirmed that it works by launching IDLE and seeing the correct version number Run the installer Zope-3.2.0.win32-py2.4.exe The old documentantion shows various bits about setting a username and password for the administrator,

Re: [Zope3-Users] ForbiddenAttribute add error

2006-03-03 Thread baiju m
On 3/4/06, Joseph Method [EMAIL PROTECTED] wrote: Hi, I get this error ForbiddenAttribute: ('add', zope.app.publisher.browser.viewmeta.+ object at 0x754d09ac) when I try to add a Claim to a DebtManager (both are subclasses of Folder) at http://localhost:8031/DebtManager/+/@@AddClaim.html

Re: [Zope3-Users] How do I start Zope?

2006-03-03 Thread baiju m
On 3/4/06, mwebster [EMAIL PROTECTED] wrote: At this point I have: Upgraded to Python 2.4.2 and confirmed that it works by launching IDLE and seeing the correct version number Run the installer Zope-3.2.0.win32-py2.4.exe snip How do I start Zope so I can get to the Management screen or

Re: [Zope3-Users] ForbiddenAttribute add error

2006-03-03 Thread baiju m
On 3/4/06, Joseph Method [EMAIL PROTECTED] wrote: What kind of thing would go into an IContainerInterface? is .interfaces.IDebtManager a IContainer interface, i.e., you are extending IContainer, like :: class IDebtManager(IContainer): pass And you will be implementing IDebtManager

Re: [Zope3-Users] ForbiddenAttribute add error

2006-03-03 Thread Joseph Method
is .interfaces.IDebtManager a IContainer interface, i.e., you are extending IContainer, like :: class IDebtManager(IContainer): pass The class is class DebtManager(Folder): which implements IDebtManager which is: class IDebtManager(IContainer): IDebtManager Marker Interface

Re: [Zope3-Users] ForbiddenAttribute add error

2006-03-03 Thread baiju m
On 3/4/06, Joseph Method [EMAIL PROTECTED] wrote: is .interfaces.IDebtManager a IContainer interface, i.e., you are extending IContainer, like :: class IDebtManager(IContainer): pass The class is class DebtManager(Folder): which implements IDebtManager which is: class

Re: [Zope3-Users] ForbiddenAttribute add error

2006-03-03 Thread Joseph Method
Interestingly enough, switching the implementation to BTreeFolder causes this error: AttributeError: 'DebtManager' object has no attribute 'getSiteManager' On 3/4/06, baiju m [EMAIL PROTECTED] wrote: On 3/4/06, Joseph Method [EMAIL PROTECTED] wrote: is .interfaces.IDebtManager a IContainer