Re: proposal: decouple admin index page from INSTALLED_APPS

2009-09-04 Thread Russell Keith-Magee
On Sat, Sep 5, 2009 at 3:32 AM, James Bennett wrote: > > On Fri, Sep 4, 2009 at 2:21 PM, andybak wrote: >> 1. I think worrying about projects vs. apps is a red-herring. We are >> talking about a way to configure an admin app. There might be several >> of these on a 'site/project/whatever' > > Sinc

Re: proposal: decouple admin index page from INSTALLED_APPS

2009-09-04 Thread James Bennett
On Fri, Sep 4, 2009 at 2:21 PM, andybak wrote: > 1. I think worrying about projects vs. apps is a red-herring. We are > talking about a way to configure an admin app. There might be several > of these on a 'site/project/whatever' Since this all seems to be specific to particular instances of Admi

Re: proposal: decouple admin index page from INSTALLED_APPS

2009-09-04 Thread andybak
I've been hoping a discussion like this would start as soon as 1.1 was out the door. It would tie in nicely with the Admin GSOC work as well. I would like to chime in with some ideas for requirements and stay away from the implementation discussion for now. 1. I think worrying about projects vs.

Re: proposal: decouple admin index page from INSTALLED_APPS

2009-09-04 Thread patrickk
alright, I´ve been trying to implement the most basic functionality and here´s what I came up with. Please note that this is just a draft in order to explain what I´ve been talking about. It works ok, but it probably can be done better. thanks, patrick – SETTINGS.PY ADMIN_COLLECTIONS = [

Re: proposal: decouple admin index page from INSTALLED_APPS

2009-09-04 Thread patrickk
On 4 Sep., 15:30, Russell Keith-Magee wrote: > On Fri, Sep 4, 2009 at 8:37 PM, patrickk wrote: > > > fair enough. > > > I don´t have a problem with just seperating INSTALLED_APPS from > > ADMIN_APPS within the settings-file. I just thought another admin-file > > is nicer (but that´s not the key

Re: proposal: decouple admin index page from INSTALLED_APPS

2009-09-04 Thread Russell Keith-Magee
On Fri, Sep 4, 2009 at 8:37 PM, patrickk wrote: > > fair enough. > > I don´t have a problem with just seperating INSTALLED_APPS from > ADMIN_APPS within the settings-file. I just thought another admin-file > is nicer (but that´s not the key argument of my proposal). > > INSTALLED_APPS = ( >    'dj

Re: #8010: adding support for multiple test files for applications

2009-09-04 Thread Russell Keith-Magee
On Fri, Sep 4, 2009 at 6:21 PM, Evgeny Sizikov wrote: > > Hi, > > I'd like the developers community to review the #8010 and the last > patch attached to the ticket. It still seems to me that it makes a > great sense and worth to make it go into the mainline Django. I echo Malcolm's comment when h

#8010: adding support for multiple test files for applications

2009-09-04 Thread Evgeny Sizikov
Hi, I'd like the developers community to review the #8010 and the last patch attached to the ticket. It still seems to me that it makes a great sense and worth to make it go into the mainline Django. Regards, Evgeny Sizikov --~--~-~--~~~---~--~~ You received this

Re: #4926, Ordering in admin listview ignores ordering in admin options

2009-09-04 Thread Joshua Russo
On Fri, Sep 4, 2009 at 11:34 AM, Russell Keith-Magee wrote: > > On Thu, Sep 3, 2009 at 12:07 PM, bendavis78 wrote: > > > > This issue has been up with a patch for quite awhile, and wanted to > > get some feedback from some devs on this. The fix is pretty simple, > > and seems to work ok for me

Re: proposal: decouple admin index page from INSTALLED_APPS

2009-09-04 Thread patrickk
fair enough. I don´t have a problem with just seperating INSTALLED_APPS from ADMIN_APPS within the settings-file. I just thought another admin-file is nicer (but that´s not the key argument of my proposal). INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'dja

Re: #4926, Ordering in admin listview ignores ordering in admin options

2009-09-04 Thread Russell Keith-Magee
On Thu, Sep 3, 2009 at 12:07 PM, bendavis78 wrote: > > This issue has been up with a patch for quite awhile,  and wanted to > get some feedback from some devs on this.   The fix is pretty simple, > and seems to work ok for me. > > Here's my thoughts on it:  When I specify ordering with multiple >

Re: proposal: decouple admin index page from INSTALLED_APPS

2009-09-04 Thread Russell Keith-Magee
On Fri, Sep 4, 2009 at 7:19 PM, patrickk wrote: > > thanks for the reply. > > On 4 Sep., 13:02, Luke Plant wrote: >> On Friday 04 September 2009 10:00:37 patrickk wrote: >> >> > e.g, when I´m using djangos auth-app and I´m extending the user-model >> > with a user-profile, I´m having "auth" (with

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

2009-09-04 Thread Russell Keith-Magee
On Fri, Sep 4, 2009 at 6:30 AM, Ben Davis wrote: > 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. ... which is exactly what is neede

Re: proposal: decouple admin index page from INSTALLED_APPS

2009-09-04 Thread patrickk
thanks for the reply. On 4 Sep., 13:02, Luke Plant wrote: > On Friday 04 September 2009 10:00:37 patrickk wrote: > > > e.g, when I´m using djangos auth-app and I´m extending the user-model > > with a user-profile, I´m having "auth" (with users and groups) and > > "user" (with user profile) on my

Re: proposal: decouple admin index page from INSTALLED_APPS

2009-09-04 Thread Luke Plant
On Friday 04 September 2009 10:00:37 patrickk wrote: > e.g, when I´m using djangos auth-app and I´m extending the user-model > with a user-profile, I´m having "auth" (with users and groups) and > "user" (with user profile) on my admin index page. orderd by names, > auth is very much on the top of

Re: proposal: decouple admin index page from INSTALLED_APPS

2009-09-04 Thread Joshua Russo
On Fri, Sep 4, 2009 at 8:00 AM, patrickk wrote: > > hi everyone, > > I just wanted to outline a basic idea in order to improve (at least > from my point of view) the index-page of the admin-interface. I don´t > have any code to share (so far), so I´m basically explaining my idea - > if people agr

proposal: decouple admin index page from INSTALLED_APPS

2009-09-04 Thread patrickk
hi everyone, I just wanted to outline a basic idea in order to improve (at least from my point of view) the index-page of the admin-interface. I don´t have any code to share (so far), so I´m basically explaining my idea - if people agree that this is useful, I´m trying to submit a patch. here´s

Re: Open Source Sample

2009-09-04 Thread Joshua Russo
On Thu, Sep 3, 2009 at 10:03 PM, My Idea wrote: > Hello there! > > I'm looking for any open source project that uses django 1.x as platform > for study proposal. I've already in touch with djangobook.com and other > stuffs but I'm still missing something more close to real world. > > Is there an