annotate example.cfg @ 166:d8387b48b08d

Improve yes/no prompt check.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 01 Mar 2018 14:01:49 +0200
parents 4e25150aa868
children cb7019690a73
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 ;;;
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
2 ;;; MGallery example configuration
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
3 ;;;
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
4
130
f825d644cf7a Implement new config setting "timezone" for specifying the timezone used for date/timestamp interpretation.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
5 ; Timezone used for timestamp/date calculations.
f825d644cf7a Implement new config setting "timezone" for specifying the timezone used for date/timestamp interpretation.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
6 ; See http://php.net/manual/en/timezones.php
f825d644cf7a Implement new config setting "timezone" for specifying the timezone used for date/timestamp interpretation.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
7 timezone = "Europe/Helsinki"
f825d644cf7a Implement new config setting "timezone" for specifying the timezone used for date/timestamp interpretation.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
8
f825d644cf7a Implement new config setting "timezone" for specifying the timezone used for date/timestamp interpretation.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
9
0
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
10 ;;; Gallery title, etc.
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
11 title_prefix = "My Own Gallery"
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
12 title_sep = " - "
111
9da8bab49711 Bump copyright years.
Matti Hamalainen <ccr@tnsp.org>
parents: 107
diff changeset
13 page_info = "<b>MGallery</b> &copy; Copyright 2015-2017 Tecnic Software productions (TNSP)"
0
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
14
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
15
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
16 ;;;
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
17 ;;; CSS / layout style
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
18 ;;;
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
19 css = "/mgallery/basic.css"
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
20 album_icon = "/mgallery/album_sm.png"
129
bad658e1e7ed Config option "page_urchin" should actually be "urchin_file".
Matti Hamalainen <ccr@tnsp.org>
parents: 128
diff changeset
21 ;urchin_file = "urchin.inc.php"
107
71de97240799 Add support for urchin file.
Matti Hamalainen <ccr@tnsp.org>
parents: 106
diff changeset
22
151
4e25150aa868 Change js_path configuration setting to js_file.
Matti Hamalainen <ccr@tnsp.org>
parents: 149
diff changeset
23 ; Relative path+filename to mgallery.js
4e25150aa868 Change js_path configuration setting to js_file.
Matti Hamalainen <ccr@tnsp.org>
parents: 149
diff changeset
24 js_file = "/mgallery/mgallery.js"
149
b4751909c48f Move some Javascript code to a separate file and make the location configurable.
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
25
140
814c422c9194 Document cover_images setting better. Add album_row_limit to example config.
Matti Hamalainen <ccr@tnsp.org>
parents: 130
diff changeset
26 ; Use image from sub-album as album cover image?
814c422c9194 Document cover_images setting better. Add album_row_limit to example config.
Matti Hamalainen <ccr@tnsp.org>
parents: 130
diff changeset
27 ; If disabled, album_icon will be always used for cover image
17
3f7bc4202df3 Add new configuration setting 'cover_images' to disable/enable sub-album
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
28 cover_images = yes
3f7bc4202df3 Add new configuration setting 'cover_images' to disable/enable sub-album
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
29
19
59075f5e7a62 Add configuration setting to enable and disable use of HTML table elements.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
30 ; Use table elements? If disabled, CSS is responsible for formatting
59075f5e7a62 Add configuration setting to enable and disable use of HTML table elements.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
31 use_tables = yes
0
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
32
140
814c422c9194 Document cover_images setting better. Add album_row_limit to example config.
Matti Hamalainen <ccr@tnsp.org>
parents: 130
diff changeset
33 ; Number of image entries per table row, if use_tables enabled
814c422c9194 Document cover_images setting better. Add album_row_limit to example config.
Matti Hamalainen <ccr@tnsp.org>
parents: 130
diff changeset
34 album_row_limit = 6
814c422c9194 Document cover_images setting better. Add album_row_limit to example config.
Matti Hamalainen <ccr@tnsp.org>
parents: 130
diff changeset
35
0
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
36 ;;;
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
37 ;;; Important paths and urls
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
38 ;;;
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
39 base_path = "/absolute/path/to/your/gallery"
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
40 base_url = "/base/url/"
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
41
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
42
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
43 ;image_url = "/gallery/"
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
44 ;mgallery_php = "mgallery.php"
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
45 ;tn_path = "tn/"
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
46 ;format_exts = "\.jpg|\.png|\.gif|\.jpeg"
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
47
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
48 ;captions_file = "captions.txt"
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
49 ;header_file = "header.txt"
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
50 ;info_file = "gallery.info"
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
51 ;cache_file = ".gallery.cache"
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
52 ;clean_urls = no
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
53
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
54
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
55 ;;;
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
56 ;;; Thumbnail/medium size image settings
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
57 ;;;
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
58 ;med_suffix = ".med"
41
5ecb92a7338c Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 19
diff changeset
59
5ecb92a7338c Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 19
diff changeset
60 ;;; If you change thumbnail resolutions, you may wish to change the CSS files as well
5ecb92a7338c Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 19
diff changeset
61 ; tn CSS selector: .galleryEntry
0
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
62 ;tn_width = 140
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
63 ;tn_height = 100
106
a3b8cd4183e6 Change {album,image}_navigation setting to *_flags.
Matti Hamalainen <ccr@tnsp.org>
parents: 41
diff changeset
64 ;tn_quality = 77
41
5ecb92a7338c Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 19
diff changeset
65
0
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
66 ;med_width = 800
ac688606ec4b Initial import of code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
67 ;med_height = 600
106
a3b8cd4183e6 Change {album,image}_navigation setting to *_flags.
Matti Hamalainen <ccr@tnsp.org>
parents: 41
diff changeset
68 ;med_quality = 88