Conflicts: apps/common/__init__.py apps/documents/forms.py apps/feedback/__init__.py apps/history/__init__.py apps/main/__init__.py apps/scheduler/api.py apps/sources/models.py docs/releases/index.rst requirements/production.txt settings.py urls.py
71 lines
1.8 KiB
Python
71 lines
1.8 KiB
Python
"""Configuration options for the common app"""
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
from django.contrib.auth.models import User
|
|
|
|
from smart_settings.api import Setting, SettingNamespace
|
|
|
|
from common.literals import PAGE_SIZE_LETTER, PAGE_ORIENTATION_PORTRAIT
|
|
|
|
namespace = SettingNamespace('common', _(u'Common'), module=u'common.conf.settings')
|
|
|
|
Setting(
|
|
namespace=namespace,
|
|
name='TEMPORARY_DIRECTORY',
|
|
global_name='COMMON_TEMPORARY_DIRECTORY',
|
|
default=u'/tmp',
|
|
description=_(u'Temporary directory used site wide to store thumbnails, previews and temporary files. If none is specified, one will be created using tempfile.mkdtemp().'),
|
|
exists=True
|
|
)
|
|
|
|
Setting(
|
|
namespace=namespace,
|
|
name=u'DEFAULT_PAPER_SIZE',
|
|
global_name=u'COMMON_DEFAULT_PAPER_SIZE',
|
|
default=PAGE_SIZE_LETTER,
|
|
)
|
|
|
|
Setting(
|
|
namespace=namespace,
|
|
name=u'DEFAULT_PAGE_ORIENTATION',
|
|
global_name=u'COMMON_DEFAULT_PAGE_ORIENTATION',
|
|
default=PAGE_ORIENTATION_PORTRAIT,
|
|
)
|
|
|
|
Setting(
|
|
namespace=namespace,
|
|
name=u'AUTO_CREATE_ADMIN',
|
|
global_name=u'COMMON_AUTO_CREATE_ADMIN',
|
|
default=True,
|
|
)
|
|
|
|
Setting(
|
|
namespace=namespace,
|
|
name=u'AUTO_ADMIN_USERNAME',
|
|
global_name=u'COMMON_AUTO_ADMIN_USERNAME',
|
|
default=u'admin',
|
|
)
|
|
|
|
Setting(
|
|
namespace=namespace,
|
|
name=u'AUTO_ADMIN_PASSWORD',
|
|
global_name=u'COMMON_AUTO_ADMIN_PASSWORD',
|
|
default=User.objects.make_random_password(),
|
|
)
|
|
|
|
Setting(
|
|
namespace=namespace,
|
|
name=u'LOGIN_METHOD',
|
|
global_name=u'COMMON_LOGIN_METHOD',
|
|
default=u'username',
|
|
description=_(u'Controls the mechanism used to authenticated user. Options are: username, email'),
|
|
)
|
|
|
|
Setting(
|
|
namespace=namespace,
|
|
name=u'ALLOW_ANONYMOUS_ACCESS',
|
|
global_name=u'COMMON_ALLOW_ANONYMOUS_ACCESS',
|
|
default=False,
|
|
description=_(u'Allow non authenticated users, access to all views'),
|
|
)
|