Browse Source

Add 'apps' modules to describe each application

Baptiste Jonglez 10 years ago
parent
commit
d8bedc4e1b

+ 1 - 0
coin/billing/__init__.py

@@ -0,0 +1 @@
+default_app_config = 'coin.billing.apps.BillingConfig'

+ 8 - 0
coin/billing/apps.py

@@ -0,0 +1,8 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+from django.apps import AppConfig
+
+
+class BillingConfig(AppConfig):
+        name = "coin.billing"
+        verbose_name = "Billing"

+ 1 - 0
coin/configuration/__init__.py

@@ -0,0 +1 @@
+default_app_config = 'coin.configuration.apps.ConfigurationConfig'

+ 8 - 0
coin/configuration/apps.py

@@ -0,0 +1,8 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+from django.apps import AppConfig
+
+
+class ConfigurationConfig(AppConfig):
+        name = "coin.configuration"
+        verbose_name = "Configurations"

+ 1 - 0
coin/isp_database/__init__.py

@@ -0,0 +1 @@
+default_app_config = 'coin.isp_database.apps.ISPDatabaseConfig'

+ 8 - 0
coin/isp_database/apps.py

@@ -0,0 +1,8 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+from django.apps import AppConfig
+
+
+class ISPDatabaseConfig(AppConfig):
+        name = "coin.isp_database"
+        verbose_name = "ISP database"

+ 1 - 0
coin/members/__init__.py

@@ -0,0 +1 @@
+default_app_config = 'coin.members.apps.MembersConfig'

+ 8 - 0
coin/members/apps.py

@@ -0,0 +1,8 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+from django.apps import AppConfig
+
+
+class MembersConfig(AppConfig):
+        name = "coin.members"
+        verbose_name = "Members"

+ 1 - 0
coin/offers/__init__.py

@@ -0,0 +1 @@
+default_app_config = 'coin.offers.apps.OffersConfig'

+ 8 - 0
coin/offers/apps.py

@@ -0,0 +1,8 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+from django.apps import AppConfig
+
+
+class OffersConfig(AppConfig):
+        name = "coin.offers"
+        verbose_name = "Offers"

+ 1 - 0
coin/resources/__init__.py

@@ -0,0 +1 @@
+default_app_config = 'coin.resources.apps.ResourcesConfig'

+ 8 - 0
coin/resources/apps.py

@@ -0,0 +1,8 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+from django.apps import AppConfig
+
+
+class ResourcesConfig(AppConfig):
+        name = "coin.resources"
+        verbose_name = "Resources"

+ 1 - 0
coin/reverse_dns/__init__.py

@@ -0,0 +1 @@
+default_app_config = 'coin.reverse_dns.apps.ReverseDNSConfig'

+ 8 - 0
coin/reverse_dns/apps.py

@@ -0,0 +1,8 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+from django.apps import AppConfig
+
+
+class ReverseDNSConfig(AppConfig):
+        name = "coin.reverse_dns"
+        verbose_name = "Reverse DNS"

+ 1 - 0
coin/vpn/__init__.py

@@ -0,0 +1 @@
+default_app_config = 'coin.vpn.apps.VPNConfig'

+ 8 - 0
coin/vpn/apps.py

@@ -0,0 +1,8 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+from django.apps import AppConfig
+
+
+class VPNConfig(AppConfig):
+        name = "coin.vpn"
+        verbose_name = "VPN"

+ 1 - 0
simple_dsl/__init__.py

@@ -0,0 +1 @@
+default_app_config = 'simple_dsl.apps.SimpleDSLConfig'

+ 8 - 0
simple_dsl/apps.py

@@ -0,0 +1,8 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+from django.apps import AppConfig
+
+
+class SimpleDSLConfig(AppConfig):
+        name = "simple_dsl"
+        verbose_name = "Simple DSL"