Well, I'm a Django noobie and still stumbling about with my first app, but I'll take a crack at this as I have similar requirements in a future version of my app.

What I would do is use an AddManipulator (or ChangeManipulator for modifying existing data). If you look at


(specifically def create_place_with_validation)

it appears rather straightforward. Instead of passing the data dictionary to the manipulator from request.POST, you would pass it from your XML parser. Then you call the manipulator's get_validation_errors method, your model should already be set up to validate.

Don

On Mar 7, 2006, at 6:42 PM, Mike B wrote:


I've been toying around with Django, and I'm trying to figure out the
proper way to validate backend data going into the database that
doesn't come through a form. In this particular case, the data is
coming in off an XML feed and being inserted or updated into a Django
model. 

Can someone point me in the right direction?

Thanks,

   Mike

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