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 including highlighting of the currently selected navigation items.... so much for the intro :-)
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. (I want to search through all installed applications and check if there is a sitemap.py defined... and load data from there to build a global navigation tree) Of course I could get the list of strings from settings.py and work on from there, but I was wondering if there is a method that actually returns a list of callable python modules.... any ideas? many thanks stefan --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

