[Zope3-Users] records converter

2006-03-17 Thread Andrius Armonas
Hi, did "records" converter behaviour changed anyhow in zope3 since zope2? If we have this: Then after form submit we get (in zope3): a: ['x': 5, 'y': 51, 'x': 6, 'y': 61] which is wrong I think. It should be: a: [{'x': 5, 'y': 51}, {'x': 6, 'y': 61}] Can it be a bug here? I'm using Zop

Re: [Zope3-Users] records converter

2006-03-18 Thread Andrius Armonas
Dmitry Vasiliev wrote: About 2 years ago I made a massive refactoring for zope.publisher.browser.BrowserRequest and added some tests based on the implementation. But nobody I know uses ":records", so it is probably under-tested. Maybe we need some "converters simplification" so for exam

Re: [Zope3-Users] debian installation

2006-04-24 Thread Andrius Armonas
Hi, you have to install python2.4-dev package. -- Andrius Stéphane Brault wrote: Hi, I'm trying to install zope on a debian distribution. ./configure works ok, then when I invoke make I get : /usr/bin/python2.4 install.py -q build error: invalid Python installation: unable to open /usr

Re: [Zope3-Users] Grant Principals in Bulk

2006-08-02 Thread Andrius Armonas
Hi, you probably need to use roles. -- Andrius [EMAIL PROTECTED] wrote: What is the easiest way to grant access to a group of principals? I am building an AuthenticatorPlugin that authenticates users against an relational database. Do I have to do a specific grant on each principal? I want