Add keyword arguments. Sort arguments and models. Move literals to their own module. Prepend handler_ to signal handlers. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
27 lines
854 B
Python
27 lines
854 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(label=_('Document signatures'), name='signatures')
|
|
|
|
setting_storage_backend = namespace.add_setting(
|
|
default='django.core.files.storage.FileSystemStorage',
|
|
global_name='SIGNATURES_STORAGE_BACKEND', help_text=_(
|
|
'Path to the Storage subclass to use when storing detached '
|
|
'signatures.'
|
|
)
|
|
)
|
|
setting_storage_backend_arguments = namespace.add_setting(
|
|
global_name='SIGNATURES_STORAGE_BACKEND_ARGUMENTS',
|
|
default='{{location: {}}}'.format(
|
|
os.path.join(settings.MEDIA_ROOT, 'document_signatures')
|
|
), quoted=True, help_text=_(
|
|
'Arguments to pass to the SIGNATURE_STORAGE_BACKEND. '
|
|
)
|
|
)
|