I have been developing a Django web application using the development
root. It had been a while since I updated and, when I recently did (to
version 1.2 alpha 1 SVN-12271) it was clear something fairly basic had
gone awry. My application works fine under Version 1.1.1, but with the
development root, my form attributes seem to be out of sequence. For
example, on some choice fields where no bad choices are possible, I'm
getting errors like "Value u'F1852' is not a valid choice." Well,
"F1852" is valid, in fact.

In the Django 1.2 alpha 1 release notes, 
http://docs.djangoproject.com/en/dev/releases/1.2-alpha-1/,
I found reference to changes in __dict__ on Model instances. It says
"If your code relies on iterating over __dict__ to obtain a list of
fields, you must now filter the _state attribute of out __dict__."
Well, my code doesn't do this, at least not explicitly, but I do have
a peculiar bit of code that iterates through a ModelForm and makes a
list of dictionaries that gets sliced into segments which are then
passed to a template by a render_to_response statement. Here's the
code for this agglomerated object:

def combine_parameters_list_and_form(ParamList, ToolModelForm):
    parameters_plus_form = []
    r = range(0, len(ParamList))
    I = iter(ToolModelForm)

    for i in r:
        parameters_plus_form.append({'paramlist': ParamList[i],
'widget': I.next()})

    return parameters_plus_form

Is this causing my problem? Any other ideas?

Thanks,

Tom

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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