Re: Unicode field names

2007-06-13 Thread Noam Raphael
Thanks a lot - I switched to the unicode branch and it works very nice! I'll report any bugs I encounter. Noam On 13/06/07, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > > On Tue, 2007-06-12 at 21:16 +, Noam wrote: > > Hello, > > > > First of all, I apologize if I post this in the wrong for

Re: Unicode field names

2007-06-13 Thread Gábor Farkas
Noam wrote: > telephone = CharField(u'טלפון', maxlength=30) > > However, it causes the admin app to fail with a nasty > UnicodeDecodeError. > as Malcolm wrote already, the unicode-branch will solve this, but for now, try to use a bytestring in your application's encoding there. so, for exa

Re: Unicode field names

2007-06-12 Thread Malcolm Tredinnick
On Tue, 2007-06-12 at 21:16 +, Noam wrote: > Hello, > > First of all, I apologize if I post this in the wrong forum. It just > seems to me like something which requires design decisions, and not a > simple bug. If I am wrong, please correct me. > > I'm making a site which will be in Hebrew.

Unicode field names

2007-06-12 Thread Noam
Hello, First of all, I apologize if I post this in the wrong forum. It just seems to me like something which requires design decisions, and not a simple bug. If I am wrong, please correct me. I'm making a site which will be in Hebrew. I have a model with lines like these: telephone = CharFi