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>
34 lines
1.2 KiB
Python
34 lines
1.2 KiB
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='sources', label=_('Sources'))
|
|
|
|
setting_scanimage_path = namespace.add_setting(
|
|
global_name='SOURCES_SCANIMAGE_PATH', default='/usr/bin/scanimage',
|
|
help_text=_(
|
|
'File path to the scanimage program used to control image scanners.'
|
|
),
|
|
is_path=True
|
|
)
|
|
setting_staging_file_image_cache_storage = namespace.add_setting(
|
|
global_name='SOURCES_STAGING_FILE_CACHE_STORAGE_BACKEND',
|
|
default='django.core.files.storage.FileSystemStorage', help_text=_(
|
|
'Path to the Storage subclass to use when storing the cached '
|
|
'staging_file image files.'
|
|
), quoted=True
|
|
)
|
|
setting_staging_file_image_cache_storage_arguments = namespace.add_setting(
|
|
global_name='SOURCES_STAGING_FILE_CACHE_STORAGE_BACKEND_ARGUMENTS',
|
|
default='{{location: {}}}'.format(
|
|
os.path.join(settings.MEDIA_ROOT, 'staging_file_cache')
|
|
), help_text=_(
|
|
'Arguments to pass to the SOURCES_STAGING_FILE_CACHE_STORAGE_BACKEND.'
|
|
), quoted=True,
|
|
)
|