Re: Custom Validator inside of a Custom Manipulator

2007-10-20 Thread Michael Newman
Now that I am moving forward, I am beginning to wonder about the automatic (Free) validation that is supplied in those docs I mentioned above. The profanity filter for example is a great tool. Will that stay in the 1+ versions of Django? I could use them in a BaseForm as: clean_textfield(self):

Re: Custom Validator inside of a Custom Manipulator

2007-10-20 Thread Michael Newman
Thanks for the help. I finally put two and two together. I was following this tutorial http://www.djangoproject.com/documentation/forms/ and somehow got myself all messed up. Thanks for the reply and back to the code. On Oct 20, 4:02 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Well... Yo

Re: Custom Validator inside of a Custom Manipulator

2007-10-20 Thread [EMAIL PROTECTED]
Well... Your code looks like a crazy mixture of newforms and oldforms :) Now it is much wiser to use newforms. They don't have validators, nor manipulators. The information on newforms can be found in django documentation. --~--~-~--~~~---~--~~ You received this m

Custom Validator inside of a Custom Manipulator

2007-10-19 Thread Michael Newman
I am so close to getting this project done. The last little bit is all about validation. I have been following the docs pretty closely and am really at a loss as to what is going on right now. The Error: TypeError at /videoUploader/ __init__() got an unexpected keyword argument 'field_name' Here