degal/settings.py
author Tero Marttila <terom@fixme.fi>
Sat, 13 Jun 2009 22:22:04 +0300
branchnew-exif
changeset 106 a4f605bd122c
parent 44 533b7e8b5d3b
permissions -rw-r--r--
add support for sub-IFDs, kind of hacky

"""
    XXX: settings, bad
"""

TEMPLATE_DIR = './templates'
TEMPLATE_EXT = 'html'

IMAGE_EXTS = ('jpg', 'jpeg', 'png', 'gif', 'bmp')

THUMB_DIR = 'thumbs'
PREVIEW_DIR = 'previews'
TITLE_FILE = 'title.txt'

THUMB_GEOM = (160, 120)
PREVIEW_GEOM = (640, 480)

DEFAULT_TITLE = 'Image gallery'

# how many image/page
IMAGE_COUNT = 50

VERSION = "0.5"
ROOT_IGNORE = ('lib', 'templates')