Re: Django html input error

2013-05-09 Thread Rodolfo
Hi, I updated Django to version 1.5.1 and now everything is OK. Thank you Em segunda-feira, 6 de maio de 2013 22h35min45s UTC-3, Rodolfo escreveu: > Hi, > > I get an > "UnicodeEncodeError 'ascii' codec can't encode character '\xe3' in > position 1: ordinal not in range(128)" > >

Re: Django html input error

2013-05-07 Thread Rodolfo
Why Django implicit converts to ascii my latin text ? Em segunda-feira, 6 de maio de 2013 22h35min45s UTC-3, Rodolfo escreveu: > Hi, > > I get an > "UnicodeEncodeError 'ascii' codec can't encode character '\xe3' in > position 1: ordinal not in range(128)" > > with the html fragment:

Re: Django html input error

2013-05-07 Thread Rodolfo
Em segunda-feira, 6 de maio de 2013 22h35min45s UTC-3, Rodolfo escreveu: > > Hi, > > I get an > "UnicodeEncodeError 'ascii' codec can't encode character '\xe3' in > position 1: ordinal not in range(128)" > > with the html fragment: > > > To solve this problem, I changed the module >

Re: Django html input error

2013-05-06 Thread Shawn Milochik
No, it's a bad solution because it only fixes *some* unicode errors, and only on your single machine. See this. In my opinion it's the easiest Python unicode explanation to understand: http://farmdev.com/talks/unicode/ -- You received this message because you are subscribed to the Google Groups

Django html input error

2013-05-06 Thread Rodolfo
Hi, I get an "UnicodeEncodeError 'ascii' codec can't encode character '\xe3' in position 1: ordinal not in range(128)" with the html fragment: To solve this problem, I changed the module "Python32\Lib\urllib\parse.py", line 80 _implicit_encoding = 'ascii' to _implicit_encoding =