Rename the tornado server app to 'kaze'.

This commit is contained in:
Roberto Rosario
2016-04-25 19:29:15 -04:00
parent 8f553091e4
commit b169d037bf
8 changed files with 9 additions and 8 deletions

View File

@@ -0,0 +1,3 @@
from __future__ import unicode_literals
default_app_config = 'kaze.apps.KazeApp'

View File

@@ -5,9 +5,9 @@ from django.utils.translation import ugettext_lazy as _
from common import MayanAppConfig
class ServerApp(MayanAppConfig):
name = 'server'
verbose_name = _('Server')
class KazeApp(MayanAppConfig):
name = 'kaze'
verbose_name = _('Kaze')
def ready(self):
super(ServerApp, self).ready()
super(KazeApp, self).ready()

View File

@@ -1,3 +0,0 @@
from __future__ import unicode_literals
default_app_config = 'server.apps.ServerApp'

View File

@@ -71,11 +71,11 @@ INSTALLED_APPS = (
'converter',
'django_gpg',
'dynamic_search',
'kaze',
'lock_manager',
'mimetype',
'navigation',
'permissions',
'server',
'smart_settings',
'user_management',
# Mayan EDMS

View File

@@ -35,3 +35,4 @@ python-magic==0.4.10
pytz==2015.4
sh==1.11
tornado==4.3