Namespace the apps

This commit is contained in:
Patrick Altman 2014-12-18 08:17:58 -06:00
parent 5f311ca7bd
commit 71e9ca11bd
16 changed files with 61 additions and 0 deletions

View file

@ -0,0 +1,3 @@
# @@@ Reconcile differences with django-boxes [1] and remove from Symposion
# [1] http://github.com/eldarion/django-boxes/

View file

@ -0,0 +1,2 @@
# @@@ Consider replacing with pinax-wiki [1]
default_app_config = "symposion.cms.apps.CMSConfig"

7
symposion/cms/apps.py Normal file
View file

@ -0,0 +1,7 @@
from django.apps import AppConfig
class CMSConfig(AppConfig):
name = "symposion.cms"
label = "symposion_cms"
verbose_name = "Symposion CMS"

View file

@ -0,0 +1 @@
default_app_config = "symposion.conference.apps.ConferenceConfig"

View file

@ -0,0 +1,7 @@
from django.apps import AppConfig
class ConferenceConfig(AppConfig):
name = "symposion.conference"
label = "symposion_conference"
verbose_name = "Symposion Conference"

View file

@ -0,0 +1 @@
default_app_config = "symposion.proposals.apps.ProposalsConfig"

View file

@ -0,0 +1,7 @@
from django.apps import AppConfig
class ProposalsConfig(AppConfig):
name = "symposion.proposals"
label = "symposion_proposals"
verbose_name = "Symposion Proposals"

View file

@ -0,0 +1 @@
default_app_config = "symposion.reviews.apps.ReviewsConfig"

View file

@ -0,0 +1,7 @@
from django.apps import AppConfig
class ReviewsConfig(AppConfig):
name = "symposion.reviews"
label = "symposion_reviews"
verbose_name = "Symposion Reviews"

View file

@ -0,0 +1 @@
default_app_config = "symposion.schedule.apps.ScheduleConfig"

View file

@ -0,0 +1,7 @@
from django.apps import AppConfig
class ScheduleConfig(AppConfig):
name = "symposion.schedule"
label = "symposion_schedule"
verbose_name = "Symposion Schedule"

View file

@ -0,0 +1 @@
default_app_config = "symposion.speakers.apps.SpeakersConfig"

View file

@ -0,0 +1,7 @@
from django.apps import AppConfig
class SpeakersConfig(AppConfig):
name = "symposion.speakers"
label = "symposion_speakers"
verbose_name = "Symposion Speakers"

View file

@ -0,0 +1 @@
default_app_config = "symposion.sponsorship.apps.SponsorshipConfig"

View file

@ -0,0 +1,7 @@
from django.apps import AppConfig
class SponsorshipConfig(AppConfig):
name = "symposion.sponsorship"
label = "symposion_sponsorship"
verbose_name = "Symposion Sponsorship"

View file

@ -0,0 +1 @@
# @@@ Replace this with pinax-teams