On Sep 5, 6:53 pm, KillaBee <[EMAIL PROTECTED]>
wrote:
> I found A good document, that explains a
> lot.http://enodev.ath.cx/save/www.djangoproject.com/documentation/model_api/
> but it still can not import name meta. I don't know where this is
> coming from.
You won't be able to import that name any more since it was dropped.
Where you use meta.XYZField replace it with models.XYZField where
models is:
from django.db import models
Also, meta.Admin has been replaced by a completely new Admin
application. Similarly, this won't work anymore: from django.oldforms
import FormField, validators
If this application is a small one, you might want to consider just
writing it from scratch using Django version 1.0 rather than trying to
update it up to 1.0 since there have been literally hundreds of
backwards incompatible changes since the pre-magic removal version
that your original app was written for.
-Rajesh
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---