Re: Django password reset modification

2011-05-07 Thread Amanjeev Sethi
I second that. Email is the 'postcard' of the internet world. I wouldn't send plain text password through email(s) even while running HTTPS web based email services. On Sat, May 7, 2011 at 11:27 AM, Andy McKay wrote: > > On 2011-05-05, at 9:36 PM, Phui-Hock wrote: > > On May 6, 4:22 am, Shawn

Re: filter in python

2011-05-08 Thread Amanjeev Sethi
Is it possible for you to use Django Haystack for search? http://haystacksearch.org/ -- 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

Re: Djangodomain hosting

2011-05-08 Thread Amanjeev Sethi
On Sun, May 8, 2011 at 6:55 AM, Daniel de la Cuesta wrote: > and they don't responde to any > support ticket. > Boy! that is bad. At least they should respond with something. -- AJ -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to

Re: How to cache model field?

2011-05-10 Thread Amanjeev Sethi
oops. my bad wrong email. sorry. -- 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 django-users+unsubscr...@googlegroups.com. For mo

Re: How to cache model field?

2011-05-10 Thread Amanjeev Sethi
You can have a field called "total_votes" in the Book model. Then you can override the save() method in the Vote class, which calculates the total votes on a particular Book and updates the "total_votes" in the book. Also, why not use https://github.com/brosner/django-voting Django-voting app? I

Re: How to deal with an auto-incrementing primary key

2011-05-10 Thread Amanjeev Sethi
> > Will south add in the new ID field? I have never come across a situation where South was not able to change something in a table for me, so far. Try it please. On Tue, May 10, 2011 at 1:52 PM, wilbur wrote: > I definitely need to keep the database, and have South installed, but > should I

Re: Der Prozess kann nicht auf die Datei zugreifen, da sie von einem anderen Prozess verwendet wird: PDF Upload

2011-05-12 Thread Amanjeev Sethi
I am still learning systems, programming and Django myself but doesn't that error look like you have not closed a previous opened File? -- 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@googlegroup

Re: Django manage.py shell won't indent

2011-05-15 Thread Amanjeev Sethi
How about spaces? On Sun, May 15, 2011 at 8:30 AM, Jinhyuk Im wrote: > I am using Django 1.3 at Ubuntu Server 10.04. > I can't use tab key in manage.py shell. > but, I can use tab key in Python 2.6 Shell > > >>> for link in links: > ... > Display all 176 possibilities? (y or n) > > What should I

Re: running a django app, help please?

2011-05-25 Thread Amanjeev Sethi
I think the basic tutorial ( https://docs.djangoproject.com/en/dev/intro/tutorial01/) talks about apps: Projects vs. apps What's the difference between a project and an app? An app is a Web application that does something -- e.g., a Weblog system, a database of public records or a simple poll app

Re: django register and login form

2011-05-28 Thread Amanjeev Sethi
Django has a nice user authentication system. Have you started reading the docs? I can point you to the auth page: https://docs.djangoproject.com/en/1.3/topics/auth/ This page gives you the basics of authentication system in Django. I have found this article to be helpful when I was learning auth

Re: Setting up dev/test/production environments on the server (dreamhost)

2011-06-03 Thread Amanjeev Sethi
Linode looks nice plus it will teach me some administration side too. If I try using linode, what is the best setup (Linux Distro, web server support, modules like mod_wsgi? etc ) for Django websites on linode? On Fri, Jun 3, 2011 at 2:48 PM, Javier Guerra Giraldez wrote: > On Fri, Jun 3, 201

Re: About using Django Auth with my app, Auto saving the User

2011-03-24 Thread Amanjeev Sethi
Thanks a lot. -- 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 django-users+unsubscr...@googlegroups.com. For more options, visit t