comparison src/metadata.c @ 1598:7de9a6897060

extended the list of grouped metadata tags
author nadvornik
date Sat, 09 May 2009 19:25:51 +0000
parents 9e2111452988
children f7183cf53efa
comparison
equal deleted inserted replaced
1597:6657e7cf446e 1598:7de9a6897060
30 MK_NONE, 30 MK_NONE,
31 MK_KEYWORDS, 31 MK_KEYWORDS,
32 MK_COMMENT 32 MK_COMMENT
33 } MetadataKey; 33 } MetadataKey;
34 34
35 static const gchar *group_keys[] = {KEYWORD_KEY, COMMENT_KEY, NULL}; /* tags that will be written to all files in a group */ 35 static const gchar *group_keys[] = { /* tags that will be written to all files in a group, options->metadata.sync_grouped_files */
36 "Xmp.dc.title",
37 "Xmp.photoshop.Urgency",
38 "Xmp.photoshop.Category",
39 "Xmp.photoshop.SupplementalCategory",
40 "Xmp.dc.subject",
41 "Xmp.iptc.Location",
42 "Xmp.photoshop.Instruction",
43 "Xmp.photoshop.DateCreated",
44 "Xmp.dc.creator",
45 "Xmp.photoshop.AuthorsPosition",
46 "Xmp.photoshop.City",
47 "Xmp.photoshop.State",
48 "Xmp.iptc.CountryCode",
49 "Xmp.photoshop.Country",
50 "Xmp.photoshop.TransmissionReference",
51 "Xmp.photoshop.Headline",
52 "Xmp.photoshop.Credit",
53 "Xmp.photoshop.Source",
54 "Xmp.dc.rights",
55 "Xmp.dc.description",
56 "Xmp.photoshop.CaptionWriter",
57 NULL};
36 58
37 static gboolean metadata_write_queue_idle_cb(gpointer data); 59 static gboolean metadata_write_queue_idle_cb(gpointer data);
38 static gboolean metadata_legacy_write(FileData *fd); 60 static gboolean metadata_legacy_write(FileData *fd);
39 static void metadata_legacy_delete(FileData *fd, const gchar *except); 61 static void metadata_legacy_delete(FileData *fd, const gchar *except);
40 62