Current check for explicit app_label will cause a lot of headaches

2014-06-11 Thread Ben Davis
In stable/1.7.x, I'm getting a lot of these warnings: venv/src/django/django/contrib/sites/models.py:65: RemovedInDjango19Warning: Model class django.contrib.sites.models.Site doesn't declare an explicit app_label and either isn't in an application in INSTALLED_APPS or else was imported before

Re: Re-open #7231: New "join" parameter for the "extra" QuerySet method

2011-03-12 Thread Ben Davis
Even if it is a kludge, it still accomplishes something that .raw() cannot (as Dan put forth). I think deprecating it in favor of raw doesn't make much sense, since they are two different things. On Mar 9, 2011 4:06 PM, "Dan Watson" wrote: > > > On Tuesday, March 8, 2011

Re: Change list default sort modification proposal

2009-09-23 Thread Ben Davis
sitation to the level of complexity you are > introducing. There is always a strong inclination in the the project for > simplicity. > > > On Thu, Sep 17, 2009 at 5:42 PM, Ben Davis <bendavi...@gmail.com> wrote: > >> I'm not sure if anyone's seen this, but I've written a patch

Re: patch for # 7270, select_related cannot follow reverse one-to-one relationship

2009-09-17 Thread Ben Davis
to re-assign this (or mark it as unassigned so that someone else can pick it up)? I don't want to step on anyone's feet... On Fri, Sep 4, 2009 at 7:09 AM, Russell Keith-Magee <freakboy3...@gmail.com>wrote: > > On Fri, Sep 4, 2009 at 6:30 AM, Ben Davis<bendavi...@gmail.com>

Re: Change list default sort modification proposal

2009-09-17 Thread Ben Davis
I'm not sure if anyone's seen this, but I've written a patch for multi-sort columns in the changelist ui here: http://code.djangoproject.com/ticket/11868 Not sure if this is what you guys had in mind, but I'd be interested in your feedback. On Thu, Sep 17, 2009 at 12:57 PM, Joshua Russo

Re: Question on ticket triage process

2009-09-17 Thread Ben Davis
So by documentation, do you mean updating the official django docs, or better documentation in the code itself? On Sat, Sep 12, 2009 at 2:15 PM, Eric Holscher wrote: > At first glance, tests and documentation. Everything needs both of these > things before they go into

Question on ticket triage process

2009-09-12 Thread Ben Davis
I noticed that ticket #9015 has been sitting at "accepted" for almost a year now. What's the next step for such a ticket? Does it need a milestone? Also, who is responsible for setting milestones?

#11868, UI proposal for sorting by multiple fields in changelist

2009-09-12 Thread Ben Davis
http://code.djangoproject.com/ticket/11868 I've made an attempt at adding multiple sort columns to the admin changelist. I'm basically putting this up here as an initial proposal of what I think would be a good starting point for a UI for multiple column sorting. The idea is that each time you

patch for # 7270, select_related cannot follow reverse one-to-one relationship

2009-09-03 Thread Ben Davis
Hi I've submitted a patch for this bug that I'd like to have considered for some trunk action... I can't take the credit for all the work on this, but it seems I'm taking the initiative to get it resolved. I really only had one question about a particular change that was needed in order for the