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:
--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~--- |
- Re: Way to validate database inserts/updates not associated with... Don Arbow