Re: how to get a list of all installed applications

2014-08-31 Thread Cj Welborn
On Saturday, August 30, 2014 6:02:57 PM UTC-5, Collin Anderson wrote: > > The soon-to-be-released version 1.7 has a documented API for accessing all > models and apps: > > https://docs.djangoproject.com/en/1.7/ref/applications/ > That's awesome, I'll be on the lookout for it. -- You received t

Re: how to get a list of all installed applications

2014-08-30 Thread Collin Anderson
The soon-to-be-released version 1.7 has a documented API for accessing all models and apps: https://docs.djangoproject.com/en/1.7/ref/applications/ -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receivi

Re: how to get a list of all installed applications

2014-08-30 Thread Cj Welborn
On Sunday, May 20, 2007 11:51:49 AM UTC-5, Malcolm Tredinnick wrote: > > Have a look in django/db/models/loading.py . There are a number of > useful methods in there. In particular, get_apps(), which contrary to > what you claim above, should give you all installed apps, not installed > models (y

Re: how to get a list of all installed applications

2007-05-20 Thread Malcolm Tredinnick
On Sun, 2007-05-20 at 18:44 +0200, Stefan Foulis[spiderware gmbh] wrote: [...] > I've used django.db.models.get_apps() to get all the models for all > installed applications before. Is there a similar method somewhere in > django to get all the installed applications. Have a look in django/db

how to get a list of all installed applications

2007-05-20 Thread Stefan Foulis [spiderware gmbh]
I'm working on a little Navigation/Sitemap-ish application that will provide a way to define the sitemap similar to urls.py, but with way more options. based on that data the application will automatically create the necessary urlpatterns und provide a facility to make nice navigations inc