mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-03 15:38:59 +00:00
22 lines
606 B
Python
22 lines
606 B
Python
from django.conf import settings
|
|
|
|
def get_all_pages_struct():
|
|
"""
|
|
Return an iterator over all distinct pages on the site.
|
|
Each page is returned as a tuple consisting of:
|
|
(url, search weight, last_modified)
|
|
|
|
It will do so by looking for the module "struct" in all
|
|
installed applications, and calling the get_struct() function
|
|
in all such modules.
|
|
"""
|
|
for app in settings.INSTALLED_APPS:
|
|
if app.startswith('pgweb.'):
|
|
try:
|
|
m = __import__(app+".struct", {}, {}, 'get_struct')
|
|
except:
|
|
# Failed to import - probably module didnd't exist
|
|
continue
|
|
|
|
for x in m.get_struct(): yield x
|