[Zope3-Users] NEWBIE: Using Pluggable Auth in Zope 3

2006-07-12 Thread Nick Howden
Hi, I am relatively new to Zope 3 - though I have been using Zope since its Bobo days - which I think shows my age :-) I am trying to use some of the authentication classes contained in app.authentication - in particular the SessionCredentialsPlugin and our own PluggableAuthentication to

Re: [Zope3-Users] PAU newbie: registering a pluggable authenticator

2006-07-12 Thread eleanor weavers
Hi, thanks for the reply. So far I have configured the entirity of the site through zcml, and would like to keep it that way if possible. Are there some simple steps I can take to get a PAU registered and configured with the authenticators in zcml? Thanks, ell. From: Albertas Agejevas

Re: [Zope3-Users] problem adding an item to the zmi_views menu

2006-07-12 Thread Garanin Michael
/ browser:page name=ViewProject.html permission=zope.Public template=projectview.pt for=finance.project.Project try: for=finance.interfaces.IProject menu=zmi_views title=ViewIt

Re: [Zope3-Users] PAU newbie: registering a pluggable authenticator

2006-07-12 Thread Albertas Agejevas
On Wed, Jul 12, 2006 at 07:57:57AM +, eleanor weavers wrote: The pluggable authentication utility is a local utility. You'll need to go to the site management interface, create and register an instance of PluggableAuthenticationUtility, and then enable your plugin in this utility's

Re: [Zope3-Users] Getting params in a request

2006-07-12 Thread Pete Taylor
Stephane, do you mean how do you get the params out of the request when they post to your page? self.request.get('param1') should give you value1, if that's what you're getting at... On 7/12/06, Stéphane Brault [EMAIL PROTECTED] wrote: Hi, for my application I need to let another site redirect

Re: [Zope3-Users] Getting params in a request

2006-07-12 Thread FB
Hi, On Wed, Jul 12, 2006 at 02:50:47PM +, Stéphane Brault wrote: Hi, for my application I need to let another site redirect its user to one of my page with an operation and some parameters, giving it this address: http://www.mysite.com/mypage?myOperationparam1=vaue1param2=value2 The

Re : [Zope3-Users] Getting params in a request

2006-07-12 Thread Stéphane Brault
Thanks Frank, I didn't know it would be that simple ;-), Zope's strength I guess ;-) Stéphane - Message d'origine De : FB [EMAIL PROTECTED] À : user-list zope zope3-users@zope.org Envoyé le : Mercredi, 12 Juillet 2006, 5h01mn 46s Objet : Re: [Zope3-Users] Getting params in a request

Re : [Zope3-Users] Getting params in a request

2006-07-12 Thread Stéphane Brault
Thanks Pete, It was indeed what I was getting at, but since I use ajax I mostly don't use views, from there comes my ignorance ;-) Stéphane - Message d'origine De : Pete Taylor [EMAIL PROTECTED] À : Stéphane Brault [EMAIL PROTECTED]; zope3-users@zope.org Envoyé le : Mercredi, 12

Re: Re : [Zope3-Users] Getting params in a request

2006-07-12 Thread Zachery Bir
On Jul 12, 2006, at 12:16 PM, Stéphane Brault wrote: Thanks Pete, It was indeed what I was getting at, but since I use ajax I mostly don't use views, from there comes my ignorance ;-) Well, you still need to wire up views, even if you're not wiring up *pages* ;^) Zac