; configuration/ini file for make-photo-pages (mpp.py) ; http://www.ademar.org/make-photo-pages/ ; boolean variables accept yes/no, true/false or 0/1, no case-sensitive; ; lists accept new-lines if they're prefixed with spaces or tabs; ; quotes are optional on text values. ; several entries are optional... below a minimalistic example which should ; work using default values: ;[global] ;albums = ; ;[] ;title = ;title2 = ;period = ; ; variables can be set on a global or per-album basis ; album settings override global ones ; [global] ; comma-separated list of destination dirs to create albums, ; no spaces allowed on album dirs, but subdirs are ok ; each album must have its own section later on this file ; example: ; albums = personal, friends, ; places/brazil/curitiba, ; places/brazil/porto-galinhas albums = dot ; language used by default when in multi-lang mode ; default is "en" default_lang = en ; html file mode (in octal, as accepted by chmod(1)) ; default is file_mode = 0755 ; html formating cames from css? ; if set to no, the generated html (index table) will contain ; some formatting tags, if set to no, it trusts the template ; to include all formating inside the CSS. ; default: no format_from_css = yes ; how many columns on index table? ; default: 3 table_columns = 3 ; directory with templates for html pages, relative to ; working dir (pwd when running mpp.py). Absolute paths are OK ; default: mpp-templates templates_dir = mpp-templates ; when working on the current directory (not importing), ; save copy of images before making any operation on them? ; default: yes backup = no ; thumbnail size. Notice it's the max size, aspect ratio is always ; kept when rescaling ; default: 180x180 thumbs_size = 180x180 ; image size for individual page. Notice it's the max size, aspect ; ratio is always kept when rescaling ; default: 640x640 imgs_size = 640x640 ; force an import even if the web-album dir is already ; populated. See also --force_import ; default: no force_import = no ; must be a command that returns EXIF on stdout. The image file will be ; passed as first argument, program must be on PATH ; default: auto-detect (know applications are: metacam, jhead and exif) exif_extractor = metacam ; label added to images ; default: no label embedded_label = "http://www.ademar.org/make-photo-pages/" [dot] ; list of extra languages to generate versions of this album ; example: ; extra_langes = pt, en, ru, jp ; default: empty extra_langs = pt_BR ; main title for this album ; if extra-languages are used, add it as a sufix ; examples: ; title.en = "Pictures from..." ; title.ru = "Pictures from..." title = "Pictures from Dot, our little cat" title.pt_BR = "Fotos do Dot, nosso gato" ; second title for this album ; if extra-languages are used, add it as a sufix title2 = "Dot, our little cat" title2.pt_BR = "Dot, nosso filhote" ; period/date these pictures were taken ; if extra-languages are used, add it as a sufix period = dez-2006 to may-2007 period.pt_BR = dez-2006 a mai-2007 ; file with html code to be placed before the thumbnails ; (description of the album) ; path is always relative to album-dir// ; default: html-description.txt html_desc_file = html-description.txt ; file with image captions ; path is always relative to album-dir// ; default: captions.txt captions_file = captions.txt ; Set the directory where pictures came from. If the directory is a ; web-album exported by Picasa(TM), it'll be automatically detected. ; Relative to working dir (pwd when running mpp.py). ; Absolute paths are OK ; - do not set from_dir to be the same dir where the album will ; be created (album id), this may cause some undesirable effect ; default: work on the album's directory, reworking on the html pages ; without importing data from anywhere from_dir = dot-source/ ; vim: ts=4:et: