Re: Recover/Reset password on code.djangoproject.com

2008-08-29 Thread Nuno Mariz
On Aug 29, 2:23 pm, "Jacob Kaplan-Moss" <[EMAIL PROTECTED]> wrote: > http://www.djangoproject.com/accounts/password/reset/ > > Jacob Thanks Jacob, The http://www.djangoproject.com/password_change/ link sent in the email is broken. Nuno --~--~-~--~~~---~--~~ You

Recover/Reset password on code.djangoproject.com

2008-08-29 Thread Nuno Mariz
Hi, I've lost my password on http://code.djangoproject.com, there is a way to recover/reset it? Thanks, Nuno --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send

ImageField and newforms-admin branch problems

2008-02-01 Thread Nuno Mariz
Hi, I'm using newforms-admin branch and I'm having some problems with ImageField(possibly with FileField too). When saving a form in the admin and not validates some field the ImageField shows something like: Currently: {'content': '', 'content-type': 'image/png', 'filename': 'test.png'} And on

Re: newforms and encoding problems

2007-03-08 Thread Nuno Mariz
For me works like: [...] form = ProfileForm(request.POST.copy()) if form.is_valid(): data = form.clean_data for i in data : if isinstance(data[i], unicode): data[i] = data[i].encode(settings.DEFAULT_CHARSET) [...] No need to create an old_data.

newforms and encoding problems

2007-03-07 Thread Nuno Mariz
interface works fine(because uses the oldforms, I guess) In my settings.py I have: DEFAULT_CHARSET = 'utf-8' I'm doing something wrong? Thanks, Nuno Mariz --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "D