From 8649a4672c8b092dfe2330df254612719f037181 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Sun, 23 Jan 2022 16:51:45 +0000 Subject: [PATCH] [github-298] revert change of case in CORE_PROPERTIES_ECMA376 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1897376 13f79535-47bb-0310-9956-ffa450edef68 --- .../poi/openxml4j/opc/PackageRelationshipTypes.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/PackageRelationshipTypes.java b/poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/PackageRelationshipTypes.java index 1dc1529a8b..2d8d3dea58 100644 --- a/poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/PackageRelationshipTypes.java +++ b/poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/PackageRelationshipTypes.java @@ -26,7 +26,7 @@ public interface PackageRelationshipTypes { * *

* The standard specifies a source relations ship for the Core File Properties part as follows: - * http://schemas.openxmlformats.org/officeDocument/2006/relationships/metadata/core-properties. + * http://schemas.openxmlformats.org/officedocument/2006/relationships/metadata/core-properties. *

*

* Office uses the following source relationship for the Core File Properties part: @@ -38,8 +38,12 @@ public interface PackageRelationshipTypes { /** * Core properties relationship type as defined in ECMA 376. + *

+ * See 2.1.33 Part 1 Section 15.2.11.1, Core File Properties Part in [MS-OE376].pdf. + * The case of 'officedocument' matches what appears in the pdf. + *

*/ - String CORE_PROPERTIES_ECMA376 = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/metadata/core-properties"; + String CORE_PROPERTIES_ECMA376 = "http://schemas.openxmlformats.org/officedocument/2006/relationships/metadata/core-properties"; /** * Namespace of Core properties relationship type as defined in ECMA 376 -- 2.39.5