From: Yegor Kozlov Date: Wed, 29 Feb 2012 12:52:55 +0000 (+0000) Subject: Bugzilla 51564 - support for enforcing fields update in XWPF X-Git-Tag: REL_3_8_FINAL~18 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=aef09c36f196f56f96f3dd0a92c52e0ab408cfda;p=poi.git Bugzilla 51564 - support for enforcing fields update in XWPF git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1295078 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/documentation/content/xdocs/status.xml b/src/documentation/content/xdocs/status.xml index e374a544dc..42050460be 100644 --- a/src/documentation/content/xdocs/status.xml +++ b/src/documentation/content/xdocs/status.xml @@ -34,6 +34,8 @@ + support setting background color of sheet tab in XSSF + 51564 - support for enforcing fields update in XWPF 51673 - support grouping rows in SXSSF 51780 - support replacement of content types in OPC packages 52784 - replace ISO control characters with question marks in SXSSF to be consistent with XSSF diff --git a/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFDocument.java b/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFDocument.java index 94b326811b..3114813f51 100644 --- a/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFDocument.java +++ b/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFDocument.java @@ -974,6 +974,10 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody { return settings.isEnforcedWith(STDocProtect.TRACKED_CHANGES); } + public boolean isEnforcedUpdateFields() { + return settings.isUpdateFields(); + } + /** * Enforces the readOnly protection.
* In the documentProtection tag inside settings.xml file,
@@ -1047,6 +1051,22 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody { settings.removeEnforcement(); } + /** + * Enforces fields update on document open (in Word). + * In the settings.xml file
+ * sets the updateSettings value to true (w:updateSettings w:val="true") + * + * NOTICES: + *
    + *
  • Causing Word to ask on open: "This document contains fields that may refer to other files. Do you want to update the fields in this document?" + * (if "Update automatic links at open" is enabled)
  • + *
  • Flag is removed after saving with changes in Word
  • + *
+ */ + public void enforceUpdateFields() { + settings.setUpdateFields(); + } + /** * inserts an existing XWPFTable to the arrays bodyElements and tables * @param pos diff --git a/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFSettings.java b/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFSettings.java index 5471fde0cb..8ceddbe35e 100644 --- a/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFSettings.java +++ b/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFSettings.java @@ -30,6 +30,7 @@ import org.apache.poi.openxml4j.opc.PackagePart; import org.apache.poi.openxml4j.opc.PackageRelationship; import org.apache.xmlbeans.XmlOptions; import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTDocProtect; +import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTOnOff; import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTSettings; import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTZoom; import org.openxmlformats.schemas.wordprocessingml.x2006.main.STDocProtect; @@ -147,6 +148,28 @@ public class XWPFSettings extends POIXMLDocumentPart { safeGetDocumentProtection().setEnforcement(STOnOff.X_0); } + /** + * Enforces fields update on document open (in Word). + * In the settings.xml file
+ * sets the updateSettings value to true (w:updateSettings w:val="true") + * + * NOTICES: + *
    + *
  • Causing Word to ask on open: "This document contains fields that may refer to other files. Do you want to update the fields in this document?" + * (if "Update automatic links at open" is enabled)
  • + *
  • Flag is removed after saving with changes in Word
  • + *
+ */ + public void setUpdateFields() { + CTOnOff onOff = CTOnOff.Factory.newInstance(); + onOff.setVal(STOnOff.TRUE); + ctSettings.setUpdateFields(onOff); + } + + boolean isUpdateFields() { + return ctSettings.isSetUpdateFields() && ctSettings.getUpdateFields().getVal() == STOnOff.TRUE; + } + @Override protected void commit() throws IOException { if (ctSettings == null) { diff --git a/src/ooxml/testcases/org/apache/poi/xwpf/TestDocumentProtection.java b/src/ooxml/testcases/org/apache/poi/xwpf/TestDocumentProtection.java index 3e3d93f339..3d814aada9 100644 --- a/src/ooxml/testcases/org/apache/poi/xwpf/TestDocumentProtection.java +++ b/src/ooxml/testcases/org/apache/poi/xwpf/TestDocumentProtection.java @@ -137,4 +137,11 @@ public class TestDocumentProtection extends TestCase { assertTrue(document.isEnforcedCommentsProtection()); } + public void testUpdateFields() throws Exception { + XWPFDocument doc = new XWPFDocument(); + assertFalse(doc.isEnforcedUpdateFields()); + doc.enforceUpdateFields(); + assertTrue(doc.isEnforcedUpdateFields()); + } + }