Re: [Zope3-Users] [Zope-dev] Problems with schema Date field - year is truncated

2008-08-28 Thread Markus Kemmerling
Hi Hermann, The z3c.form.converter.CalendarDataConverter, on which the DateDataConverter is based, explicitely sets the date format to 'short'. Overriding the latter with a 'length' attribute set to 'medium' will handle german dates as dd.MM.. Regards, Markus Kemmerling Am

Re: [Zope3-Users] [Zope-dev] Problems with schema Date field - year is truncated

2008-08-28 Thread Hermann Himmelbauer
Am Donnerstag 28 August 2008 11:41:54 schrieb Markus Kemmerling: Hi Hermann, The z3c.form.converter.CalendarDataConverter, on which the DateDataConverter is based, explicitely sets the date format to 'short'. Overriding the latter with a 'length' attribute set to 'medium' will handle

[Zope3-Users] zopeproject generated zope3 app and mod_wsgi

2008-08-28 Thread Fernando Correa Neto
Hello there, First off all, I don't have a blog so I'll be posting it here. Yesterday I decided to setup a zopeproject generated app with mod_wsgi and I would like to share my experience. I am going to skip the part of setting up mod_wsgi with apache because I think this very well documented.

Re: [Zope3-Users] [Zope-dev] Problems with schema Date field - year is truncated

2008-08-28 Thread Stephan Richter
On Thursday 28 August 2008, Hermann Himmelbauer wrote: Nevertheless, the validator does not check if someone enters a string that is too long, e.g. someone can enter 19.02.1999892839, whereas the trailing characters are truncated. Is there a way to prevent this, for instance by throwing an

[Zope3-Users] formlib to z3c.form widget adapter/bridge

2008-08-28 Thread Martin Aspeli
Hi, Has anyone written or thought about an adapter/bridge between formlib and z3c.form widgets? We have a few widgets that have no z3c.form equivalent, e.g. the formlib captcha widget. Whilst porting a widget isn't terribly hard, it would be really useful to have some kind of generic bridge

Re: [Zope3-Users] formlib to z3c.form widget adapter/bridge

2008-08-28 Thread Stephan Richter
On Thursday 28 August 2008, Martin Aspeli wrote: Has anyone written or thought about an adapter/bridge between formlib and z3c.form widgets? Not that I know of. But I think it might be hard to do due to the different definitions of what a widget and a field is. On the other hand, I might be

Re: [Zope3-Users] formlib to z3c.form widget adapter/bridge

2008-08-28 Thread Martin Aspeli
Stephan Richter wrote: On Thursday 28 August 2008, Martin Aspeli wrote: Has anyone written or thought about an adapter/bridge between formlib and z3c.form widgets? Not that I know of. But I think it might be hard to do due to the different definitions of what a widget and a field is. On