Re: Exposing DeclarativeFieldsMetaclass

2008-08-18 Thread Marco Biasini
OK, thanks. I'm pretty new to python. So I was not completely familiar with the meaning of __all__. Thanks for clarifying. On Aug 18, 2008, at 3:51 PM, Patryk Zawadzki wrote: > > On Mon, Aug 18, 2008 at 2:45 PM, <[EMAIL PROTECTED]> > wrote: >> >> Hi, >> >> I've written a library on top of

Re: Exposing DeclarativeFieldsMetaclass

2008-08-18 Thread Patryk Zawadzki
On Mon, Aug 18, 2008 at 2:45 PM, <[EMAIL PROTECTED]> wrote: > > Hi, > > I've written a library on top of django.form that adds support for > highly dynamic forms, including removing and adding inline forms after > page load-time. To do so, I subclassed forms.BaseForm and added the > needed

Exposing DeclarativeFieldsMetaclass

2008-08-18 Thread Marco . Biasini
Hi, I've written a library on top of django.form that adds support for highly dynamic forms, including removing and adding inline forms after page load-time. To do so, I subclassed forms.BaseForm and added the needed functionality to it. My problem is ,that I'd like to support the same