Re: Can't handle newforms

2007-03-30 Thread Jacob Kaplan-Moss
Hi xav -- Please direct questions of this nature to django-users; django-dev is used to discuss the development of Django itself, not to answer usage questions. Thanks! Jacob --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Googl

Re: Can't handle newforms

2007-03-30 Thread xgdlm
On 30 mar, 14:15, Gábor Farkas <[EMAIL PROTECTED]> wrote: > what is the output of running "locale" in a console? gabor, Your are right ! I remaoved my DEFAULT_CHARSET = 'iso8859-15' from my settings. Created a view to render a newform created form and everything is working find. So this is du

Re: Can't handle newforms

2007-03-30 Thread xgdlm
Hello, > what is the output of running "locale" in a console? # locale LANG=fr_FR.UTF-8 LC_CTYPE="fr_FR.UTF-8" LC_NUMERIC="fr_FR.UTF-8" LC_TIME="fr_FR.UTF-8" LC_COLLATE="fr_FR.UTF-8" LC_MONETARY="fr_FR.UTF-8" LC_MESSAGES="fr_FR.UTF-8" LC_PAPER="fr_FR.UTF-8" LC_NAME="fr_FR.UTF-8" LC_ADDRESS="fr_F

Re: Can't handle newforms

2007-03-30 Thread Gábor Farkas
xgdlm wrote: > Thanks for your reply Malcolm > >> Hmm... this precise example works for me. Are you using a reasonably >> recent release (like 0.96)? I remember there was a unicode fix that went >> in not too long ago to add smart_unicode() calls in various places for >> things just like this. >

Re: Can't handle newforms

2007-03-30 Thread xgdlm
adding DEFAULT_CHARSET = 'iso8859-15' to my settings.py solves this issue. I'm wondering how to have a complete UTF-8 system :) anyway thanks all for your investigations. xav --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Goog

Re: Can't handle newforms

2007-03-30 Thread xgdlm
Thanks for your reply Malcolm > Hmm... this precise example works for me. Are you using a reasonably > recent release (like 0.96)? I remember there was a unicode fix that went > in not too long ago to add smart_unicode() calls in various places for > things just like this. I'm running 0.96 and m

Re: Can't handle newforms

2007-03-30 Thread Malcolm Tredinnick
On Fri, 2007-03-30 at 01:52 -0700, xgdlm wrote: > Hello All, > > Django brings me to python ... so I'm not a python specialist. I wish > I could you the newforms library and get rid of the oldforms in my > django projects. But I can't use newforms with French language. I read > a lot of problems

Can't handle newforms

2007-03-30 Thread xgdlm
Hello All, Django brings me to python ... so I'm not a python specialist. I wish I could you the newforms library and get rid of the oldforms in my django projects. But I can't use newforms with French language. I read a lot of problems with unicode strings and special caracters. But I couldn't r