mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
c45eb31e8f
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8338 by cucc @ 5/11/2009 3:08 AM
23 lines
662 B
Python
23 lines
662 B
Python
# Imagekit options
|
|
from imagekit import processors
|
|
from imagekit.specs import ImageSpec
|
|
|
|
|
|
class Options(object):
|
|
""" Class handling per-model imagekit options
|
|
|
|
"""
|
|
image_field = 'image'
|
|
crop_horz_field = 'crop_horz'
|
|
crop_vert_field = 'crop_vert'
|
|
preprocessor_spec = None
|
|
cache_dir = 'cache'
|
|
save_count_as = None
|
|
cache_filename_format = "%(filename)s_%(specname)s.%(extension)s"
|
|
admin_thumbnail_spec = 'admin_thumbnail'
|
|
spec_module = 'imagekit.defaults'
|
|
|
|
def __init__(self, opts):
|
|
for key, value in opts.__dict__.iteritems():
|
|
setattr(self, key, value)
|
|
self.specs = [] |