Finish migrating final apps to Django 1.7

This commit is contained in:
Roberto Rosario
2015-03-30 15:31:26 -04:00
parent 8af55ccbef
commit 5a7885ddcb
12 changed files with 50 additions and 23 deletions

View File

@@ -0,0 +1,9 @@
from __future__ import unicode_literals
from django import apps
from django.utils.translation import ugettext_lazy as _
class AppearanceApp(apps.AppConfig):
name = 'appearance'
verbose_name = _('Appearance')

View File

@@ -0,0 +1,9 @@
from __future__ import unicode_literals
from django import apps
from django.utils.translation import ugettext_lazy as _
class ConverterApp(apps.AppConfig):
name = 'converter'
verbose_name = _('Converter')

View File

@@ -0,0 +1,9 @@
from __future__ import unicode_literals
from django import apps
from django.utils.translation import ugettext_lazy as _
class MIMETypesApp(apps.AppConfig):
name = 'mimetype'
verbose_name = _('MIME types')

View File

@@ -1,3 +0,0 @@
from django.db import models
# Create your models here.

View File

@@ -0,0 +1,9 @@
from __future__ import unicode_literals
from django import apps
from django.utils.translation import ugettext_lazy as _
class NavigationApp(apps.AppConfig):
name = 'navigation'
verbose_name = _('Navigation')

View File

@@ -1,3 +0,0 @@
from django.db import models
# Create your models here.

View File

@@ -1,3 +0,0 @@
from django.db import models
# Create your models here.

View File

@@ -1,3 +0,0 @@
from django.db import models
# Create your models here.

View File

@@ -1,3 +0,0 @@
from django.db import models
# Create your models here.

View File

@@ -0,0 +1,9 @@
from __future__ import unicode_literals
from django import apps
from django.utils.translation import ugettext_lazy as _
class StorageApp(apps.AppConfig):
name = 'storage'
verbose_name = _('Storage')

View File

@@ -1,3 +0,0 @@
from django.db import models
# Create your models here.

View File

@@ -62,19 +62,19 @@ INSTALLED_APPS = (
# Base generic
'acls.apps.ACLsApp',
'common.apps.CommonApp',
'converter',
'converter.apps.ConverterApp',
'django_gpg.apps.DjangoGPGApp',
'dynamic_search.apps.DynamicSearchApp',
'lock_manager.apps.LockManagerApp',
'mimetype',
'navigation',
'mimetype.apps.MIMETypesApp',
'navigation.apps.NavigationApp',
'permissions.apps.PermissionsApp',
'project_setup.apps.ProjectSetupApp',
'project_tools.apps.ProjectToolsApp',
'smart_settings.apps.SmartSettingsApp',
'user_management.apps.UserManagementApp',
# Mayan EDMS
'appearance',
'appearance.apps.AppearanceApp',
'checkouts.apps.CheckoutsApp',
'document_acls.apps.DocumentACLsApp',
'document_comments.apps.DocumentCommentsApp',
@@ -93,7 +93,7 @@ INSTALLED_APPS = (
'rest_api.apps.RESTAPIApp',
'sources.apps.SourcesApp',
'statistics.apps.StatisticsApp',
'storage',
'storage.apps.StorageApp',
'tags.apps.TagsApp',
# Placed after rest_api to allow template overriding
'rest_framework_swagger',