]> mj.ucw.cz Git - gallery.git/blob - gal/README
UCW::Implemented try_get method
[gallery.git] / gal / README
1 ================================================================================
2
3                                UCW::Gallery v2.0
4
5                     (c) 2004--2012 Martin Mares <mj@ucw.cz>
6
7 ================================================================================
8
9 This is a simple photo gallery for my web pages, or rather a set of bricks
10 from which you can create one. It can be freely used and distributed according
11 to the terms of the GNU GPL v2 or newer.
12
13 Requirements
14 ~~~~~~~~~~~~
15 Perl with the following non-core modules:
16
17    o  UCW::CGI (see http://www.ucw.cz/libucw/)
18    o  Image::Magick
19    o  Archive::Zip
20    o  Digest::SHA
21
22 Files and directories
23 ~~~~~~~~~~~~~~~~~~~~~
24
25    o  gal -- a front-end script for maintenance of galleries. All other programs
26       are run as sub-commands of this script. Try "gal --help".
27
28    o  gallery.cf -- all programs expect that the current directory contains
29       a configuration file. In fact, the config file is a perl script, whose
30       sole purpose is to set up paths, construct a gallery object and set its
31       options.
32
33       A simple example looks as follows:
34
35                 use UCW::Gallery;
36
37                 my $gal = UCW::Gallery->new;
38                 $gal->set(Title => 'A Gallery', SubTitle => '(an example)');
39                 return $gal;
40
41    o  gallery.list -- a list of original photos together with per-photo parameters.
42       Usually created by "gal scan", then tweaked manually. See `FORMATS' for
43       description of file syntax.
44
45    o  Originals directory -- original images, from which the gallery is generated.
46
47    o  Photo directory -- keeps processed (usually down-scaled) versions of the original
48       images. These are the images shown to the user.
49
50    o  Cache directory -- keeps various cached data, like thumbnails of all photos.
51
52    o  gallery.cgi -- interfaces the gallery to your web server. E.g.:
53
54                 #!/usr/bin/perl
55
56                 use lib "../path/to/gallery/modules";
57                 use UCW::Gallery;
58                 use UCW::Gallery::Web::Plain;
59
60                 my $gal = UCW::Gallery->load_config();
61                 UCW::Gallery::Web::Plain->run($gal);
62
63 Workflow
64 ~~~~~~~~
65
66    o  vi gallery.cf
67
68    o  gal scan /path/to/originals -- this creates gallery.list, populates it with
69       descriptions of all photos and reads rotation from EXIF tags.
70
71    o  vi gallery.list -- edit image descriptions and other options.
72
73    o  gal gen -- generate photos from the originals (after this, the originals are no
74       longer needed).
75
76    o  gal cache -- generate cached data.
77
78    o  Later, the gallery can be updated:
79
80         - When you edit image descriptions, re-run "gal cache".
81         - When you edit image options (rotation etc.), re-run "gal gen".
82         - When you want to add new images, re-run "gal scan". Give it the new list
83           of images and it will try to re-use as much information from the previous
84           gallery.list as possible.