Well, it turns out this would've been possible even without #4144, but
now that it's in CVS, I wrote up a wiki article[1] on dynamic models,
which should give you some clues on how to dynamically generate a
model. For this case, it would suffice to use the generic approach
listed there, created the field list dynamically, then creating the
model with it. Be sure to use the same app_label as the current app,
or you'll have problems with syncdb and admin.

-Gul

[1] http://code.djangoproject.com/wiki/DynamicModels

On May 3, 12:56 pm, Mike Axiak <[EMAIL PROTECTED]> wrote:
> Sandro,
>
> I'm not sure #4144 would help.
> However, I think there are limits to what you can do with python
> descriptors, and thus Django models. At the risk of giving up all the
> niceties of having an actual SQL field, can you do what you need by
> pickling dictionaries? If you really wanted to be lazy/magical, you
> can write careful __getattribute__ and __setattribute__ to emulate
> fields.
>
> Cheers,
> Mike Axiak
>
> On May 3, 12:50 pm, Gulopine <[EMAIL PROTECTED]> wrote:
>
> > I know of one way of going about this, but it relies on a Django patch
> > (#4144) that hasn't been integrated yet. There are probably ways I'm
> > not aware of, though.
>
> > -Gul
>
> > On May 3, 9:49 am, sandro dentella <[EMAIL PROTECTED]> wrote:
>
> > > hi,
>
> > >    i'd like to dinamycally add fields to a model (UserProfile) so that
> > >    it gets populated wit all the field needed by each application.
>
> > >    Any idea of how to accomplish this? A first try that cannot work
> > >    would have been:
>
> > >    class UserProfile(models.Model):
> > >        user = models.OneToOneField(User)
> > >        for name, value in app_contrib_from_settings().iteritems():
> > >            setattr(self, name, value)
>
> > >    but 'self' is not availabe of course...
> > >    Any idea? (it's more a python question than django, I know...)
>
> > >     sandro
> > >     *:-)
>
> > > PS: sorry for the have way post...


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to