Re: [Zope3-Users] Creating PluggableAuthentication problem.

2006-04-19 Thread Tobias Weber
> > I try to add a PluggableAuthentication and a PrincipalFolder > > automatically. When I add a principal to the PrincipalFolder it works > > fine, but the authentification of the User fails. When I add one more > > PluggableAuthentication manually and choose the automatically generated > > Princ

Re: [Zope3-Users] Creating PluggableAuthentication problem.

2006-04-19 Thread Florian Lindner
Am Mittwoch, 19. April 2006 09:54 schrieb Tobias Weber: > > > I try to add a PluggableAuthentication and a PrincipalFolder > > > automatically. When I add a principal to the PrincipalFolder it works > > > fine, but the authentification of the User fails. When I add one more > > > PluggableAuthentic

Re: [Zope3-Users] ZEO Zope3 and Twisted

2006-04-19 Thread Benji York
David Pratt wrote: Is there any plan to provide security for ZEO client / server communication using Twisted now that it is in Zope3? Many thanks I haven't heard of anyone working on anything like that, and it's unclear if you mean simple encryption and authentication of the client and server

Re : Re : [Zope3-Users] formlib problem

2006-04-19 Thread Stéphane Brault
Hi, when I use formlib the traditional way (registering the page via ZCML, going to it via the ZMI), everything works fine. The problem is I can't access it programatically. The thing I try to do is : - call a method via JSON RPC (by the way jsonserver is great ;-)) - in this method I

Re : [Zope3-Users] formlib problem

2006-04-19 Thread Stéphane Brault
Hi again, sorry to be a bore ;-) I keep on trying to use formlib, I no longer have a problem of adapters for my fields but I get this error: 2006-04-19T16:13:32 ERROR root C:\Python24\Lib\site-packages\zope\publisher\publish.py line 138 in publish => 'result = publication.callObject(request,

Re: Re : [Zope3-Users] formlib problem

2006-04-19 Thread Jim Washington
Stéphane Brault wrote: Hi again, sorry to be a bore ;-) I keep on trying to use formlib, I no longer have a problem of adapters for my fields but I get this error: 2006-04-19T16:13:32 ERROR root C:\Python24\Lib\site-packages\zope\publisher\publish.py line 138 in publish => 'result = publica

Re: [Zope3-Users] ZEO Zope3 and Twisted

2006-04-19 Thread David Pratt
Hi Benji. I was thinking of the first case that you mentioned, encryption and authentication at the moment. I am looking at geographically separated client instances where client is a laptop or desktop computer so data stays synced. Twisted has the resources to handle encrypted network communic

Re : Re : [Zope3-Users] formlib problem

2006-04-19 Thread Stéphane Brault
Hi Jim, the Items object is my object, linked to my items, table which implements the IItems interface I use for my form: from neteven.interfaces.items import IItems from zope.formlib import form class ItemsForm(form.EditForm): form_fields = form.Fields(IItems) form_fields =

[Zope3-Users] Re: Re : Re : formlib problem

2006-04-19 Thread jürgen Kartnaller
Stéphane Brault wrote: > Hi Jim, > the Items object is my object, linked to my items, table which implements > the IItems interface I use for my form: > > from neteven.interfaces.items import IItems > from zope.formlib import form > > class ItemsForm(form.EditForm): > form_fields

Re: Re : Re : [Zope3-Users] formlib problem

2006-04-19 Thread Jim Washington
Stéphane Brault wrote: Hi Jim, the Items object is my object, linked to my items, table which implements the IItems interface I use for my form: from neteven.interfaces.items import IItems from zope.formlib import form class ItemsForm(form.EditForm): form_fields = form.Fields(II

Re: FW: Re : Re : [Zope3-Users] formlib problem

2006-04-19 Thread Pete Taylor
Stéphane, i'm working on what sounds to be a pretty much identical issue currently... i'm attempting to use formlib and jsonserver. i've been throwing around a number of possible solutions, but none that i'm comfortable with so far. i agree, i don't know how to access my form.Form class programm

Re : [Zope3-Users] Re: Re : Re : formlib problem

2006-04-19 Thread Stéphane Brault
Thanks Jürgen, I figured that out, I was wondering how to work around this ;-) Jim just gave me the answer. Stéphane - Message d'origine De : jürgen Kartnaller <[EMAIL PROTECTED]> À : zope3-users@zope.org Envoyé le : Mercredi, 19 Avril 2006, 6h05mn 10s Objet : [Zope3-Users] Re: Re :

Re : Re : Re : [Zope3-Users] formlib problem

2006-04-19 Thread Stéphane Brault
Thanks Jim, I now get the page back with the right data. I now have to figure out how to have the actions work. I guess I'll have to ajaxify my page in order to pass the data and have the form do it's work. I'll let you know if I encounter further problems or if it works (hopefully). Stéph

Re: [Zope3-Users] Can't build Zope on OS X

2006-04-19 Thread Kamal Gill
Eric, If you're on Mac OS X Tiger (10.4), you could try the Zope 3.2.1 OS X installer I recently built. It's a native PowerPC build, and I plan to release an Intel build soon. http://www.zope.org/Members/kamalgill/Zope-3.2.1-Installer-OSX- PPC_build2006041702.zip/file_view - Kamal --

Re: [Zope3-Users] Re: Blobs in Z3 anyone?

2006-04-19 Thread David Pratt
Thanks Phillip for this info. Regards, David Philipp von Weitershausen wrote: David Pratt wrote: Hi I had asked this question about a week ago with no response. Filesystem blobs are a valuable means of storing large object data in the filesystem instead of the ZODB. I have previously written a

Re: [Zope3-Users] Re: Blobs in Z3 anyone?

2006-04-19 Thread Chris McDonough
Actually, "stream iterator" support is independent of blobs. There was some talk a while back about Zope 3 implementing some form of "IResult" interface that allowed for streaming. I'm not sure where that ended up, though. I seem to remember Jim checking something in. - C On Apr 19, 2

Re: [Zope3-Users] Re: Blobs in Z3 anyone?

2006-04-19 Thread David Pratt
Hi Chris. This is great. I was going to ask Philipp about streaming but thought once I had contacted you I would ask you since this is an important part of large file handling. Can you tell me how far along the ZODB blob support has advanced? Where is the project is located? I am keen on how ob

Re: [Zope3-Users] Re: Blobs in Z3 anyone?

2006-04-19 Thread Chris McDonough
On Apr 19, 2006, at 10:28 PM, David Pratt wrote: Hi Chris. This is great. I was going to ask Philipp about streaming but thought once I had contacted you I would ask you since this is an important part of large file handling. Can you tell me how far along the ZODB blob support has advanced