aboutsummaryrefslogtreecommitdiff
path: root/compiler/ldgallery.1.md
blob: eda6cc26e03d6de142e167c3cd35502c4e310a54 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
---
pagetitle: Compiler user manual - ldgallery
title: LDGALLERY(1) ldgallery
author: Pacien TRAN-GIRARD, Guillaume FOUET
date: 2020-09-19 (v2.0)
---


# NAME

ldgallery - a static web gallery generator with tags


# DESCRIPTION

ldgallery is a static gallery generator which turns a collection of tagged media files into a searchable web gallery.

The ldgallery compiler program processes pictures and aggregates metadata from plain text sidecar files to generate an indexed version of the gallery.
It can optionally output a static web viewer along, which allows the content to be presented and searched through from a JavaScript-enabled web browser.
This client-side web application does not require any special software on the server's side.


# COMMAND

ldgallery [\--input-dir _./_] [\--output-dir _./out_] [\--with-viewer]

Available options are:

-i, \--input-dir _DIR_
: Gallery source directory.
  Defaults to the current directory.

-o, \--output-dir _DIR_
: Generated gallery output path.
  Must be distinct from the source directory.
  Defaults to ./out.

-x, \--output-index _FILE_
: Generated gallery index output path.
  Defaults to \<output-dir\>/index.json.

-g, \--gallery-config _FILE_
: Gallery configuration file.
  Defaults to \<input-dir\>/gallery.yaml.

-r, \--rebuild-all
: Invalidate cache and recompile everything.
  By default, the compiler skips items which haven't changed based on their modification time.

-c, \--clean-output
: Remove unnecessary files from the output directory.

-w, \--with-viewer[=_DIR_]
: Deploy either the bundled or the given static web viewer to the output directory.
  The compiled gallery itself is then placed in \<output-dir\>/gallery.

-h, \--help
: Display help message.

\--version
: Print version information.

\--numeric-version
: Print just the version number.


# INPUT GALLERY STRUCTURE

A gallery source directory contains the gallery items and their sidecar metadata files, optionally grouped inside sub-directories.

Thumbnails can be associated to items by suffixing their name with "\_thumbnail", followed by an image file extension.
Directory thumbnails can be placed within their respective directories themselves, without any prefix.

An example input gallery directory structure could be as follows:

```
./example-gallery
├── DSC0001.jpg ----------------- a picture
├── DSC0001.jpg.yaml ------------ its associated sidecar metadata file
├── Some directory -------------- a directory grouping gallery items
│   ├── _directory.yaml --------- directory sidecar metadata file
│   ├── _thumbnail.jpg ---------- a thumbnail for its parent directory
│   ├── DSC0002.jpg
│   ├── DSC0002.jpg.yaml
│   ├── song.ogg
│   ├── song.ogg.yaml
│   └── song.ogg_thumbnail.jpg -- a thumbnail for song.ogg
└── gallery.yaml ---------------- gallery settings file
```


# METADATA SIDECAR

File metadata are read from sidecar files of the same name, with the ".yaml" extension appended.
Metadata contained within item files themselves (e.g. Exif fields for pictures) are ignored.

Directory metadata are read from sidecar files named "\_directory.yaml" located within the directory.

When a sidecar file is absent or a particular key omitted, values are set as empty or to their fallback value specified below.

title
: Title of the item.
  Defaults to the name of the file or directory.

datetime
: ISO 8601 zoned date and time.
  Defaults to the last modification time of the file itself,
  or the most recent modification date of a directory's items.

description
: Optional description for the item.
  Rich text formatting is possible through the use of the [GitHub Flavoured Markdown syntax][GFM].

  [GFM]: https://github.github.com/gfm/

tags
: List of tags for the item.
  Tag categories can be defined using prefixes separated by ":" (colon).
  Tags specified in a directory metadata sidecar are applied to all items within that directory.


# GALLERY CONFIGURATION

The gallery settings reside in a file named __gallery.yaml__ located at the root of the gallery's source directory.

Gallery configurations options are:

galleryTitle
: Title of the gallery.
  Defaults to "ldgallery".

includedDirectories[]
: Glob patterns of directory names to include in the gallery.
  Defaults to ["\*"] (matches all directory names).

excludedDirectories[]
: Glob patterns of directory names to exclude from the gallery.
  Defaults to [] (none).

includedFiles[]
: Glob patterns of file names to include in the gallery.
  Defaults to ["\*"] (matches all file names).

excludedFiles[]
: Glob patterns of file names to exclude from the gallery.
  Defaults to [] (none).

includedTags[]
: Glob patterns of tags to include in the gallery.
  Items with no tags can be matched with the empty pattern.
  Defaults to ["\*"] (matches all tags, includes untagged items).

excludedTags[]
: Glob patterns of tags to exclude from the gallery.
  Defaults to [] (none).

tagCategories[]
: Top-level tag categories.
  Defaults to [] (none).

tagsFromDirectories.fromParents
: Automatically generate tags from the name of parent directories, looking up in the hierarchy as far as indicated by this parameter.
  Defaults to 0 (does not generate tags from parent directories).

tagsFromDirectories.prefix
: Prefix to use for tags automatically generated from the parent directories' names.

thumbnailMaxResolution.width
: Maximum width in pixels of the item thumbnails, 400 by default.

thumbnailMaxResolution.height
: Maximum height in pixels of the item thumbnails, 300 by default.

pictureMaxResolution.width
: Maximum width in pixels of the picture items, unlimited by default.

pictureMaxResolution.height
: Maximum height in pixels of the picture items, unlimited by default.


# SEE ALSO

Related manual pages: __ldgallery-quickstart__(7), __ldgallery-viewer__(7).

The ldgallery source code is available on <https://ldgallery.pacien.org>.


# LICENSE

Copyright (C) 2019-2020  Pacien TRAN-GIRARD and Guillaume FOUET.

This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU Affero General Public License for more details <https://www.gnu.org/licenses/agpl-3.0.html>.