Re: xml serialization with nested models

2008-06-13 Thread [EMAIL PROTECTED]
Hi, With a bit of prompting from another Djangoista I've posted the python and json "full" serializer implementations to http://code.djangoproject.com/ticket/4656 . Please have a try and let me know if you find and bugs or have any other feedback. cheers Matthew On May 6, 4:09 pm, "[EMAIL

Re: xml serialization with nested models

2008-05-06 Thread [EMAIL PROTECTED]
On May 6, 11:14 am, "Russell Keith-Magee" <[EMAIL PROTECTED]> wrote: > On Tue, May 6, 2008 at 8:52 AM, Explore <[EMAIL PROTECTED]> wrote: > > > Hi. I have been trying to get django to return my models as xml. I > > have tried using the xml serializer but i cannot get it to send back > >

Re: xml serialization with nested models

2008-05-05 Thread Russell Keith-Magee
On Tue, May 6, 2008 at 8:52 AM, Explore <[EMAIL PROTECTED]> wrote: > > Hi. I have been trying to get django to return my models as xml. I > have tried using the xml serializer but i cannot get it to send back > anything but the initial model. > > I would like to get nested xml like below

xml serialization with nested models

2008-05-05 Thread Explore
Hi. I have been trying to get django to return my models as xml. I have tried using the xml serializer but i cannot get it to send back anything but the initial model. I would like to get nested xml like below (where Department has a ForeignKey to Organization). My Org