Re: output of XML serializer

2008-12-19 Thread bruno desthuilliers
On 19 déc, 00:13, "Mr. T" wrote: > response = serializers.serialize('xml', MySet.objects.all()) > return HttpResponse(response , mimetype='text/xml;') > > The output has each member of "MySet" with an tag, and then > within the object, a bunch of tags with each field. Looks like a sensible s

output of XML serializer

2008-12-18 Thread Mr. T
response = serializers.serialize('xml', MySet.objects.all()) return HttpResponse(response , mimetype='text/xml;') The output has each member of "MySet" with an tag, and then within the object, a bunch of tags with each field. It seems sort of hard to parse this on the client side. Can anyone h