[Zope3-Users] LDAP Authentication

2006-02-20 Thread Deborah Pollard
I have installed, configured, registered, named and activated ldapadapter with Public permission. Ditto for ldappas. Both are svn revision 41715. Both pass their tests. There are no errors when Zope 3.2.0 restarts. Everything looks fine, but Zope ignores LDAP and uses (or tries to use) Basic Auth

[Zope3-Users] Re: The Zope Software Certification Program and Common Repository Proposal

2006-02-20 Thread Philipp von Weitershausen
Andrew Milton wrote: > +---[ Stephan Richter ]-- > | Hello everyone, > | > | With the development of Zope 3, the Zope developers committed to a new > | development process and higher software quality guidelines. With the > adoption > | of Zope 3 technologies in the wider

[Zope3-Users] browser:form

2006-02-20 Thread David Johnson
I’ve implemented the browser:form ZCML directive. The implementation works well until I add an __init__ method to my view class.  The following error is generated.     File “/home/myuser/Zope-3.2.0/build/lib.linux-i686-2.4/zope/app/form/browser/editview.py", line 76, in widgets     retur

RE: [Zope3-Users] The Zope Software Certification Program and CommonRepository Proposal

2006-02-20 Thread Brett Haydon
Hi there, Certification would go some way to separating mature projects from those in their infancy, but in my mind what the existing Plone/Zope product repositories lack most is a mechanism for user feedback. I would like to see: 1. Some kind of self-submission categorizing (or classification)

[Zope3-Users] Re: The Zope Software Certification Program and Common Repository Proposal

2006-02-20 Thread Martin Aspeli
On Mon, 20 Feb 2006 21:28:09 -, Stephan Richter <[EMAIL PROTECTED]> wrote: I have spent the last two weeks working on a proposal that defines a Zope Software Certification Program (ZSCP) and a Common Repository that implements this process. The proposal is attached to this mail. I welcom

[Zope3-Users] Re: [Zope3-dev] 'standart viweletManger' for web-site

2006-02-20 Thread Stephan Richter
On Sunday 19 February 2006 16:11, Garanin Michael wrote: > Question: Where layer for web-site (not ZMI)? I offer create > 'z3site'-layer and define 'standart' viewler managers for web-site(not > ZMI) : IHead, ICSS, .., ILeft, IRight(!), etc. Hi Garanin, unfortunately you left out so many verbs th

Re: [Zope3-Users] Accessing an attribute of 'context'

2006-02-20 Thread Stephan Richter
On Monday 20 February 2006 06:58, Frank Burkhardt wrote: >  Doesn't work: self.context.__getattribute__('myattribute') That's because __getattribute__ has no security declaration. Anyways you should not use it this way anyways. Frank's response should do the trick. Regards, Stephan -- Stephan R

Re: [Zope3-Users] Granting Roles - What am I missing?

2006-02-20 Thread Stephan Richter
On Sunday 19 February 2006 14:43, David Johnson wrote: > I tried, but I continue to get the same error. I guess the question is, why > doesn't granting the "zope.ManageContent" permission to my principal solve > this problem in either case? Is it a local principal? If so, make sure that all the ob

Re: [Zope3-Users] Accessing an attribute of 'context'

2006-02-20 Thread Lennart Regebro
On 2/20/06, Frank Burkhardt <[EMAIL PROTECTED]> wrote: > Works: self.context.myattribute > > Works: removeSecurityProxy(self.context).__getattribute__('myattribute') > > What I want to do: > > Doesn't work: self.context.__getattribute__('myattribute') getattr(self.context, 'myattribute') -- Le

[Zope3-Users] Accessing an attribute of 'context'

2006-02-20 Thread Frank Burkhardt
Hi, How can I access an attribute of a BrowserView's context if the attribute's name is not hardcoded? Example: Works: self.context.myattribute Works: removeSecurityProxy(self.context).__getattribute__('myattribute') What I want to do: Doesn't work: self.context.__getattribute__('myattri