Re: Altering the auth_user model?

2010-03-24 Thread Sandman
Hi Derek, One way to do this would be to create a proxy model that can be used throughout your project. Check out http://docs.djangoproject.com/en/dev/topics/db/models/#proxy-models for more info. Take care, Rajiv. On 3/24/10 7:44 AM, Derek wrote: > I am currently using UserProfile to create

Re: Django, manage.py and Ubuntu

2010-01-19 Thread Sandman
I might be missing something here but I thought that the manage.py commands were looked for in the "management/commands" subdirectories of INSTALLED_APPS. According to your email, the loaddata command lives in maintenance/commands. Is your set up accounting for this non-default behavior? Take

Re: Django Contrib's UserCreationForm (Potential Bug)

2010-01-07 Thread Sandman
On 1/7/10 2:13 AM, Daniel Roseman wrote: > On Jan 7, 4:36�am, Sandman <sandman10...@gmail.com> wrote: >> Hi All, >> >> Happy new year. >> >> I've been using the svn version of django while developing a small app. >> Yesterday after I updated the code,

Django Contrib's UserCreationForm (Potential Bug)

2010-01-06 Thread Sandman
Hi All, Happy new year. I've been using the svn version of django while developing a small app. Yesterday after I updated the code, one of my tests started returning an error. In fixing this error, I may have uncovered a bug but I can't be sure if this is intentional behavior (I'm not really an

Re: Installation Problem on Mac OS Leopard

2009-11-28 Thread Sandman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 If the problem is with extracting the files from the tar.gz, you might want to make sure that you are using the command tar -xvzf ... and not tar xvzf (Note the hyphen '-') before the xvzf. These are options passed to the tar command. I hope this

Re: request.POST['value'] cannot get value, 500 error

2009-11-11 Thread Sandman
I've been able to extract values from POST and GET objects by doing request.POST.get('value') Did you try this? Sandman. On Nov 11, 9:07 pm, robinne <develo...@computer-shoppe.net> wrote: > Thanks. I tried a lot of different options but nothing was working. > Finally go