Generated: Sun 2013-11-24 13:53 SGT
Source file: /Users/martin/Repos/django-frequently/frequently/cms_app.py
Stats: 0 executed, 4 missed, 3 excluded, 8 ignored
"""django-cms Apphook for the ``django-frequently`` application."""from cms.app_base import CMSAppfrom cms.apphook_pool import apphook_poolfrom django.utils.translation import ugettext_lazy as _class FrequentlyApphook(CMSApp): name = _("Frequently App") urls = ["frequently.urls"]apphook_pool.register(FrequentlyApphook)