[SCM] exiv2 packaging branch, master, updated. debian/0.25-3.1-3734-gdcbc29a
Maximiliano Curia
maxy at moszumanska.debian.org
Thu Jul 13 17:44:25 UTC 2017
Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/exiv2.git;a=commitdiff;h=89311f2
The following commit has been merged in the master branch:
commit 89311f21a0a22a12684366fc199ea98bef2be4db
Author: Robin Mills <robin at clanmills.com>
Date: Fri Oct 31 05:52:32 2014 +0000
Issue: #784. Thanks to Alan for the patch. See topic: http://dev.exiv2.org/boards/3/topics/1847
---
src/properties.cpp | 9 +++++++++
src/xmp.cpp | 1 +
2 files changed, 10 insertions(+)
diff --git a/src/properties.cpp b/src/properties.cpp
index b017b1e..bdc2343 100644
--- a/src/properties.cpp
+++ b/src/properties.cpp
@@ -99,6 +99,7 @@ namespace Exiv2 {
extern const XmpPropertyInfo xmpVideoInfo[];
extern const XmpPropertyInfo xmpAudioInfo[];
extern const XmpPropertyInfo xmpDwCInfo[];
+ extern const XmpPropertyInfo xmpLrInfo[];
extern const XmpNsInfo xmpNsInfo[] = {
// Schemas - NOTE: Schemas which the XMP-SDK doesn't know must be registered in XmpParser::initialize - Todo: Automate this
@@ -112,6 +113,7 @@ namespace Exiv2 {
{ "http://ns.adobe.com/xap/1.0/t/pg/", "xmpTPg", xmpXmpTPgInfo, N_("XMP Paged-Text schema") },
{ "http://ns.adobe.com/xmp/1.0/DynamicMedia/", "xmpDM", xmpXmpDMInfo, N_("XMP Dynamic Media schema") },
{ "http://ns.microsoft.com/photo/1.0/", "MicrosoftPhoto", xmpMicrosoftInfo, N_("Microsoft Photo schema") },
+ { "http://ns.adobe.com/lightroom/1.0/", "lr", xmpLrInfo, N_("Adobe LightRoom schema") },
{ "http://ns.adobe.com/pdf/1.3/", "pdf", xmpPdfInfo, N_("Adobe PDF schema") },
{ "http://ns.adobe.com/photoshop/1.0/", "photoshop", xmpPhotoshopInfo, N_("Adobe photoshop schema") },
{ "http://ns.adobe.com/camera-raw-settings/1.0/", "crs", xmpCrsInfo, N_("Camera Raw schema") },
@@ -399,6 +401,13 @@ namespace Exiv2 {
{ 0, 0, 0, invalidTypeId, xmpInternal, 0 }
};
+ extern const XmpPropertyInfo xmpLrInfo[] = {
+ { "hierarchicalsubject", N_("HierarchicalSubject"), "bag Text", xmpBag, xmpExternal, N_("Hierarchical Subject.") },
+ { "privatertkinfo", N_("PrivateRTKInfo"), "Text", xmpText, xmpExternal, N_("Private RTK Info.") },
+ // End of list marker
+ { 0, 0, 0, invalidTypeId, xmpInternal, 0 }
+ };
+
extern const XmpPropertyInfo xmpPdfInfo[] = {
{ "Keywords", N_("Keywords"), "Text", xmpText, xmpExternal, N_("Keywords.") },
{ "PDFVersion", N_("PDF Version"), "Text", xmpText, xmpInternal, N_("The PDF file version (for example: 1.0, 1.3, and so on).") },
diff --git a/src/xmp.cpp b/src/xmp.cpp
index 870aad4..89fd092 100644
--- a/src/xmp.cpp
+++ b/src/xmp.cpp
@@ -403,6 +403,7 @@ namespace Exiv2 {
xmpLockFct_ = xmpLockFct;
pLockData_ = pLockData;
initialized_ = SXMPMeta::Initialize();
+ SXMPMeta::RegisterNamespace("http://ns.adobe.com/lightroom/1.0/", "lr");
SXMPMeta::RegisterNamespace("http://rs.tdwg.org/dwc/index.htm", "dwc");
SXMPMeta::RegisterNamespace("http://www.digikam.org/ns/1.0/", "digiKam");
SXMPMeta::RegisterNamespace("http://www.digikam.org/ns/kipi/1.0/", "kipi");
--
exiv2 packaging
More information about the pkg-kde-commits
mailing list