app/django/templatetags/__init__.py
author Mario Ferraro <fadinlight@gmail.com>
Sun, 25 Oct 2009 19:21:43 +0000
changeset 3042 72eec4d72471
parent 54 03e267d67478
permissions -rw-r--r--
Script to run JSDocToolkit over our JS files. It creates a documentation directory under app/soc/content/js with the output for private and public docs, with or without undocumented functions.

from django.conf import settings

for a in settings.INSTALLED_APPS:
    try:
        __path__.extend(__import__(a + '.templatetags', {}, {}, ['']).__path__)
    except ImportError:
        pass