On 3/8/06, Mike B <[EMAIL PROTECTED]> wrote:
>
>
> >
> >
> > You can still create a Manipulator object to validate your data.
>
>
> Thanks, and I may be clueless here, but it seems as if manipulators don't
> work within the iterator context.  If I am using an interator to iterate
> over records that I want to modify and then update using save(), how do I
> add in a manipulator since it appears as if the ChangeManipulator just wants
> the object id so it can request the object itself?
>

You do not want to validate the data? Manipulator can validate data,
and you can write your own manipulator class according forms.txt. And
if you want to use a custom manipulator you should write your own save
function.

The context is a iterator, and manipulator need a dict data to
validate, so if you want to pass context to a manipulator object, you
should convert context object to a dict, just like:

        clist = list(context)
        clist.reverse()
        d = {}
        for c in clist:
            d.update(c)

And d will be the dict data.

--
I like python!
My Blog: http://www.donews.net/limodou
NewEdit Maillist: http://groups.google.com/group/NewEdit

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to