Re: How to package a django application

2012-08-31 Thread Muhammed Salman
usermail = request.POST['email'] > mailserver.sendWelcome(useremail, 'myn...@mydomain.com ') > success = 'Mail Sent.' > return HttpResponse(success) > > On Fri, Aug 31, 2012 at 10:51 AM, Dennis Lee Bieber > <wlf...@ix.netcom.com >

Re: How to package a django application

2012-08-31 Thread Muhammed Salman
matches a particular criteria i.e (userid : lo...@login.com and password: password), then it shows this as a sucess else it displays login fails. On Friday, August 31, 2012 8:22:03 AM UTC+3, Dennis Lee Bieber wrote: > > On Thu, 30 Aug 2012 19:45:20 -0700 (PDT), Muhammed Salman > <salman.

How to package a django application

2012-08-30 Thread Muhammed Salman
Hi, I am new to python and django development and have developed a simple email based authentication form as a part of an exercise. Now, i have two questions 1: The requirement from me for this exercise was to create it without any frameworks but i started it with django so its easier