Re: Pb with dumpdata/loaddata and unicode

2008-06-13 Thread LB
Thanks a lot, that was it. Upgrading to an SVN version of django solved the case. -- LB --~--~-~--~~~---~--~~ 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@googleg

Fwd: Pb with dumpdata/loaddata and unicode

2008-06-12 Thread Gene Campbell
I'm a noob, but perhaps this will help the discussion. http://www.djangoproject.com/documentation/serialization/ "If you're using UTF-8 (or any other non-ASCII encoding) data with the JSON serializer, you must pass ensure_ascii=False as a parameter to the serialize() call..." I saw this be

Re: Pb with dumpdata/loaddata and unicode

2008-06-12 Thread Karen Tracey
On Thu, Jun 12, 2008 at 1:58 PM, LB <[EMAIL PROTECTED]> wrote: > >Hi, > > I'm new to django and I've got problem with the loaddata function. > I have a lot of data containing unicode. I needed to clean my > database, so I made a fixture with > `./manage.py dumpdata > backup.json` > Then, I cle

Pb with dumpdata/loaddata and unicode

2008-06-12 Thread LB
Hi, I'm new to django and I've got problem with the loaddata function. I have a lot of data containing unicode. I needed to clean my database, so I made a fixture with `./manage.py dumpdata > backup.json` Then, I cleared my database and loaded my backup with : `./manage.py loaddate backup.jso