Re: Django Admin Revamp - Any updates?

2012-04-30 Thread Brett H
Now that django is on github the best thing that could happen is to set it free and split it out as a separate django-admin repository that people can build on, and making site something like site = load_admin_site(settings.ADMIN_SITE) so that people can do drop in replacements. Not just that but s

Re: Multi-tenant Django

2012-05-09 Thread Brett H
Alec, Mezzanine is using standard django.contrib.sites. Nothing special there. The main issue with the sites framework is that each site runs using a separate process and settings, so the resources can add up depending on how you setup the stack, and managing the tenants becomes the issue as they

Re: Yak shaving the test framework on the way to pluggable user models (#3011)

2012-08-25 Thread Brett H
Once #17365 (as per https://github.com/jezdez/django-discover-runner) is implemented it will be a lot cleaner, since that splits out 1 & 2 from 3. Lets call them Django, Django api compatible, and Django project api Three things hammered home for me that Carl's approach is the correct way to do

Re: Should user passwords be more strict?

2011-09-14 Thread Brett H
All you need to know about implementing your own policy: http://xkcd.com/936/ On Sep 14, 1:17 pm, Paul McMillan wrote: > I'm happy you're concerned about this, but suggest you search the > archives for similar material so that new threads can contribute new > content. > > This search is probably

Re: Cleaning up manage.py and import paths

2011-10-12 Thread Brett H
. Brett H -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com. To unsubscribe from this group, send email to django-developers+unsubscr...@googlegroups.com. For mo

Re: Cleaning up manage.py and import paths

2011-10-12 Thread Brett H
+1 on installing CWD. Integrates nicely with the virtualenvwrapper mkproject command. I have a much longer reasoning why startproject should not get into creating the outer folder which is effectively the distribution folder, and the domain of distribution packaging tools, so I'll follow this post

Re: Cleaning up manage.py and import paths

2011-10-12 Thread Brett H
or how django deals with python paths and finding package directories is there because the python methods sucked, but really django projects are no more special than any other python distribution with metadata, packages, data, docs, scripts, and sources. Brett On Oct 13, 11:21 am, Brett H wrote

Documentation url

2008-10-01 Thread Brett H
I cringe at posting this but.. there's a little forward slash that suddenly appeared on the Django website documentation url http://docs.djangoproject.com/en/dev// Is it just visiting or should I re-bookmark? --~--~-~--~~~---~--~~ You received this message becaus