Re: INSTALLED_APPS partially shown in admin with mod_python

2006-08-07 Thread Kilian CAVALOTTI
Hi Malcolm, First of all, I'm really sorry about the delay, I was on my no-internet-no-cellphone vacation week, and just got your message today. I ran all the following tests with today's SVN (r3529). On Tuesday 01 August 2006 07:11, Malcolm Tredinnick wrote: > 1. In the original django-users

Re: INSTALLED_APPS partially shown in admin with mod_python

2006-08-02 Thread favo
sorry, "move" should be "remove" urls.py is quite simple: from myproject.myapp.models.category import Category urlpatterns = patterns('', ... ) since I only have apache mod_python on my production server and my app is very large, very hard to debug. I 'll try to set mode_python on my develop-sta

Re: INSTALLED_APPS partially shown in admin with mod_python

2006-08-01 Thread Malcolm Tredinnick
On Tue, 2006-08-01 at 09:02 +, favo wrote: > I find a way to repeat this problems > > a snapshot of my apps' Directory Structure: > \myapp\models\ > \myapp\models\__init__.py > \myapp\models\category.py -- a model, manually specify app_label = > "myapp" in Meta > \myapp\urls.py -- import

Re: INSTALLED_APPS partially shown in admin with mod_python

2006-08-01 Thread favo
seems we should find a way to let mod_python load all model first. --~--~-~--~~~---~--~~ 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 T

Re: INSTALLED_APPS partially shown in admin with mod_python

2006-08-01 Thread favo
I find a way to repeat this problems a snapshot of my apps' Directory Structure: \myapp\models\ \myapp\models\__init__.py \myapp\models\category.py -- a model, manually specify app_label = "myapp" in Meta \myapp\urls.py -- import category.py in urls.py, if we import category.py then the app

Re: INSTALLED_APPS partially shown in admin with mod_python

2006-07-31 Thread Malcolm Tredinnick
Hi Kilian, On Thu, 2006-07-27 at 22:40 +0200, Kilian CAVALOTTI wrote: > On Thursday 27 July 2006 18:48, Malcolm Tredinnick wrote: > > Aargh! Can you make a ticket with these details so that we don't lose > > them, please (I have flagged this email to look at later, too). > > Sure. It's done as

Re: INSTALLED_APPS partially shown in admin with mod_python

2006-07-31 Thread favo
I meet the same error these day, have any solution now? --~--~-~--~~~---~--~~ 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 unsubscri

Re: INSTALLED_APPS partially shown in admin with mod_python

2006-07-27 Thread Kilian CAVALOTTI
On Thursday 27 July 2006 18:48, Malcolm Tredinnick wrote: > Aargh! Can you make a ticket with these details so that we don't lose > them, please (I have flagged this email to look at later, too). Sure. It's done as ticket #2438. > This -- > the get_apps() and get_models() code -- is a slight h

Re: INSTALLED_APPS partially shown in admin with mod_python

2006-07-27 Thread Malcolm Tredinnick
Hi Kilian, On Thu, 2006-07-27 at 18:36 +0200, Kilian CAVALOTTI wrote: [...] > After that, I'm truly lost, and I get no idea of what could be wrong. Did > anyone has any idea why the hasattr function could return different values > according to the server used? Aargh! Can you make a ticket with

Re: INSTALLED_APPS partially shown in admin with mod_python

2006-07-27 Thread Kilian CAVALOTTI
> I recently tried to use my django project with apache2+mod_python, after > a developement period using the integrated server. After some struggle, > I finally have a (quite) working installation. But the admin module > shows a really weird quirk. I have two custom applications, listed in > INSTA