diff --git a/doc/ChangeLog b/doc/ChangeLog
index f8615196..e7f969de 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -58,7 +58,7 @@ Changes from version 0.19 to 0.20
- Added Kipi XMP namespace used by digiKam kipi-plugins
(Gilles Caulier)
- Added iView Media Pro and MS Expression Media XMP schemas.
- (Steve Wright)
+ (Silversleeves)
- Generalized class Error, added class WError for use with
Unicode-Paths.
- Updated Nikon Lens lookup table to v4.3.401.01 of
diff --git a/doc/templates/Makefile b/doc/templates/Makefile
index 78182d88..2a86dd4a 100644
--- a/doc/templates/Makefile
+++ b/doc/templates/Makefile
@@ -123,8 +123,11 @@ SCHEMA = xmp_dc \
xmp_iptc \
xmp_MicrosoftPhoto \
xmp_digiKam \
+ xmp_kipi \
xmp_iptcExt \
- xmp_plus
+ xmp_plus \
+ xmp_mediapro \
+ xmp_expressionmedia
TAGLIST = ../../src/taglist
diff --git a/doc/templates/__index2__ b/doc/templates/__index2__
index 974d6a29..2d9e6a38 100644
--- a/doc/templates/__index2__
+++ b/doc/templates/__index2__
@@ -38,7 +38,10 @@
Iptc4xmpExt
plus
digiKam
+ kipi
MicrosoftPhoto
+ mediapro
+ expressionmedia
diff --git a/src/doxygen.hpp.in b/src/doxygen.hpp.in
index c4c76890..94ce8ed8 100644
--- a/src/doxygen.hpp.in
+++ b/src/doxygen.hpp.in
@@ -73,7 +73,10 @@
- Iptc4xmpExt schema
- PLUS schema
- digiKam schema
+ - KDE Image Program Interface schema
- MicrosoftPhoto schema
+ - iView Media Pro schema
+ - Microsoft Expression Media schema
@section formats File Formats
diff --git a/src/properties.cpp b/src/properties.cpp
index 966416da..212a7043 100644
--- a/src/properties.cpp
+++ b/src/properties.cpp
@@ -94,7 +94,7 @@ namespace Exiv2 {
// Schemas - NOTE: Schemas which the XMP-SDK doesn't know must be registered in XmpParser::initialize - Todo: Automate this
{ "http://purl.org/dc/elements/1.1/", "dc", xmpDcInfo, N_("Dublin Core schema") },
{ "http://www.digikam.org/ns/1.0/", "digiKam", xmpDigikamInfo, N_("digiKam Photo Management schema") },
- { "http://www.digikam.org/ns/kipi/1.0/", "kipi", xmpKipiInfo, N_("KDE Image Program Interface schema") },
+ { "http://www.digikam.org/ns/kipi/1.0/", "kipi", xmpKipiInfo, N_("KDE Image Program Interface schema") },
{ "http://ns.adobe.com/xap/1.0/", "xmp", xmpXmpInfo, N_("XMP Basic schema") },
{ "http://ns.adobe.com/xap/1.0/rights/", "xmpRights", xmpXmpRightsInfo, N_("XMP Rights Management schema") },
{ "http://ns.adobe.com/xap/1.0/mm/", "xmpMM", xmpXmpMMInfo, N_("XMP Media Management schema") },