Changeset 601


Ignore:
Timestamp:
Nov 10, 2004, 11:34:54 PM (20 years ago)
Author:
plg
Message:
  • IPTC mapping done in include/config.inc.php
  • file extensions in $conffile_ext are case sensitive (contrary to what was said)
  • a user (choubs) told me that the correct mapping for image name was 2#005 (OBJECTNAME) and not 2#085 (BYTITLE)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/config.inc.php

    r593 r601  
    6767$conf['last_days'] = array(1,2,3,10,30,365);
    6868
    69 // file_ext : file extensions (case insensitive) authorized
     69// file_ext : file extensions (case sensitive) authorized
    7070$conf['file_ext'] = array('jpg','JPG','png','PNG','gif','GIF','mpg','zip',
    7171                          'avi','mp3','ogg');
     
    101101  'iptc_byline_title'    => '2#085',
    102102  'iptc_caption'         => '2#120'
     103  );
     104
     105// use_iptc_mapping : in which IPTC fields will PhpWebGallery find image
     106// information ? This setting is used during metadata synchronisation. It
     107// associates a phpwebgallery_images column name to a IPTC key
     108$conf['use_iptc_mapping'] = array(
     109  'keywords'        => '2#025',
     110  'date_creation'   => '2#055',
     111  'author'          => '2#122',
     112  'name'            => '2#005',
     113  'comment'         => '2#120'
    103114  );
    104115
Note: See TracChangeset for help on using the changeset viewer.