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'

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 no

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 f

Django html input error

2013-05-06 Thread Rodolfo
ng = 'ascii' to _implicit_encoding = 'utf-8' Is this the best solution? Thank you Rodolfo Django version: 1.5a1 Python version: 3.2.3 -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsub

Re: _get_next_or_previous_ usage

2008-09-21 Thread Rodolfo
7;re defined). []'s Rodolfo On Sep 21, 5:36 pm, "Rafael Beccar Barca" <[EMAIL PROTECTED]> wrote: > Hi, > > I didn't find documentation for _get_next_or_previous_by_FIELD and > _get_next_or_previous_in_order > > What parameters should I pass when cal

Re: Sorting list of objets in Python/Django

2008-09-21 Thread Rodolfo
x27;Smith', 1)] The __cmp__ method does the magic, it's used when you call b.sort(). I added __repr__ just to see legible output... [1] http://docs.python.org/ref/customization.html []'s Rodolfo On Sep 21, 5:54 pm, Nianbig <[EMAIL PROTECTED]> wrote: > Ah, thanks! &g

Re: windows can't find django-admin.py

2008-09-19 Thread Rodolfo
I guess for that to work you have to have it on Windows PATH env. variable, and not PYTHONPATH. That's cuz Windows can't find the file you're passing to python. []'s Rodolfo tcp escreveu: > Hi, > > New to Python...getting started with Django. > > I've

Re: Forms across multiple pages?

2008-09-07 Thread Rodolfo
est() Check the documentation on forms to see how to pass validation data. http://docs.djangoproject.com/en/dev/topics/forms/#using-a-form-in-a-view []'s Rodolfo On Sep 6, 9:16 am, MikeHowarth <[EMAIL PROTECTED]> wrote: > Can't seem to find anything of relevance in the doc

Re: 'Django in Under a Minute' screencast, requesting feedback before v1-final is ready

2008-09-03 Thread Rodolfo
Man, nice video! Go for it with 1.0 final! And, btw, never thought I'd see Google Chrome in a video not related to it :P []'s Rodolfo On Sep 3, 6:07 pm, "Ian Ozsvald" <[EMAIL PROTECTED]> wrote: > I've created a 57 second screencast showing 'Django in

Re: ANNOUNCE: Django 1.0 released

2008-09-03 Thread Rodolfo
Yeah! Great news Wish I could join ya' ll at DjangoCon. So, since I`m in Brazil, can't wait to attend PyCon Brasil late this month. Django is one of the highlights! []'s Rodolfo On Sep 3, 9:07 pm, "James Bennett" <[EMAIL PROTECTED]> wrote: > The Djan

Re: Processing multiple forms in same page

2008-08-23 Thread Rodolfo
Just for curiosity, why would one have two forms in a single page? I don't think it is possible to submit the two in a shot. Maybe only of them is intended to be filled per access? []s Rodolfo On Aug 23, 4:38 pm, Archis <[EMAIL PROTECTED]> wrote: > Hi Everyone, > > I am n