I'm going to answer my own question in case anyone searches in the
future. And, eventually, I'll start thinking in Python and figure out
these things before sending a message to the list. I'm afraid too much
Java has warped me forever.

I just added the request object as an attribute on the form before
calling the is_valid method. In other words:

if request.method == 'POST':
    form = ChangePasswordForm(request.POST)
    form.request = request
    if form.is_valid():

Now all of the clean methods can access the request object as
self.request inside the form class.

Todd

On Sun, 2007-08-05 at 10:08 -0400, Todd O'Bryan wrote:
> I'm trying to translate a Change Password page I wrote using oldforms
> into newforms and have hit a snag. I need to validate that the user
> types in his/her current password correctly and it seems like writing a
> clean_current_password() method in the form class is the easiest way to
> do that, since errors and such will appear where they should, without me
> having to worry much about them.
> 
> Unfortunately, I can't figure out how to access the request object when
> I'm cleaning the form data. Is there a way to get to it, or do I have to
> do this kind of validation in the view and handle all the errors
> manually?



--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to