Instead of inserting the path of the apps into the Python app, the apps are now referenced by their full import path. This solves name clashes with external or native Python libraries. Example: Mayan statistics app vs. Python new statistics library. Every app reference is now prepended with 'mayan.apps'. Existing config.yml files need to be updated manually. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
27 lines
852 B
Python
27 lines
852 B
Python
from __future__ import unicode_literals
|
|
|
|
import os
|
|
|
|
from django.conf import settings
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from mayan.apps.smart_settings import Namespace
|
|
|
|
namespace = Namespace(name='django_gpg', label=_('Signatures'))
|
|
setting_gpg_home = namespace.add_setting(
|
|
global_name='SIGNATURES_GPG_HOME',
|
|
default=os.path.join(settings.MEDIA_ROOT, 'gpg_home'),
|
|
help_text=_(
|
|
'Home directory used to store keys as well as configuration files.'
|
|
),
|
|
is_path=True
|
|
)
|
|
setting_gpg_path = namespace.add_setting(
|
|
global_name='SIGNATURES_GPG_PATH', default='/usr/bin/gpg1',
|
|
help_text=_('Path to the GPG binary.'), is_path=True
|
|
)
|
|
setting_keyserver = namespace.add_setting(
|
|
global_name='SIGNATURES_KEYSERVER', default='pool.sks-keyservers.net',
|
|
help_text=_('Keyserver used to query for keys.')
|
|
)
|