22ab797dce
- Support mod_perl version 1 and 2 (1.99) (Michael Legart) - Send status code 500 on errors, 404 on file not found and make IE show our own errorpage. (Thomas L. Kjeldsen) - Bugfix for directories named "0" (Andreas Plesner Jacobsen) - Added "selection mode". Select images with checkboxes and get a list of filenames. (Peter Andreasen) - Fix to let the module work with perl 5.005 (Aaron) - Do not allow scaling pictures to sizes above their original size (Aaron) - Added GalleryUseFileDate option to make A::G show the files timestamps instead of using the EXIF value (Dennis Haney) - Remember display size when turning Slideshow off (Hans Joergensen) - Nice new layout (Thomas Kjaer) - New option GalleryEXIFMode to control the way EXIF info is displayed. See docs for details (Michael Legart) - Support for the FNumber EXIF value (Thomas Corell) - Added GalleryRootText option to allow changing the name of the root element in the menu (Christopher Knight) - Use Image::Imlib2 instead of Inline::C (Andreas Plesner Jacobsen) - New option GalleryMaxThumbnailsPerPage to limit the number of thumbnails displayed per page. Disabled by default and requires templates update. (Michael Legart) - Bugfix for the GalleryThumbnailSize option. Both height and width max sizes are now obeyed. (David Gee)
25 lines
440 B
Text
25 lines
440 B
Text
# $NetBSD: ag.conf,v 1.3 2003/09/21 16:21:16 kim Exp $
|
|
#
|
|
# Configuration fragment for Apache::Gallery
|
|
#
|
|
|
|
#
|
|
# Default settings
|
|
#
|
|
|
|
PerlSetVar GalleryTemplateDir @AG_SHAREDIR@/templates/default
|
|
|
|
#
|
|
# Files referred by default templates
|
|
#
|
|
|
|
<IfModule mod_alias.c>
|
|
Alias /@AG@/ "@AG_SHAREDIR@/htdocs/"
|
|
</IfModule>
|
|
|
|
<Directory "@AG_SHAREDIR@/htdocs">
|
|
Options None
|
|
AllowOverride None
|
|
Order allow,deny
|
|
Allow from all
|
|
</Directory>
|