Here's one way. There's likely a cleaner option somewhere else: from django.core.urlresolvers import get_resolver
r = get_resolver('mysite.urls') for pattern in r._get_url_patterns(): print pattern That works, at any rate. Yours, Eric On Jan 23, 2009, at 3:55 AM, NoviceSortOf wrote: > > > * Is there a way to see a full URLConf list of all the imported URLs, > in > an application? > > This seems it would be a big debuging help. > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---