Re: Registered and unregistered users

2005-12-27 Thread Bsoltani
Someone had posted an example of a user regsitration app. The app used djangos own user databases and was pretty easy to use. Unfortunately, I cant find my link. The site had the source and a simple login page. Hopefully someone else will have this

HTTP Response POST

2005-12-12 Thread Bsoltani
I'm trying to do Paypal authentication with django and it requires me to take a post from paypal, append a value to it, and then send it back. I have no problem getting the post from paypal, but what is the best way to send it back to paypal. I know it involves the HttpResponse object, but i'm

Re: Adding a validator a custom manipulator

2005-11-30 Thread bsoltani
yes, it worked. I hadn't seen that part of the model documentation about the automatically called validators. thanks!

Re: Adding a validator a custom manipulator

2005-11-30 Thread bsoltani
so: if I add the above method to my model, it is going to get called automatically when i do object.AddManipulator()?

Re: Adding a validator a custom manipulator

2005-11-30 Thread bsoltani
I think I get what your saying... I'm going to check it out and see if it works. The "tech support" here is amazing. You are you guys aren't outsourcing to India?

Adding a validator a custom manipulator

2005-11-30 Thread bsoltani
I'm trying to validate a file upload field to make sure that the users uploaded file is of a specific type. I know this can be done with a custom manipulator (and in turn a custom validator). However, I still want to be able to use the default manipulator for my object for the rest of the parts

Re: How to add user registration/login to an existing app?

2005-11-21 Thread bsoltani
As long we're counting who's interested, count me in :).