blob: c73971b595010e27b49afa5adfd2c5bd798aa15b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
########################################################################
# #
# This is the configuration file for Galrey #
# every line beginning with '#' will be discarded (they are comments) #
# Carefully read every comment before each parameter #
# ##########
# Copyright 2001, Claudio Cicali # Galrey #
# # 0.5 #
#################################################################################
# TITLE: used as the html <title> ad as ashort description at the bottom of the html files
# default: "My Galrey pictures collection"
title = FeatPost Example Collection
# PATTERN: only the files that match this patters are processed
# default: "*.jpg"
pattern=*.png
# THUMBSIZE: desidered size XxY of the generated thumbnails
# default: 80x60 (this is scaled based upon a 640x480 full size)
thumbsize=140x140
# THUMBPREFIX: desidered prefix of the thumbnails filename
# default: "t_"
thumbprefix=t_
# THUMBSPERROW: how many thumbnails in each row of the index file
# default: 5
thumbsperrow=6
# INDEX: name of the (generated) index file. Used also in the html file
# default: "index.html"
# index=galreyindex.html
# GENERATEDEXT: the extension the generated html files will have
# Galrey will generate an html file for each image in the
# collection. This is the extension they will have
# default: html
generatedext=html
# IMAGESPATH: the directory where the images reside (do not add the final '/')
# default: "."
imagespath=../galreyimages
# OUTPUTPATH: the directory where the generated file will be placed
# default: "."
outputpath=../galreyimages
# TEMPLATE: the name and location of the template file to use
# default: "./galrey.tpl"
template=galrey.tpl
# SHOWINFO: this enables (or disable) the visualization of some image informations.
# This information will be displayed under each images thumbnail in
# the form : [width x height] imagesize
# default: yes
showinfo=no
# MEMOFILE: if set, galrey will read a description for each image from the
# specified file and will put it into the relative html file in
# corrispondence of the $DESCRIPTION$ special tag.
# The file must be builded respecting the following syntax:
# for each image, add a line containing the imagename, a space, and a description
# (as long as you like)
# Example (an entry for an image called garden.jpg):
# garden.jpg My beautiful garden full of flowers !
#
# Note: you can build a file in this way, simply running the following
# command in the dir containing your images:
# ls *.jpg > galrey.nfo
# Than edit the galrey.nfo adding the comments on the right of each image listed
# The list sorting order is not relevant
# default: not set
memofile=galrey.memo
|