Re: A setting that skips tests for thirdparty applications

2010-07-02 Thread John-Scott Atlakson
On Jul 2, 2010, at 7:14 PM, Luke Plant wrote: > On Fri, 2010-07-02 at 14:48 -0700, lakin wrote: >> http://code.djangoproject.com/ticket/13873 >> >> As part of a normal testing routine, I find it annoying that django >> tests ALL of the applications listed in INSTALLED_APPS. While I do >> want it

Re: login_required

2008-11-10 Thread John-Scott Atlakson
On Mon, Nov 10, 2008 at 3:38 PM, Sebastian Bauer <[EMAIL PROTECTED]> wrote: > but we can do this "little" modification in v1.1 > > i think this change will allow site administrator to ban users throughchange > is_active flag > > Waylan Limberg pisze: > > On Mon, Nov 10, 2008 at 2:49 PM, Sebastia

What `User.is_active` really means

2008-10-07 Thread John-Scott Atlakson
A recent commit [1] fixes a ticket [2] that suggested the documentation for `User.is_active` be changed since behavior did not match the documentation. There was a separate earlier changeset [3] related to this ticket that changed the inline help text from "Designates whether this user can log int

Re: DjangoCon meetup Friday Sept 5

2008-08-28 Thread John-Scott Atlakson
On Mon, Aug 25, 2008 at 8:38 PM, Jonathan Nelson <[EMAIL PROTECTED]>wrote: > > I tried to contact the TWID gusy through their website, but I haven't > heard back from them. Anyone know if they're still planning a get > together? Kevin Fricovsky (one of the co-founders of django-nyc) helps out w

Re: Django-updates should be working again.

2008-07-07 Thread John-Scott Atlakson
As one of the original whiners about this issue, I salute you! And a shout out to Karen for being persistent. I give up too easily sometimes ;) John-Scott On Mon, Jul 7, 2008 at 6:19 PM, Jacob Kaplan-Moss < [EMAIL PROTECTED]> wrote: > > Hi folks -- > > OK, I finally figured out what was wrong wi

Re: Maybe DEBUG=True should only record the last N SQL queries?

2008-04-21 Thread John-Scott Atlakson
On Mon, Apr 21, 2008 at 1:26 PM, Rob Hudson <[EMAIL PROTECTED]> wrote: > > Simon Willison wrote: > > Of course, this behaviour is documented... but I think it's reasonable > > to expect that many people will miss that part of the docs. > > Where? I didn't know about this and feel like I've read m

Re: S3 file storage

2008-01-16 Thread John-Scott Atlakson
Marty Alchin wrote: > Feel free to take a look at the code as it stands, to answer that > question. Even though I'm certain it won't work, it should at least > contain all the pieces that are necessary. And since you'll have to > grab the patch from #5361 anyway, be sure to read the documentation

Re: Undocumented admin feature for filtering rows?

2007-12-26 Thread John-Scott Atlakson
We're using this 'hidden' feature as well, for similar reasons. I built a search form that allows the user to select multiple parameters to filter by. I just named the form fields using the appropriate lookup form of the field names (for example, a form TextField named user__first_name, etc.). H