On Wed, Apr 22, 2009 at 9:22 AM, vishak <visha...@gmail.com> wrote:

>
> Hi all
>
>  Can anyone tell what exactly happens in 'forms' if we port it from
> Django0.97 to Django1.0.x
>

Django "0.97" is not a released version -- if you have code reporting that
version you have some SVN checkout from somewhere in a large range of time
between Django 0.96 and Django 1.0.  You'll need to understand what forms
library the code you have was written for -- does it use the old forms
constructs (documented here:
http://www.djangoproject.com/documentation/0.96/forms/) or does it use
'newforms' (described here:
http://www.djangoproject.com/documentation/0.96/newforms/)?  If the latter
your migration may be as simple as changing import statements from newforms
to forms.  If the former you will need to understand what the old code was
doing and convert it to use the new (now current) forms library.
http://docs.djangoproject.com/en/dev/#forms is where to look for the current
forms doc.

Karen

--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to