-
Notifications
You must be signed in to change notification settings - Fork 584
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
65 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"package-name": "django-filer", | ||
"installed-apps": [ | ||
"filer", | ||
"easy_thumbnails", | ||
"mptt", | ||
"polymorphic" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# -*- coding: utf-8 -*- | ||
from aldryn_client import forms | ||
|
||
|
||
class Form(forms.BaseForm): | ||
|
||
def to_settings(self, data, settings): | ||
from functools import partial | ||
from aldryn_addons.utils import boolean_ish, djsenv | ||
from aldryn_django import storage | ||
|
||
env = partial(djsenv, settings=settings) | ||
|
||
# django-filer | ||
settings['FILER_DEBUG'] = boolean_ish(env('FILER_DEBUG', settings['DEBUG'])) | ||
settings['FILER_ENABLE_LOGGING'] = boolean_ish(env('FILER_ENABLE_LOGGING', True)) | ||
settings['FILER_IMAGE_USE_ICON'] = True | ||
settings['ADDON_URLS'].append( | ||
'filer.server.urls' | ||
) | ||
settings.setdefault('MEDIA_HEADERS', []).insert(0, ( | ||
r'filer_public(?:_thumbnails)?/.*', | ||
{ | ||
'Cache-Control': 'public, max-age={}'.format(86400 * 365), | ||
}, | ||
)) | ||
|
||
# easy-thumbnails | ||
settings['THUMBNAIL_QUALITY'] = env('THUMBNAIL_QUALITY', 90) | ||
# FIXME: enabling THUMBNAIL_HIGH_RESOLUTION causes timeouts/500! | ||
settings['THUMBNAIL_HIGH_RESOLUTION'] = False | ||
settings['THUMBNAIL_PRESERVE_EXTENSIONS'] = ['png', 'gif'] | ||
settings['THUMBNAIL_PROCESSORS'] = ( | ||
'easy_thumbnails.processors.colorspace', | ||
'easy_thumbnails.processors.autocrop', | ||
'filer.thumbnail_processors.scale_and_crop_with_subject_location', | ||
'easy_thumbnails.processors.filters', | ||
) | ||
settings['THUMBNAIL_SOURCE_GENERATORS'] = ( | ||
'easy_thumbnails.source_generators.pil_image', | ||
) | ||
settings['THUMBNAIL_CACHE_DIMENSIONS'] = True | ||
|
||
# easy_thumbnails uses django's default storage backend (local file | ||
# system storage) by default, even if the DEFAULT_FILE_STORAGE setting | ||
# points to something else. | ||
# If the DEFAULT_FILE_STORAGE has been set to a value known by | ||
# aldryn-django, then use that as THUMBNAIL_DEFAULT_STORAGE as well. | ||
for storage_backend in storage.SCHEMES.values(): | ||
if storage_backend == settings['DEFAULT_FILE_STORAGE']: | ||
settings['THUMBNAIL_DEFAULT_STORAGE'] = storage_backend | ||
break | ||
return settings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters