On Sat, May 9, 2009 at 6:10 AM, linvar <tanf...@gmail.com> wrote: > > hello everybody: > i cannot use {% ifequal var1 var2 %} to test if equal when > var1,var2 are UTF8 encoding. but if var1,var2 are ansi that is ok. you > know i am in chinese and alway catche such ugly encoding problem. > anyone can help. > thanks advanced! >
Are you sure you are comparing two utf-8 encoded bytestrings? (Also, I think you mean ASCII, not ansi.) It sounds like you might have one Unicode object and one utf-8 encoded bytestring; these will not compare as equal with {% ifequal %}. If that is what you are doing your server (if you using the dev server) should also be printing a warning: UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal (I actually find this a little surprising, as usually bytestrings are assumed to be utf-8 encoded within Django, so my initial guess would have been that comparing a unicode string to its utf-8 encoded bytestring value would have resulted in True from {% ifequal %}, but that doesn't seem to be the case.) Karen --~--~---------~--~----~------------~-------~--~----~ 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@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---