summaryrefslogtreecommitdiff
path: root/officecfg
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-01-30 12:19:11 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-01-30 12:27:47 +0100
commite8bb827571f540ac4af2247cb11239bb96876669 (patch)
tree24a7ee39d336a476c88f76f533fb292d5fdd9332 /officecfg
parentdc6953f932ffbddd5168f039e58075789b91b98b (diff)
Fixed cppheader.xsl nillable treatment.
* cppheader.xsl had initially been written under the false assumption that a missing oor:nillable attribute defaults to "false" instead of "true". That has been fixed. * As a result, many places that use the new simplified officecfg/*.hxx headers broke as they did not expect value types to be wrapped boost::optional. To keep the code simple, I decided to change all occurrences in officecfg/registry/schema/ of properties that specify a default <value> and do not explicitly specify oor:nillable="true" to oor:nillable="false". Strictly speaking, this is an incompatible change, but in many cases it should be what was intended, anyway. * Some places that use the new simplified officecfg/*.hxx headers still had to be adapted to boost::optional wrapping. * This showed that unotools/configuration.hxx did not yet work for those wrapped properties and needed fixing, too.
Diffstat (limited to 'officecfg')
-rw-r--r--officecfg/registry/cppheader.xsl7
-rw-r--r--officecfg/registry/schema/org/openoffice/FirstStartWizard.xcs2
-rw-r--r--officecfg/registry/schema/org/openoffice/Inet.xcs12
-rw-r--r--officecfg/registry/schema/org/openoffice/LDAP.xcs2
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/Calc.xcs198
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/Canvas.xcs12
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/Chart.xcs2
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/Common.xcs1226
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/Compatibility.xcs26
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs98
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/Draw.xcs138
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/ExtensionManager.xcs2
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/Impress.xcs182
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/Java.xcs34
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/Jobs.xcs4
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/Linguistic.xcs58
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/Logging.xcs8
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/Math.xcs106
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/OOoImprovement/Settings.xcs22
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/OptionsDialog.xcs12
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/Paths.xcs2
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/Recovery.xcs18
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/SFX.xcs2
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/TypeDetection.xcs8
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/UI.xcs30
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/UI/Commands.xcs2
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/UI/Controller.xcs2
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/UI/WindowState.xcs20
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/Writer.xcs606
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/WriterWeb.xcs122
-rw-r--r--officecfg/registry/schema/org/openoffice/Setup.xcs46
-rw-r--r--officecfg/registry/schema/org/openoffice/System.xcs6
-rw-r--r--officecfg/registry/schema/org/openoffice/TypeDetection/Filter.xcs16
-rw-r--r--officecfg/registry/schema/org/openoffice/TypeDetection/Misc.xcs8
-rw-r--r--officecfg/registry/schema/org/openoffice/TypeDetection/Types.xcs18
-rw-r--r--officecfg/registry/schema/org/openoffice/TypeDetection/UISort.xcs2
-rw-r--r--officecfg/registry/schema/org/openoffice/UserProfile.xcs36
37 files changed, 1746 insertions, 1349 deletions
diff --git a/officecfg/registry/cppheader.xsl b/officecfg/registry/cppheader.xsl
index 2522aca68d5d..85ccafcf18d9 100644
--- a/officecfg/registry/cppheader.xsl
+++ b/officecfg/registry/cppheader.xsl
@@ -95,7 +95,8 @@
<xsl:text>#include "sal/config.h"&#xA;</xsl:text>
<xsl:text>&#xA;</xsl:text>
<xsl:if test=".//prop or .//set">
- <xsl:if test=".//prop/@oor:nillable = 'true'">
+ <xsl:if
+ test=".//prop[count(@oor:nillable) = 0 or @oor:nillable = 'true']">
<xsl:text>#include "boost/optional.hpp"&#xA;</xsl:text>
</xsl:if>
<xsl:if test=".//prop/@oor:type = 'oor:any'">
@@ -215,7 +216,7 @@
<xsl:text>&lt;</xsl:text>
<xsl:value-of select="$name"/>
<xsl:text>, </xsl:text>
- <xsl:if test="@oor:nillable = 'true'">
+ <xsl:if test="not(@oor:nillable = 'false')">
<xsl:text>boost::optional&lt;</xsl:text>
</xsl:if>
<xsl:choose>
@@ -266,7 +267,7 @@
-->com::sun::star::uno::Sequence&lt;sal_Int8&gt; &gt; </xsl:text>
</xsl:when>
</xsl:choose>
- <xsl:if test="@oor:nillable = 'true'">
+ <xsl:if test="not(@oor:nillable = 'false')">
<xsl:text>&gt; </xsl:text>
</xsl:if>
<xsl:text>&gt; {&#xA;</xsl:text>
diff --git a/officecfg/registry/schema/org/openoffice/FirstStartWizard.xcs b/officecfg/registry/schema/org/openoffice/FirstStartWizard.xcs
index 3f6da6a5b684..c0ad013d5c0f 100644
--- a/officecfg/registry/schema/org/openoffice/FirstStartWizard.xcs
+++ b/officecfg/registry/schema/org/openoffice/FirstStartWizard.xcs
@@ -37,7 +37,7 @@
<author>CD</author>
<desc>Describes properties of a wizard tab page option.</desc>
</info>
- <prop oor:name="Visible" oor:type="xs:boolean">
+ <prop oor:name="Visible" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>CD</author>
<desc>Determine if an option is visible or not.</desc>
diff --git a/officecfg/registry/schema/org/openoffice/Inet.xcs b/officecfg/registry/schema/org/openoffice/Inet.xcs
index 3949dd7a7267..2024daf33a8a 100644
--- a/officecfg/registry/schema/org/openoffice/Inet.xcs
+++ b/officecfg/registry/schema/org/openoffice/Inet.xcs
@@ -34,7 +34,7 @@
<info>
<desc>Contains Internet-related configurations (servers, proxies, etc.).</desc>
</info>
- <prop oor:name="ooInetDNSServer" oor:type="xs:string">
+ <prop oor:name="ooInetDNSServer" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Inet/DNS -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - Internet - Protocol -->
@@ -46,7 +46,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="ooInetNoProxy" oor:type="xs:string">
+ <prop oor:name="ooInetNoProxy" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Inet/NoProxy -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools Options Internet Proxy -->
@@ -83,7 +83,7 @@
</enumeration>
</constraints>
</prop>
- <prop oor:name="ooInetFTPProxyName" oor:type="xs:string">
+ <prop oor:name="ooInetFTPProxyName" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Inet/FTPProxyName -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools Options Internet Proxy -->
@@ -115,7 +115,7 @@
</maxInclusive>
</constraints>
</prop>
- <prop oor:name="ooInetHTTPProxyName" oor:type="xs:string">
+ <prop oor:name="ooInetHTTPProxyName" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Inet/HTTPProxyName -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools Options Internet Proxy -->
@@ -147,7 +147,7 @@
</maxInclusive>
</constraints>
</prop>
- <prop oor:name="ooInetHTTPSProxyName" oor:type="xs:string">
+ <prop oor:name="ooInetHTTPSProxyName" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Inet/HTTPSProxyName -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools Options Internet Proxy -->
@@ -179,7 +179,7 @@
</maxInclusive>
</constraints>
</prop>
- <prop oor:name="ooInetSOCKSProxyName" oor:type="xs:string">
+ <prop oor:name="ooInetSOCKSProxyName" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Inet/SOCKSProxyName -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools Options Internet Proxy -->
diff --git a/officecfg/registry/schema/org/openoffice/LDAP.xcs b/officecfg/registry/schema/org/openoffice/LDAP.xcs
index dd5e79833a93..76b75ea63a34 100644
--- a/officecfg/registry/schema/org/openoffice/LDAP.xcs
+++ b/officecfg/registry/schema/org/openoffice/LDAP.xcs
@@ -36,7 +36,7 @@
<info><desc>Specifies LDAP server settings</desc></info>
<prop oor:name="Server" oor:type="xs:string"><info><desc>Host name of LDAP Server</desc></info>
</prop>
- <prop oor:name="Port" oor:type="xs:int"><info><desc>Port number of the LDAP Server</desc></info>
+ <prop oor:name="Port" oor:type="xs:int" oor:nillable="false"><info><desc>Port number of the LDAP Server</desc></info>
<value>389</value>
</prop>
<prop oor:name="BaseDN" oor:type="xs:string"><info><desc>Root entry of the LDAP server</desc></info>
diff --git a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
index 79ebc2eaa4bc..3efc2e3456bb 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
@@ -93,7 +93,7 @@
<info>
<desc>Specifies which contents are displayed in a spreadsheet.</desc>
</info>
- <prop oor:name="Formula" oor:type="xs:boolean">
+ <prop oor:name="Formula" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Contents/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Contents - [Section] Display -->
@@ -104,7 +104,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ZeroValue" oor:type="xs:boolean">
+ <prop oor:name="ZeroValue" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Contents/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Contents - [Section] Display -->
@@ -115,7 +115,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="NoteTag" oor:type="xs:boolean">
+ <prop oor:name="NoteTag" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Contents/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Contents - [Section] Display -->
@@ -126,7 +126,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ValueHighlighting" oor:type="xs:boolean">
+ <prop oor:name="ValueHighlighting" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Contents/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Contents - [Section] Display -->
@@ -137,7 +137,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Anchor" oor:type="xs:boolean">
+ <prop oor:name="Anchor" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Contents/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Contents - [Section] Display -->
@@ -148,7 +148,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="TextOverflow" oor:type="xs:boolean">
+ <prop oor:name="TextOverflow" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Contents/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Contents - [Section] Display -->
@@ -159,7 +159,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ObjectGraphic" oor:type="xs:int">
+ <prop oor:name="ObjectGraphic" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Calc/Contents/Objects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Contents - [Section] Objects -->
@@ -187,7 +187,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="Chart" oor:type="xs:int">
+ <prop oor:name="Chart" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Calc/Contents/Objects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Contents - [Section] Objects -->
@@ -215,7 +215,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="DrawingObject" oor:type="xs:int">
+ <prop oor:name="DrawingObject" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Calc/Contents/Objects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Contents - [Section] Objects -->
@@ -244,7 +244,7 @@
<value>0</value>
</prop>
</group>
- <group oor:name="Update">
+ <group oor:name="Update" oor:nillable="false">
<info>
<desc>Contains settings that specify how contents are updated.</desc>
</info>
@@ -286,7 +286,7 @@
<info>
<desc>Contains settings that control visual aids.</desc>
</info>
- <prop oor:name="GridLine" oor:type="xs:boolean">
+ <prop oor:name="GridLine" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Layout/Lines -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Layout - [Section] Lines -->
@@ -297,7 +297,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="GridOnColoredCells" oor:type="xs:boolean">
+ <prop oor:name="GridOnColoredCells" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: Tools - Options -Spreadsheets - Layout - [Section] Visual Aids -->
<info>
<author>André Schnabel</author>
@@ -306,7 +306,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="GridLineColor" oor:type="xs:int">
+ <prop oor:name="GridLineColor" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Calc/Layout/Lines -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Layout - [Section] Lines -->
@@ -318,7 +318,7 @@
</info>
<value>12632256</value>
</prop>
- <prop oor:name="PageBreak" oor:type="xs:boolean">
+ <prop oor:name="PageBreak" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Layout/Lines -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Layout - [Section] Lines -->
@@ -329,7 +329,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Guide" oor:type="xs:boolean">
+ <prop oor:name="Guide" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Layout/Lines -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Layout - [Section] Lines -->
@@ -340,7 +340,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="SimpleControlPoint" oor:type="xs:boolean">
+ <prop oor:name="SimpleControlPoint" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Layout/Lines -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Layout - [Section] Lines -->
@@ -351,7 +351,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="LargeControlPoint" oor:type="xs:boolean">
+ <prop oor:name="LargeControlPoint" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Layout/Lines -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Layout - [Section] Lines -->
@@ -367,7 +367,7 @@
<info>
<desc>Contains settings that control which windows are shown around the editing window.</desc>
</info>
- <prop oor:name="ColumnRowHeader" oor:type="xs:boolean">
+ <prop oor:name="ColumnRowHeader" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Layout/Window -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Layout - [Section] Window -->
@@ -378,7 +378,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="HorizontalScroll" oor:type="xs:boolean">
+ <prop oor:name="HorizontalScroll" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Layout/Window -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Layout - [Section] Window -->
@@ -389,7 +389,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="VerticalScroll" oor:type="xs:boolean">
+ <prop oor:name="VerticalScroll" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Layout/Window -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Layout - [Section] Window -->
@@ -400,7 +400,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="SheetTab" oor:type="xs:boolean">
+ <prop oor:name="SheetTab" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Layout/Window -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Layout - [Section] Window -->
@@ -411,7 +411,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="OutlineSymbol" oor:type="xs:boolean">
+ <prop oor:name="OutlineSymbol" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Layout/Window -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Layout - [Section] Window -->
@@ -427,7 +427,7 @@
<info>
<desc>Contains other layout settings.</desc>
</info>
- <prop oor:name="StatusbarFunction" oor:type="xs:int">
+ <prop oor:name="StatusbarFunction" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Calc/Layout -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: (Status Bar) -->
@@ -484,14 +484,14 @@
<desc>Specifies the distance between tabulator stops in 1/100th millimeters.</desc>
<label>Tab stops</label>
</info>
- <prop oor:name="Metric" oor:type="xs:int">
+ <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the tabulator distance with locales that use the metric system.</desc>
<label/>
</info>
<value>1250</value>
</prop>
- <prop oor:name="NonMetric" oor:type="xs:int">
+ <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the tabulator distance with locales that don&apos;t use the metric system.</desc>
<label/>
@@ -508,7 +508,7 @@
<desc>Specifies the measurement unit to be used in the user interface.</desc>
<label>Measurement unit</label>
</info>
- <prop oor:name="Metric" oor:type="xs:int">
+ <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the measurement unit that is used with locales that use the metric system.</desc>
</info>
@@ -541,7 +541,7 @@
</constraints>
<value>2</value>
</prop>
- <prop oor:name="NonMetric" oor:type="xs:int">
+ <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the measurement unit that is used with locales that don&apos;t use the metric system.</desc>
</info>
@@ -580,7 +580,7 @@
<info>
<desc>Specifies the zoom for new spreadsheet documents.</desc>
</info>
- <prop oor:name="Type" oor:type="xs:int">
+ <prop oor:name="Type" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Calc/Layout -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: (Status Bar) -->
@@ -608,7 +608,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="Value" oor:type="xs:int">
+ <prop oor:name="Value" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Calc/Layout -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: (Status Bar) -->
@@ -619,7 +619,7 @@
</info>
<value>100</value>
</prop>
- <prop oor:name="Synchronize" oor:type="xs:boolean">
+ <prop oor:name="Synchronize" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: Tools - Options - Spreadsheets - View - [Section] Zoom -->
<info>
<author>NN</author>
@@ -634,7 +634,7 @@
<info>
<desc>Contains settings that affect cell input.</desc>
</info>
- <prop oor:name="MoveSelection" oor:type="xs:boolean">
+ <prop oor:name="MoveSelection" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Input -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Input - [Section] Input -->
@@ -645,7 +645,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="MoveSelectionDirection" oor:type="xs:int">
+ <prop oor:name="MoveSelectionDirection" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Calc/Input -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Input - [Section] Input -->
@@ -678,7 +678,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="SwitchToEditMode" oor:type="xs:boolean">
+ <prop oor:name="SwitchToEditMode" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Input -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Input - [Section] Input -->
@@ -689,7 +689,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ExpandFormatting" oor:type="xs:boolean">
+ <prop oor:name="ExpandFormatting" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Input -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Input - [Section] Input -->
@@ -700,7 +700,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ShowReference" oor:type="xs:boolean">
+ <prop oor:name="ShowReference" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Input -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Input - [Section] Input -->
@@ -711,7 +711,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ExpandReference" oor:type="xs:boolean">
+ <prop oor:name="ExpandReference" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Input -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Input - [Section] Input -->
@@ -722,7 +722,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="HighlightSelection" oor:type="xs:boolean">
+ <prop oor:name="HighlightSelection" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Input -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options -Spreadsheets - Input - [Section] Input -->
@@ -733,7 +733,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="UseTabCol" oor:type="xs:boolean">
+ <prop oor:name="UseTabCol" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Input -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: only API (see UseTabCol) -->
@@ -744,7 +744,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="UsePrinterMetrics" oor:type="xs:boolean">
+ <prop oor:name="UsePrinterMetrics" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: Tools - Options - Spreadsheet - General - [Section] Input settings -->
<info>
<author>NN</author>
@@ -753,7 +753,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ReplaceCellsWarning" oor:type="xs:boolean">
+ <prop oor:name="ReplaceCellsWarning" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: Tools - Options - Spreadsheet - General - [Section] Input settings -->
<info>
<author>NN</author>
@@ -762,7 +762,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="LastFunctions" oor:type="oor:int-list">
+ <prop oor:name="LastFunctions" oor:type="oor:int-list" oor:nillable="false">
<!-- OldPath: Calc/Input -->
<!-- OldLocation: Soffice.cfg -->
<info>
@@ -799,7 +799,7 @@
</constraints>
<value>224 226 222 223 6</value>
</prop>
- <prop oor:name="AutoInput" oor:type="xs:boolean">
+ <prop oor:name="AutoInput" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Input -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools Cell Contents AutoInput -->
@@ -810,7 +810,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="DetectiveAuto" oor:type="xs:boolean">
+ <prop oor:name="DetectiveAuto" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Input -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools Detective AutoRefresh -->
@@ -830,7 +830,7 @@
<info>
<desc>Contains settings that control the behavior of the grid.</desc>
</info>
- <prop oor:name="SnapToGrid" oor:type="xs:boolean">
+ <prop oor:name="SnapToGrid" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Grid/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Spreadsheet Grid - [Section] Options -->
@@ -841,7 +841,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="SizeToGrid" oor:type="xs:boolean">
+ <prop oor:name="SizeToGrid" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Grid/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools Options Spreadsheet Grid - [Section] Snap grid -->
@@ -852,7 +852,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="VisibleGrid" oor:type="xs:boolean">
+ <prop oor:name="VisibleGrid" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Grid/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Spreadsheet Grid - [Section] Options -->
@@ -863,7 +863,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Synchronize" oor:type="xs:boolean">
+ <prop oor:name="Synchronize" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Grid/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Spreadsheet Grid - [Section] Options -->
@@ -884,14 +884,14 @@
<desc>Defines the horizontal distance between the single grid points in 1/100th millimeters.</desc>
<label>X axis</label>
</info>
- <prop oor:name="Metric" oor:type="xs:int">
+ <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the distance that is used with locales that use the metric system.</desc>
<label/>
</info>
<value>1000</value>
</prop>
- <prop oor:name="NonMetric" oor:type="xs:int">
+ <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the distance that is used with locales that don&apos;t use the metric system.</desc>
<label/>
@@ -909,14 +909,14 @@
<desc>Defines the vertical distance between the single grid points in 1/100th millimeters.</desc>
<label>Y axis</label>
</info>
- <prop oor:name="Metric" oor:type="xs:int">
+ <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the distance that is used with locales that use the metric system.</desc>
<label/>
</info>
<value>1000</value>
</prop>
- <prop oor:name="NonMetric" oor:type="xs:int">
+ <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the distance that is used with locales that don&apos;t use the metric system.</desc>
<label/>
@@ -939,14 +939,14 @@
<desc>Defines the distance between grid points on the X axis in 1/100th millimeters.</desc>
<label>X Axis Resolution</label>
</info>
- <prop oor:name="Metric" oor:type="xs:int">
+ <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the distance that is used with locales that use the metric system.</desc>
<label/>
</info>
<value>1000</value>
</prop>
- <prop oor:name="NonMetric" oor:type="xs:int">
+ <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the distance that is used with locales that don&apos;t use the metric system.</desc>
<label/>
@@ -964,14 +964,14 @@
<desc>Defines the distance between grid points on the Y axis in 1/100th millimeters.</desc>
<label>Y Axis Resolution</label>
</info>
- <prop oor:name="Metric" oor:type="xs:int">
+ <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the distance that is used with locales that use the metric system.</desc>
<label/>
</info>
<value>1000</value>
</prop>
- <prop oor:name="NonMetric" oor:type="xs:int">
+ <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the distance that is used with locales that don&apos;t use the metric system.</desc>
<label/>
@@ -984,7 +984,7 @@
<info>
<desc>Specifies how the grid is divided.</desc>
</info>
- <prop oor:name="XAxis" oor:type="xs:int">
+ <prop oor:name="XAxis" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Calc/Grid/Subdivision -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Spreadsheet Grid - [Section] Grid -->
@@ -995,7 +995,7 @@
</info>
<value>1</value>
</prop>
- <prop oor:name="YAxis" oor:type="xs:int">
+ <prop oor:name="YAxis" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Calc/Grid/Subdivision -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Spreadsheet Grid - [Section] Grid -->
@@ -1012,7 +1012,7 @@
<info>
<desc>Contains the sort list settings.</desc>
</info>
- <prop oor:name="List" oor:type="oor:string-list">
+ <prop oor:name="List" oor:type="oor:string-list" oor:nillable="false">
<!-- OldPath: Calc/Sort_Lists -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Spreadsheet Sort lists [List box] Lists -->
@@ -1033,7 +1033,7 @@
<info>
<desc>Contains settings for DBF Import dialog</desc>
</info>
- <prop oor:name="CharSet" oor:type="xs:int">
+ <prop oor:name="CharSet" oor:type="xs:int" oor:nillable="false">
<info>
<author>muthusuba</author>
<desc>Charset/Language</desc>
@@ -1046,7 +1046,7 @@
<info>
<desc>Contains settings for DBF Export dialog</desc>
</info>
- <prop oor:name="CharSet" oor:type="xs:int">
+ <prop oor:name="CharSet" oor:type="xs:int" oor:nillable="false">
<info>
<author>muthusuba</author>
<desc>Charset/Language</desc>
@@ -1059,7 +1059,7 @@
<info>
<desc>Contains setting for Text CSV Import</desc>
</info>
- <prop oor:name="MergeDelimiters" oor:type="xs:boolean">
+ <prop oor:name="MergeDelimiters" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>muthusuba</author>
<desc>Merge Delimiter check box status</desc>
@@ -1067,7 +1067,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="QuotedFieldAsText" oor:type="xs:boolean">
+ <prop oor:name="QuotedFieldAsText" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>kyoshida</author>
<desc>If true, quoted field is always imported as text
@@ -1076,7 +1076,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="DetectSpecialNumbers" oor:type="xs:boolean">
+ <prop oor:name="DetectSpecialNumbers" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>kyoshida</author>
<desc>If true, Calc tries to detect special number format, such as date and scientific notation.</desc>
@@ -1084,7 +1084,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Language" oor:type="xs:int">
+ <prop oor:name="Language" oor:type="xs:int" oor:nillable="false">
<info>
<author>kyoshida</author>
<desc>Language to use for CSV import. This determines how the numbers are parsed.</desc>
@@ -1092,7 +1092,7 @@
</info>
<value>0</value>
</prop>
- <prop oor:name="Separators" oor:type="xs:string">
+ <prop oor:name="Separators" oor:type="xs:string" oor:nillable="false">
<info>
<author>muthusuba</author>
<desc>List of Separators - as a String</desc>
@@ -1100,7 +1100,7 @@
</info>
<value>; </value>
</prop>
- <prop oor:name="TextSeparators" oor:type="xs:string">
+ <prop oor:name="TextSeparators" oor:type="xs:string" oor:nillable="false">
<info>
<author>muthusuba</author>
<desc>Text Separators</desc>
@@ -1108,7 +1108,7 @@
</info>
<value>"</value>
</prop>
- <prop oor:name="FixedWidth" oor:type="xs:boolean">
+ <prop oor:name="FixedWidth" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>muthusuba</author>
<desc>Fixed width</desc>
@@ -1116,7 +1116,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="FromRow" oor:type="xs:int">
+ <prop oor:name="FromRow" oor:type="xs:int" oor:nillable="false">
<info>
<author>muthusuba</author>
<desc>From Row</desc>
@@ -1124,7 +1124,7 @@
</info>
<value>1</value>
</prop>
- <prop oor:name="CharSet" oor:type="xs:int">
+ <prop oor:name="CharSet" oor:type="xs:int" oor:nillable="false">
<info>
<author>muthusuba</author>
<desc>Char Set</desc>
@@ -1132,7 +1132,7 @@
</info>
<value>-1</value>
</prop>
- <prop oor:name="FixedWidthList" oor:type="xs:string">
+ <prop oor:name="FixedWidthList" oor:type="xs:string" oor:nillable="false">
<info>
<author>muthusuba</author>
<desc>Fixed Width List of separators</desc>
@@ -1150,7 +1150,7 @@
<info>
<desc>Contains settings for iterative calculation of circular references.</desc>
</info>
- <prop oor:name="Iteration" oor:type="xs:boolean">
+ <prop oor:name="Iteration" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Calculate/Iterative_References -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Spreadsheet Calculate [Section] Iterative references -->
@@ -1161,7 +1161,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Steps" oor:type="xs:int">
+ <prop oor:name="Steps" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Calc/Calculate/Iterative_References -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Spreadsheet Calculate [Section] Iterative references -->
@@ -1172,7 +1172,7 @@
</info>
<value>100</value>
</prop>
- <prop oor:name="MinimumChange" oor:type="xs:double">
+ <prop oor:name="MinimumChange" oor:type="xs:double" oor:nillable="false">
<!-- OldPath: Calc/Calculate/Iterative_References -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Spreadsheet Calculate [Section] Iterative references -->
@@ -1188,7 +1188,7 @@
<info>
<desc>Contains other calculation settings.</desc>
</info>
- <prop oor:name="CaseSensitive" oor:type="xs:boolean">
+ <prop oor:name="CaseSensitive" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Calculate -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Spreadsheet Calculate [Check box] Case sensitive -->
@@ -1199,7 +1199,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Precision" oor:type="xs:boolean">
+ <prop oor:name="Precision" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Calculate -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Spreadsheet Calculate [Check box] Precision as shown -->
@@ -1210,7 +1210,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="SearchCriteria" oor:type="xs:boolean">
+ <prop oor:name="SearchCriteria" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Calculate -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Spreadsheet Calculate [Check box] Search criteria = and &lt;&gt; must apply to whole cells -->
@@ -1221,7 +1221,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="FindLabel" oor:type="xs:boolean">
+ <prop oor:name="FindLabel" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Calc/Calculate -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Spreadsheet Calculate [Check box] Automatically find column and row labels -->
@@ -1232,7 +1232,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="DecimalPlaces" oor:type="xs:int">
+ <prop oor:name="DecimalPlaces" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Calc/Calculate -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Spreadsheet Calculate [Combo box] Decimal places -->
@@ -1243,7 +1243,7 @@
</info>
<value>-1</value>
</prop>
- <prop oor:name="RegularExpressions" oor:type="xs:boolean">
+ <prop oor:name="RegularExpressions" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: Tools - Options Spreadsheet Calculate [Check box] Enable regular expressions in formulas -->
<info>
<author>NN</author>
@@ -1316,7 +1316,7 @@
</enumeration>
</constraints>
</prop>
- <prop oor:name="EnglishFunctionName" oor:type="xs:boolean">
+ <prop oor:name="EnglishFunctionName" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: Tools - Options Spreadsheet Formula -->
<info>
<author>kyoshida</author>
@@ -1324,7 +1324,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="SeparatorArg" oor:type="xs:string">
+ <prop oor:name="SeparatorArg" oor:type="xs:string" oor:nillable="false">
<!-- UIHints: Tools - Options Spreadsheet Formula -->
<info>
<author>kyoshida</author>
@@ -1332,7 +1332,7 @@
</info>
<value></value>
</prop>
- <prop oor:name="SeparatorArrayRow" oor:type="xs:string">
+ <prop oor:name="SeparatorArrayRow" oor:type="xs:string" oor:nillable="false">
<!-- UIHints: Tools - Options Spreadsheet Formula -->
<info>
<author>kyoshida</author>
@@ -1340,7 +1340,7 @@
</info>
<value></value>
</prop>
- <prop oor:name="SeparatorArrayCol" oor:type="xs:string">
+ <prop oor:name="SeparatorArrayCol" oor:type="xs:string" oor:nillable="false">
<!-- UIHints: Tools - Options Spreadsheet Formula -->
<info>
<author>kyoshida</author>
@@ -1358,7 +1358,7 @@
<info>
<desc>Specifies the colors for revision marking.</desc>
</info>
- <prop oor:name="Change" oor:type="xs:int">
+ <prop oor:name="Change" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Calc/Changes/Colors -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Spreadsheet Changes [Section] Colors for changes -->
@@ -1370,7 +1370,7 @@
</info>
<value>-1</value>
</prop>
- <prop oor:name="Deletion" oor:type="xs:int">
+ <prop oor:name="Deletion" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Calc/Changes/Colors -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Spreadsheet Changes [Section] Colors for changes -->
@@ -1382,7 +1382,7 @@
</info>
<value>-1</value>
</prop>
- <prop oor:name="Insertion" oor:type="xs:int">
+ <prop oor:name="Insertion" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Calc/Changes/Colors -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Spreadsheet Changes [Section] Colors for changes -->
@@ -1394,7 +1394,7 @@
</info>
<value>-1</value>
</prop>
- <prop oor:name="MovedEntry" oor:type="xs:int">
+ <prop oor:name="MovedEntry" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Calc/Changes/Colors -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Spreadsheet Changes [Section] Colors for changes -->
@@ -1420,7 +1420,7 @@
<info>
<desc>Specifies how VBA macros are treated in Excel files.</desc>
</info>
- <prop oor:name="Load" oor:type="xs:boolean">
+ <prop oor:name="Load" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Filter/MS_Office/Basic/Excel -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - Filter Settings Microsoft Office [Section] Microsoft Excel 97/2000 -->
@@ -1431,7 +1431,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Executable" oor:type="xs:boolean">
+ <prop oor:name="Executable" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>AB</author>
<desc>Indicates whether VBA macros are imported without comments to be executable.</desc>
@@ -1439,7 +1439,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Save" oor:type="xs:boolean">
+ <prop oor:name="Save" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Filter/MS_Office/Basic/Excel -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - Filter Settings Microsoft Office [Section] Microsoft Excel 97/2000 -->
@@ -1455,7 +1455,7 @@
<info>
<desc>Contains settings for Lotus 1-2-3 import.</desc>
</info>
- <prop oor:name="WK3" oor:type="xs:boolean">
+ <prop oor:name="WK3" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Common -->
<!-- OldLocation: soffice.ini -->
<info>
@@ -1470,7 +1470,7 @@
<info>
<desc>Contains settings for MS Excel import.</desc>
</info>
- <prop oor:name="ColScale" oor:type="xs:double">
+ <prop oor:name="ColScale" oor:type="xs:double" oor:nillable="false">
<!-- OldPath: Common -->
<!-- OldLocation: soffice.ini -->
<info>
@@ -1487,7 +1487,7 @@
</constraints>
<value>1.0</value>
</prop>
- <prop oor:name="RowScale" oor:type="xs:double">
+ <prop oor:name="RowScale" oor:type="xs:double" oor:nillable="false">
<!-- OldPath: Common -->
<!-- OldLocation: soffice.ini -->
<info>
@@ -1516,7 +1516,7 @@
<info>
<desc>Contains settings that affect which pages are printed.</desc>
</info>
- <prop oor:name="EmptyPages" oor:type="xs:boolean">
+ <prop oor:name="EmptyPages" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies whether empty pages are printed.</desc>
<label>Printing Empty Pages</label>
@@ -1528,7 +1528,7 @@
<info>
<desc>Contains other print settings.</desc>
</info>
- <prop oor:name="AllSheets" oor:type="xs:boolean">
+ <prop oor:name="AllSheets" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies whether all sheets are printed instead of only the selected sheets.</desc>
<label>Print all Sheets</label>
@@ -1547,14 +1547,14 @@
<desc>Defines the default size of newly created objects using CTRL-Return or CTRL-Click at an object creating Button.</desc>
<label>Default Object Size</label>
</info>
- <prop oor:name="Width" oor:type="xs:int">
+ <prop oor:name="Width" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the default width in 1/100th millimeters.</desc>
<label/>
</info>
<value>8000</value>
</prop>
- <prop oor:name="Height" oor:type="xs:int">
+ <prop oor:name="Height" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the default height in 1/100th millimeters.</desc>
<label/>
@@ -1568,7 +1568,7 @@
<desc>Contains settings for shared documents.</desc>
<label>Shared document</label>
</info>
- <prop oor:name="ShowWarning" oor:type="xs:boolean">
+ <prop oor:name="ShowWarning" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies whether the warning box for shared documents is shown.</desc>
<label>Show warning box</label>
@@ -1614,7 +1614,7 @@
<info>
<desc>Other Program defaults</desc>
</info>
- <prop oor:name="TabCount" oor:type="xs:int">
+ <prop oor:name="TabCount" oor:type="xs:int" oor:nillable="false">
<!-- UIHints: Tools - Options - Spreadsheet - Defaults -->
<info>
<author>Albert Thuswaldner</author>
diff --git a/officecfg/registry/schema/org/openoffice/Office/Canvas.xcs b/officecfg/registry/schema/org/openoffice/Office/Canvas.xcs
index 65b41bd9c9b4..1fca8ad1769f 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Canvas.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Canvas.xcs
@@ -35,7 +35,7 @@
<author>THB</author>
<desc>Contains config entries for the DirectX-based implementation of the XCanvas interface.</desc>
</info>
- <prop oor:name="DeviceBlacklist" oor:type="oor:int-list">
+ <prop oor:name="DeviceBlacklist" oor:type="oor:int-list" oor:nillable="false">
<info>
<desc>Sequence of 8 integers per device/driver
combination, that uniquely mark them as not being compatible with the
@@ -50,7 +50,7 @@
</info>
<value>0</value>
</prop>
- <prop oor:name="BlacklistCurrentDevice" oor:type="xs:boolean">
+ <prop oor:name="BlacklistCurrentDevice" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Indicates whether the current DirectX device
ids should get blacklisted. When true, a
@@ -61,7 +61,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="MaxTextureSize" oor:type="xs:int">
+ <prop oor:name="MaxTextureSize" oor:type="xs:int" oor:nillable="false">
<info>
<desc>If present, limits the size of the textures
that get requested from the DX runtime. If
@@ -86,7 +86,7 @@
<desc>List of preferred implementation names, for each given canvas service.</desc>
</info>
</set>
- <prop oor:name="ForceSafeServiceImpl" oor:type="xs:boolean">
+ <prop oor:name="ForceSafeServiceImpl" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>THB</author>
<desc>When true, force canvas factory to use the last
@@ -99,7 +99,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="UseAcceleratedCanvas" oor:type="xs:boolean">
+ <prop oor:name="UseAcceleratedCanvas" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>THB</author>
<desc>When true, suggest canvas factory to use a
@@ -110,7 +110,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="UseAntialiasingCanvas" oor:type="xs:boolean">
+ <prop oor:name="UseAntialiasingCanvas" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>THB</author>
<desc>When true, suggest canvas factory to use a
diff --git a/officecfg/registry/schema/org/openoffice/Office/Chart.xcs b/officecfg/registry/schema/org/openoffice/Office/Chart.xcs
index 8989c0f7c270..c8d7b7d33a65 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Chart.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Chart.xcs
@@ -36,7 +36,7 @@
<author>BM</author>
<desc>Specifies the colors for creating new charts.</desc>
</info>
- <prop oor:name="Series" oor:type="oor:long-list">
+ <prop oor:name="Series" oor:type="oor:long-list" oor:nillable="false">
<!-- OldPath: Chart/Default_Colors -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Chart Default colors [Section] Chart colors -->
diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index c74e508ef7b6..6a8f8460b9d8 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -530,14 +530,14 @@
<desc>Contains the name of the replacing font.</desc>
</info>
</prop>
- <prop oor:name="OnScreenOnly" oor:type="xs:boolean">
+ <prop oor:name="OnScreenOnly" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Determines if the font pair replacement is applied on the
screen.</desc>
</info>
<value>false</value>
</prop>
- <prop oor:name="Always" oor:type="xs:boolean">
+ <prop oor:name="Always" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Determines if the font pair replacement is applied on the
printer.</desc>
@@ -551,7 +551,7 @@
<author>SJ</author>
<desc>Specifies the size of a graphic. [UNIT=1/100 mm].</desc>
</info>
- <prop oor:name="Width" oor:type="xs:int">
+ <prop oor:name="Width" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the width of graphic. [UNIT=1/100 mm].</desc>
</info>
@@ -571,7 +571,7 @@
</constraints>
<value>10000</value>
</prop>
- <prop oor:name="Height" oor:type="xs:int">
+ <prop oor:name="Height" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the height of graphic. [UNIT=1/100 mm].</desc>
</info>
@@ -597,7 +597,7 @@
<author>SJ</author>
<desc>Specifies the logical size of a graphic. [UNIT=1/100 mm].</desc>
</info>
- <prop oor:name="LogicalWidth" oor:type="xs:int">
+ <prop oor:name="LogicalWidth" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the logical width of a graphic.
[UNIT=1/100 mm].</desc>
@@ -618,7 +618,7 @@
</constraints>
<value>10000</value>
</prop>
- <prop oor:name="LogicalHeight" oor:type="xs:int">
+ <prop oor:name="LogicalHeight" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the logical height of graphic. [UNIT=1/100 mm].</desc>
</info>
@@ -888,7 +888,9 @@
</enumeration>
</constraints>
</prop>
- <prop oor:name="DynamicBorderColors" oor:type="xs:boolean">
+ <prop
+ oor:name="DynamicBorderColors" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<desc>specifies whether the controls should use dynamic border
coloring, if possible. Dymamic border coloring means that when the
@@ -897,7 +899,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="UseDocumentTextMetrics" oor:type="xs:boolean">
+ <prop
+ oor:name="UseDocumentTextMetrics" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<desc>controls whether form controls, when they render their text, use
the same metrics as the document does. If this is set to &lt;true&gt;,
@@ -918,7 +922,7 @@
<desc>Stores registration data which is related to a specific product
version.</desc>
</info>
- <prop oor:name="InstanceUUID" oor:type="xs:string">
+ <prop oor:name="InstanceUUID" oor:type="xs:string" oor:nillable="false">
<info>
<desc>An instance UUID associated with the product version ID.</desc>
</info>
@@ -933,7 +937,7 @@
<desc>Contains internal MSExport settings that are common for all
apps.</desc>
</info>
- <prop oor:name="UseOldExport" oor:type="xs:boolean">
+ <prop oor:name="UseOldExport" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies if an old (5.0 format) way instead of a new one (6.0
OLE embedded document) should be used for export of inplace objects in
@@ -948,19 +952,19 @@
<desc>Contains a description of the persistent password
container.</desc>
</info>
- <prop oor:name="UseStorage" oor:type="xs:boolean">
+ <prop oor:name="UseStorage" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies if passwords can be stored persistently.</desc>
</info>
<value>false</value>
</prop>
- <prop oor:name="HasMaster" oor:type="xs:boolean">
+ <prop oor:name="HasMaster" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies if there is a valid master password.</desc>
</info>
<value>false</value>
</prop>
- <prop oor:name="Master" oor:type="xs:string">
+ <prop oor:name="Master" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Contains the master password encrypted by itself.</desc>
</info>
@@ -987,7 +991,7 @@
<author>AW</author>
<desc>Specifies settings for the 3D engine.</desc>
</info>
- <prop oor:name="Dithering" oor:type="xs:boolean">
+ <prop oor:name="Dithering" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: 3D-Engine/Dithering -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - Other - [Section] 3D-View -->
@@ -999,7 +1003,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="OpenGL" oor:type="xs:boolean">
+ <prop oor:name="OpenGL" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: 3D-Engine/OpenGL -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - Other - [Section] 3D-View -->
@@ -1013,7 +1017,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="OpenGL_Faster" oor:type="xs:boolean">
+ <prop oor:name="OpenGL_Faster" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: 3D-Engine/OpenGL_Faster -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - Other - [Section] 3D-View -->
@@ -1030,7 +1034,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ShowFull" oor:type="xs:boolean">
+ <prop oor:name="ShowFull" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: 3D-Engine/ShowFull -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - Other - [Section] 3D-View -->
@@ -1049,7 +1053,7 @@
<author>CD</author>
<desc>Contains settings related to dictionaries.</desc>
</info>
- <prop oor:name="RepositoryURL" oor:type="xs:string">
+ <prop oor:name="RepositoryURL" oor:type="xs:string" oor:nillable="false">
<info>
<author>CD</author>
<desc>Specifies a repository URL where users can download additional
@@ -1063,7 +1067,7 @@
<author>AW</author>
<desc>Specifies settings for the Drawinglayer.</desc>
</info>
- <prop oor:name="OverlayBuffer" oor:type="xs:boolean">
+ <prop oor:name="OverlayBuffer" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>AW</author>
<desc>Specifies if the Overlay pane is allowed to use an own buffer.
@@ -1076,7 +1080,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="OverlayBuffer_Calc" oor:type="xs:boolean">
+ <prop
+ oor:name="OverlayBuffer_Calc" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>AW</author>
<desc>Similar to OverlayBuffer, but only for Calc Application</desc>
@@ -1084,7 +1090,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="OverlayBuffer_Writer" oor:type="xs:boolean">
+ <prop
+ oor:name="OverlayBuffer_Writer" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>AW</author>
<desc>Similar to OverlayBuffer, but only for Writer Application</desc>
@@ -1092,7 +1100,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="OverlayBuffer_DrawImpress" oor:type="xs:boolean">
+ <prop
+ oor:name="OverlayBuffer_DrawImpress" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>AW</author>
<desc>Similar to OverlayBuffer, but only for Draw/Impress
@@ -1102,7 +1112,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="PaintBuffer" oor:type="xs:boolean">
+ <prop oor:name="PaintBuffer" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>AW</author>
<desc>Specifies if the Application Repaint shall use a buffer for
@@ -1115,7 +1125,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="PaintBuffer_Calc" oor:type="xs:boolean">
+ <prop
+ oor:name="PaintBuffer_Calc" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>AW</author>
<desc>Similar to PaintBuffer, but only for Calc Application.
@@ -1124,7 +1136,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="PaintBuffer_Writer" oor:type="xs:boolean">
+ <prop
+ oor:name="PaintBuffer_Writer" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>AW</author>
<desc>Similar to PaintBuffer, but only for Writer Application.
@@ -1133,7 +1147,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="PaintBuffer_DrawImpress" oor:type="xs:boolean">
+ <prop
+ oor:name="PaintBuffer_DrawImpress" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>AW</author>
<desc>Similar to PaintBuffer, but only for Draw/Impress Applications.
@@ -1143,7 +1159,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="StripeColorA" oor:type="xs:int">
+ <prop oor:name="StripeColorA" oor:type="xs:int" oor:nillable="false">
<info>
<author>AW</author>
<desc>Specifies the first one of two colors used from overlay to
@@ -1152,7 +1168,7 @@
</info>
<value>0</value>
</prop>
- <prop oor:name="StripeColorB" oor:type="xs:int">
+ <prop oor:name="StripeColorB" oor:type="xs:int" oor:nillable="false">
<info>
<author>AW</author>
<desc>Specifies the second one of two colors used from overlay to
@@ -1161,7 +1177,7 @@
</info>
<value>16777215</value>
</prop>
- <prop oor:name="StripeLength" oor:type="xs:short">
+ <prop oor:name="StripeLength" oor:type="xs:short" oor:nillable="false">
<info>
<author>AW</author>
<desc>Specifies the length in pixels of a single stripe used from
@@ -1170,7 +1186,7 @@
</info>
<value>4</value>
</prop>
- <prop oor:name="MaximumPaperWidth" oor:type="xs:int">
+ <prop oor:name="MaximumPaperWidth" oor:type="xs:int" oor:nillable="false">
<info>
<author>AW</author>
<desc>Specifies the maximum allowed Paper Width for page definitions
@@ -1180,7 +1196,8 @@
</info>
<value>300</value>
</prop>
- <prop oor:name="MaximumPaperHeight" oor:type="xs:int">
+ <prop
+ oor:name="MaximumPaperHeight" oor:type="xs:int" oor:nillable="false">
<info>
<author>AW</author>
<desc>Specifies the maximum allowed Paper Height for page definitions
@@ -1190,7 +1207,9 @@
</info>
<value>300</value>
</prop>
- <prop oor:name="MaximumPaperLeftMargin" oor:type="xs:int">
+ <prop
+ oor:name="MaximumPaperLeftMargin" oor:type="xs:int"
+ oor:nillable="false">
<info>
<author>AW</author>
<desc>Specifies the maximum allowed Left Margin for the page
@@ -1199,7 +1218,9 @@
</info>
<value>9999</value>
</prop>
- <prop oor:name="MaximumPaperRightMargin" oor:type="xs:int">
+ <prop
+ oor:name="MaximumPaperRightMargin" oor:type="xs:int"
+ oor:nillable="false">
<info>
<author>AW</author>
<desc>Specifies the maximum allowed Right Margin for the page
@@ -1208,7 +1229,9 @@
</info>
<value>9999</value>
</prop>
- <prop oor:name="MaximumPaperTopMargin" oor:type="xs:int">
+ <prop
+ oor:name="MaximumPaperTopMargin" oor:type="xs:int"
+ oor:nillable="false">
<info>
<author>AW</author>
<desc>Specifies the maximum allowed Top Margin for the page
@@ -1217,7 +1240,9 @@
</info>
<value>9999</value>
</prop>
- <prop oor:name="MaximumPaperBottomMargin" oor:type="xs:int">
+ <prop
+ oor:name="MaximumPaperBottomMargin" oor:type="xs:int"
+ oor:nillable="false">
<info>
<author>AW</author>
<desc>Specifies the maximum allowed Bottom Margin for the page
@@ -1226,7 +1251,7 @@
</info>
<value>9999</value>
</prop>
- <prop oor:name="AntiAliasing" oor:type="xs:boolean">
+ <prop oor:name="AntiAliasing" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>AW</author>
<desc>This switch allows to switch DrawingLayer based views to be
@@ -1238,7 +1263,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="SnapHorVerLinesToDiscrete" oor:type="xs:boolean">
+ <prop
+ oor:name="SnapHorVerLinesToDiscrete" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>AW</author>
<desc>This switch allows to enhance visualisation of graphics which
@@ -1253,7 +1280,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="RenderDecoratedTextDirect" oor:type="xs:boolean">
+ <prop
+ oor:name="RenderDecoratedTextDirect" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>AW</author>
<desc>This switch determines if the decorations of decorated text
@@ -1267,7 +1296,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="RenderSimpleTextDirect" oor:type="xs:boolean">
+ <prop
+ oor:name="RenderSimpleTextDirect" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>AW</author>
<desc>This switch determines if simple text is directly rendered using
@@ -1280,7 +1311,8 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="SolidDragCreate" oor:type="xs:boolean">
+ <prop
+ oor:name="SolidDragCreate" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>AW</author>
<desc>This switch decides if Interactions in the DrawingLayer are
@@ -1296,7 +1328,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Quadratic3DRenderLimit" oor:type="xs:int">
+ <prop
+ oor:name="Quadratic3DRenderLimit" oor:type="xs:int"
+ oor:nillable="false">
<info>
<author>AW</author>
<desc>This defines a Limitation for the default raster conversion from
@@ -1309,7 +1343,9 @@
</info>
<value>1000000</value>
</prop>
- <prop oor:name="QuadraticFormControlRenderLimit" oor:type="xs:int">
+ <prop
+ oor:name="QuadraticFormControlRenderLimit" oor:type="xs:int"
+ oor:nillable="false">
<info>
<author>AW</author>
<desc>This defines a Limitation for the default raster conversion of
@@ -1323,7 +1359,9 @@
</info>
<value>45000</value>
</prop>
- <prop oor:name="TransparentSelection" oor:type="xs:boolean">
+ <prop
+ oor:name="TransparentSelection" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>AW</author>
<desc>This switch defines if the selections in the applications (text
@@ -1336,7 +1374,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="TransparentSelectionPercent" oor:type="xs:short">
+ <prop
+ oor:name="TransparentSelectionPercent" oor:type="xs:short"
+ oor:nillable="false">
<info>
<author>AW</author>
<desc>Specifies the degree of transparence to be used when transparent
@@ -1349,7 +1389,9 @@
</info>
<value>75</value>
</prop>
- <prop oor:name="SelectionMaximumLuminancePercent" oor:type="xs:short">
+ <prop
+ oor:name="SelectionMaximumLuminancePercent" oor:type="xs:short"
+ oor:nillable="false">
<info>
<author>AW</author>
<desc>Specifies the maximum allowed luminance the system's selection
@@ -1367,7 +1409,9 @@
<author>OS</author>
<desc>Contains miscellaneous settings for the auto correction.</desc>
</info>
- <prop oor:name="UseReplacementTable" oor:type="xs:boolean">
+ <prop
+ oor:name="UseReplacementTable" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: AutoCorrect/Options/All -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options - Use replacement
@@ -1380,7 +1424,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="TwoCapitalsAtStart" oor:type="xs:boolean">
+ <prop
+ oor:name="TwoCapitalsAtStart" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: AutoCorrect/Options/All -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options - Correct TWo
@@ -1393,7 +1439,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="CapitalAtStartSentence" oor:type="xs:boolean">
+ <prop
+ oor:name="CapitalAtStartSentence" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: AutoCorrect/Options/All -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options - Capitalize first
@@ -1406,7 +1454,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ChangeUnderlineWeight" oor:type="xs:boolean">
+ <prop
+ oor:name="ChangeUnderlineWeight" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: AutoCorrect/Options/All -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options - Automatic *bold*
@@ -1419,7 +1469,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="SetInetAttribute" oor:type="xs:boolean">
+ <prop
+ oor:name="SetInetAttribute" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: AutoCorrect/Options/All -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options - URL
@@ -1432,7 +1484,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ChangeOrdinalNumber" oor:type="xs:boolean">
+ <prop
+ oor:name="ChangeOrdinalNumber" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: AutoCorrect/Options/All -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options - Replace
@@ -1445,7 +1499,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ChangeDash" oor:type="xs:boolean">
+ <prop oor:name="ChangeDash" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: AutoCorrect/Options/All -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options - Replace
@@ -1458,7 +1512,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="AddNonBreakingSpace" oor:type="xs:boolean">
+ <prop
+ oor:name="AddNonBreakingSpace" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: AutoCorrect/Options/All -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options - Add non-breaking
@@ -1471,7 +1527,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="RemoveDoubleSpaces" oor:type="xs:boolean">
+ <prop
+ oor:name="RemoveDoubleSpaces" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: AutoCorrect/Options/All -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options Ignore Double
@@ -1483,7 +1541,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="CorrectAccidentalCapsLock" oor:type="xs:boolean">
+ <prop
+ oor:name="CorrectAccidentalCapsLock" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- UIHints: Tools AutoCorrect/AutoFormat Options Correct accidental
use of cAPS LOCK key -->
<info>
@@ -1494,7 +1554,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ReplaceSingleQuote" oor:type="xs:boolean">
+ <prop
+ oor:name="ReplaceSingleQuote" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: AutoCorrect/Options/All -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Custom Quotes Single
@@ -1528,7 +1590,9 @@
<label>End Single quote</label>
</info>
</prop>
- <prop oor:name="ReplaceDoubleQuote" oor:type="xs:boolean">
+ <prop
+ oor:name="ReplaceDoubleQuote" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: AutoCorrect/Options/All -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Custom Quotes Double
@@ -1567,7 +1631,9 @@
<desc>Contains settings to apply replacement rules and
exceptions.</desc>
</info>
- <prop oor:name="TwoCapitalsAtStart" oor:type="xs:boolean">
+ <prop
+ oor:name="TwoCapitalsAtStart" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: AutoCorrect/Options/All -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - AutoCorrect/AutoFormat - Exceptions - Words with
@@ -1581,7 +1647,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="CapitalAtStartSentence" oor:type="xs:boolean">
+ <prop
+ oor:name="CapitalAtStartSentence" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: AutoCorrect/Options/All -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - AutoCorrect/AutoFormat - Exceptions -
@@ -1608,7 +1676,7 @@
<desc>Specifies the cache related options for the drawing
engine.</desc>
</info>
- <prop oor:name="OLE_Objects" oor:type="xs:int">
+ <prop oor:name="OLE_Objects" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: soffice-WorkingSet -->
<!-- OldLocation: soffice.ini -->
<!-- Notice: MaxOLEObjectsInDrawingEngineMemory -->
@@ -1629,7 +1697,7 @@
<author>AF</author>
<desc>Specifies the cache related options for Writer.</desc>
</info>
- <prop oor:name="OLE_Objects" oor:type="xs:int">
+ <prop oor:name="OLE_Objects" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: soffice-WorkingSet -->
<!-- OldLocation: soffice.ini -->
<!-- Notice: MaxOLEObjectsInSWMemory -->
@@ -1649,7 +1717,7 @@
<desc>Specifies a group of graphic manager cache options.</desc>
<label>Graphic Manager Cache</label>
</info>
- <prop oor:name="TotalCacheSize" oor:type="xs:int">
+ <prop oor:name="TotalCacheSize" oor:type="xs:int" oor:nillable="false">
<info>
<author>AF</author>
<desc>Specifies the maximum cache size for all graphical display
@@ -1658,7 +1726,7 @@
</info>
<value>22000000</value>
</prop>
- <prop oor:name="ObjectCacheSize" oor:type="xs:int">
+ <prop oor:name="ObjectCacheSize" oor:type="xs:int" oor:nillable="false">
<info>
<author>AF</author>
<desc>Specifies the maximum cache size for a single graphic display
@@ -1667,7 +1735,8 @@
</info>
<value>5500000</value>
</prop>
- <prop oor:name="ObjectReleaseTime" oor:type="xs:int">
+ <prop
+ oor:name="ObjectReleaseTime" oor:type="xs:int" oor:nillable="false">
<info>
<author>AF</author>
<desc>Specifies the time in seconds after which a cached object is
@@ -1692,7 +1761,9 @@
<author>CD</author>
<desc>Contains various properties information purpose only.</desc>
</info>
- <prop oor:name="WorkPathChanged" oor:type="xs:boolean">
+ <prop
+ oor:name="WorkPathChanged" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<desc>A flag which is set by the tools options dialog whenever a
user changed the work path.</desc>
@@ -1706,7 +1777,8 @@
<desc>Contains the global path settings, mainly those of the Options
dialog.</desc>
</info>
- <prop oor:name="OfficeInstall" oor:type="xs:string">
+ <prop
+ oor:name="OfficeInstall" oor:type="xs:string" oor:nillable="false">
<!-- OldLocation:NEW-->
<info>
<deprecated/>
@@ -1717,7 +1789,9 @@
<!-- JB: Empty default inserted into empty property node. Remove if
NIL was intended -->
</prop>
- <prop oor:name="OfficeInstallURL" oor:type="xs:string">
+ <prop
+ oor:name="OfficeInstallURL" oor:type="xs:string"
+ oor:nillable="false">
<!-- OldLocation:NEW-->
<info>
<deprecated/>
@@ -1729,7 +1803,7 @@
<!-- JB: Empty default inserted into empty property node. Remove if
NIL was intended -->
</prop>
- <prop oor:name="Addin" oor:type="xs:string">
+ <prop oor:name="Addin" oor:type="xs:string" oor:nillable="false">
<info>
<author>NN</author>
<desc>Specifies the directory that contains spreadsheet add-ins
@@ -1737,7 +1811,9 @@
</info>
<value>$(progpath)/addin</value>
</prop>
- <prop oor:name="AutoCorrect" oor:type="oor:string-list">
+ <prop
+ oor:name="AutoCorrect" oor:type="oor:string-list"
+ oor:nillable="false">
<info>
<author>OS</author>
<desc>Specifies the settings of the AutoCorrect dialog.</desc>
@@ -1747,7 +1823,8 @@
<it>$(userurl)/autocorr</it>
</value>
</prop>
- <prop oor:name="AutoText" oor:type="oor:string-list">
+ <prop
+ oor:name="AutoText" oor:type="oor:string-list" oor:nillable="false">
<info>
<author>OS</author>
<desc>Contains the directory which contains the AutoText
@@ -1758,14 +1835,14 @@
<it>$(userurl)/autotext</it>
</value>
</prop>
- <prop oor:name="Backup" oor:type="xs:string">
+ <prop oor:name="Backup" oor:type="xs:string" oor:nillable="false">
<info>
<author>MBA</author>
<desc>Stores the automatic backup copies of documents.</desc>
</info>
<value>$(userurl)/backup</value>
</prop>
- <prop oor:name="Basic" oor:type="oor:string-list">
+ <prop oor:name="Basic" oor:type="oor:string-list" oor:nillable="false">
<info>
<author>MBA</author>
<desc>Contains the Basic files, which are used by the
@@ -1776,7 +1853,7 @@
<it>$(userurl)/basic</it>
</value>
</prop>
- <prop oor:name="Bitmap" oor:type="xs:string">
+ <prop oor:name="Bitmap" oor:type="xs:string" oor:nillable="false">
<info>
<author>MBA</author>
<desc>Contains the bitmap files which can be used for menu and
@@ -1784,7 +1861,7 @@
</info>
<value>$(insturl)/share/config/symbol</value>
</prop>
- <prop oor:name="Config" oor:type="xs:string">
+ <prop oor:name="Config" oor:type="xs:string" oor:nillable="false">
<info>
<author>MBA</author>
<desc>Contains the configuration files. This value cannot be changed
@@ -1792,21 +1869,21 @@
</info>
<value>$(insturl)/share/config</value>
</prop>
- <prop oor:name="Dictionary" oor:type="xs:string">
+ <prop oor:name="Dictionary" oor:type="xs:string" oor:nillable="false">
<info>
<author>TL</author>
<desc>Contains the provided dictionaries.</desc>
</info>
<value>$(insturl)/share/wordbook</value>
</prop>
- <prop oor:name="Favorite" oor:type="xs:string">
+ <prop oor:name="Favorite" oor:type="xs:string" oor:nillable="false">
<info>
<author>PB</author>
<desc>Specifies the path to save folder bookmarks.</desc>
</info>
<value>$(userurl)/config/folders</value>
</prop>
- <prop oor:name="Filter" oor:type="xs:string">
+ <prop oor:name="Filter" oor:type="xs:string" oor:nillable="false">
<info>
<author>MBA</author>
<desc>Specifies the directory where all the filters are
@@ -1814,7 +1891,8 @@
</info>
<value>$(progpath)/filter</value>
</prop>
- <prop oor:name="Gallery" oor:type="oor:string-list">
+ <prop
+ oor:name="Gallery" oor:type="oor:string-list" oor:nillable="false">
<info>
<author>AF</author>
<desc>Specifies the directory which contains the Gallery database
@@ -1825,7 +1903,7 @@
<it>$(userurl)/gallery</it>
</value>
</prop>
- <prop oor:name="Graphic" oor:type="xs:string">
+ <prop oor:name="Graphic" oor:type="xs:string" oor:nillable="false">
<info>
<author>DL</author>
<desc>Specifies the directory that is displayed when the dialog for
@@ -1833,14 +1911,14 @@
</info>
<value>$(userurl)/gallery</value>
</prop>
- <prop oor:name="Help" oor:type="xs:string">
+ <prop oor:name="Help" oor:type="xs:string" oor:nillable="false">
<info>
<author>ABI</author>
<desc>Specifies the path to the Office help files.</desc>
</info>
<value>$(instpath)/help</value>
</prop>
- <prop oor:name="Linguistic" oor:type="xs:string">
+ <prop oor:name="Linguistic" oor:type="xs:string" oor:nillable="false">
<info>
<author>TL</author>
<desc>Contains the files that are necessary for the
@@ -1848,14 +1926,14 @@
</info>
<value>$(insturl)/share/dict</value>
</prop>
- <prop oor:name="Module" oor:type="xs:string">
+ <prop oor:name="Module" oor:type="xs:string" oor:nillable="false">
<info>
<author>MBA</author>
<desc>Contains the Office modules.</desc>
</info>
<value>$(progpath)</value>
</prop>
- <prop oor:name="Palette" oor:type="xs:string">
+ <prop oor:name="Palette" oor:type="xs:string" oor:nillable="false">
<info>
<author>DL</author>
<desc>Specifies the path to the palette files *.SOB to *.SOF
@@ -1863,7 +1941,7 @@
</info>
<value>$(userurl)/config</value>
</prop>
- <prop oor:name="Plugin" oor:type="oor:string-list">
+ <prop oor:name="Plugin" oor:type="oor:string-list" oor:nillable="false">
<info>
<author>MBA</author>
<desc>Specifies the directory in which the plugins are saved.</desc>
@@ -1872,7 +1950,7 @@
<it>$(progpath)/plugin</it>
</value>
</prop>
- <prop oor:name="Storage" oor:type="xs:string">
+ <prop oor:name="Storage" oor:type="xs:string" oor:nillable="false">
<info>
<deprecated>Without replacement.</deprecated>
<author>ABI</author>
@@ -1880,7 +1958,7 @@
</info>
<value>$(userpath)/store</value>
</prop>
- <prop oor:name="Temp" oor:type="xs:string">
+ <prop oor:name="Temp" oor:type="xs:string" oor:nillable="false">
<info>
<deprecated>Replaced by
org.openoffice.Office.Paths/Temp</deprecated>
@@ -1902,7 +1980,8 @@
<it>$(userurl)/template</it>
</value>
</prop>
- <prop oor:name="UIConfig" oor:type="oor:string-list">
+ <prop
+ oor:name="UIConfig" oor:type="oor:string-list" oor:nillable="false">
<info>
<author>MBA</author>
<desc>Specifies additional folders containing a global user
@@ -1913,21 +1992,22 @@
<it>$(insturl)/share/config</it>
</value>
</prop>
- <prop oor:name="UserConfig" oor:type="xs:string">
+ <prop oor:name="UserConfig" oor:type="xs:string" oor:nillable="false">
<info>
<author>MBA</author>
<desc>Specifies the folder with the user settings.</desc>
</info>
<value>$(userurl)/config</value>
</prop>
- <prop oor:name="UserDictionary" oor:type="xs:string">
+ <prop
+ oor:name="UserDictionary" oor:type="xs:string" oor:nillable="false">
<info>
<author>TL</author>
<desc>Contains the custom dictionaries.</desc>
</info>
<value>$(userurl)/wordbook</value>
</prop>
- <prop oor:name="Work" oor:type="xs:string">
+ <prop oor:name="Work" oor:type="xs:string" oor:nillable="false">
<info>
<author>MBA</author>
<desc>Specifies the path of the work folder, which can be modified
@@ -1944,14 +2024,16 @@
modified according to the user's needs. They are used when pressing
the Standard-button in the Options dialog.</desc>
</info>
- <prop oor:name="Addin" oor:type="xs:string">
+ <prop oor:name="Addin" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the default directory that contains spreadsheet
add-ins which use the old add-in API.</desc>
</info>
<value>$(progpath)/addin</value>
</prop>
- <prop oor:name="AutoCorrect" oor:type="oor:string-list">
+ <prop
+ oor:name="AutoCorrect" oor:type="oor:string-list"
+ oor:nillable="false">
<info>
<desc>Specifies the default directory for the settings of the
AutoCorrect dialog.</desc>
@@ -1961,7 +2043,8 @@
<it>$(userurl)/autocorr</it>
</value>
</prop>
- <prop oor:name="AutoText" oor:type="oor:string-list">
+ <prop
+ oor:name="AutoText" oor:type="oor:string-list" oor:nillable="false">
<info>
<desc>Specifies the default directory where the AutoText modules are
located.</desc>
@@ -1971,14 +2054,14 @@
<it>$(userurl)/autotext</it>
</value>
</prop>
- <prop oor:name="Backup" oor:type="xs:string">
+ <prop oor:name="Backup" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the default directory for the automatic backup
copies of documents.</desc>
</info>
<value>$(userurl)/backup</value>
</prop>
- <prop oor:name="Basic" oor:type="oor:string-list">
+ <prop oor:name="Basic" oor:type="oor:string-list" oor:nillable="false">
<info>
<desc>Specifies the default directory where the Basic files, used by
the AutoPilots, are located.</desc>
@@ -1988,42 +2071,43 @@
<it>$(userurl)/basic</it>
</value>
</prop>
- <prop oor:name="Bitmap" oor:type="xs:string">
+ <prop oor:name="Bitmap" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the default directory where the bitmap files, which
can be used for the menu and toolbar icons, are located.</desc>
</info>
<value>$(insturl)/share/config/symbol</value>
</prop>
- <prop oor:name="Config" oor:type="xs:string">
+ <prop oor:name="Config" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the default directory where the configuration files
are stored.</desc>
</info>
<value>$(insturl)/share/config</value>
</prop>
- <prop oor:name="Dictionary" oor:type="xs:string">
+ <prop oor:name="Dictionary" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the default directory where the provided
dictionaries are located.</desc>
</info>
<value>$(insturl)/share/wordbook/$(vlang)</value>
</prop>
- <prop oor:name="Favorite" oor:type="xs:string">
+ <prop oor:name="Favorite" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the default directory where folder bookmarks are
stored.</desc>
</info>
<value>$(userurl)/config/folders</value>
</prop>
- <prop oor:name="Filter" oor:type="xs:string">
+ <prop oor:name="Filter" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the default directory where all the filters are
stored.</desc>
</info>
<value>$(progpath)/filter</value>
</prop>
- <prop oor:name="Gallery" oor:type="oor:string-list">
+ <prop
+ oor:name="Gallery" oor:type="oor:string-list" oor:nillable="false">
<info>
<desc>Specifies the default directory where the Gallery database and
multimedia files are located.</desc>
@@ -2033,42 +2117,42 @@
<it>$(userurl)/gallery</it>
</value>
</prop>
- <prop oor:name="Graphic" oor:type="xs:string">
+ <prop oor:name="Graphic" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the default directory used by the dialog for opening
a graphic or for saving a new graphic.</desc>
</info>
<value>$(userurl)/gallery</value>
</prop>
- <prop oor:name="Help" oor:type="xs:string">
+ <prop oor:name="Help" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the default directory where Office help files are
located.</desc>
</info>
<value>$(instpath)/help</value>
</prop>
- <prop oor:name="Linguistic" oor:type="xs:string">
+ <prop oor:name="Linguistic" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the default directory where the files that are
necessary for the spellcheck are saved.</desc>
</info>
<value>$(insturl)/share/dict</value>
</prop>
- <prop oor:name="Module" oor:type="xs:string">
+ <prop oor:name="Module" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the default directory which contains the Office
modules.</desc>
</info>
<value>$(progpath)</value>
</prop>
- <prop oor:name="Palette" oor:type="xs:string">
+ <prop oor:name="Palette" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the default directory for the palette files *.SOB to
*.SOF containing user-defined colors and patterns.</desc>
</info>
<value>$(userurl)/config</value>
</prop>
- <prop oor:name="Plugin" oor:type="oor:string-list">
+ <prop oor:name="Plugin" oor:type="oor:string-list" oor:nillable="false">
<info>
<desc>Specifies the default directory where the Office plugins are
located.</desc>
@@ -2077,14 +2161,15 @@
<it>$(progpath)/plugin</it>
</value>
</prop>
- <prop oor:name="Temp" oor:type="xs:string">
+ <prop oor:name="Temp" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the default directory that is used as a base
directory for all temporary Office files.</desc>
</info>
<value>$(temp)</value>
</prop>
- <prop oor:name="Template" oor:type="oor:string-list">
+ <prop
+ oor:name="Template" oor:type="oor:string-list" oor:nillable="false">
<info>
<desc>Specifies the default directory where all provided templates
are located in folders and sub-folders.</desc>
@@ -2095,7 +2180,8 @@
<it>$(userurl)/template</it>
</value>
</prop>
- <prop oor:name="UIConfig" oor:type="oor:string-list">
+ <prop
+ oor:name="UIConfig" oor:type="oor:string-list" oor:nillable="false">
<info>
<desc>Specifies the default directories for the global user
interface configuration. The final user interface configuration is
@@ -2103,21 +2189,22 @@
</info>
<value/>
</prop>
- <prop oor:name="UserConfig" oor:type="xs:string">
+ <prop oor:name="UserConfig" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the default directory which stores the user
settings.</desc>
</info>
<value>$(userurl)/config</value>
</prop>
- <prop oor:name="UserDictionary" oor:type="xs:string">
+ <prop
+ oor:name="UserDictionary" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the default directory which stores the custom
dictionaries.</desc>
</info>
<value>$(userurl)/wordbook</value>
</prop>
- <prop oor:name="Work" oor:type="xs:string">
+ <prop oor:name="Work" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the default working directory where user stores
documents.</desc>
@@ -2136,7 +2223,7 @@
<author>OS</author>
<desc>Contains settings for the font substitution.</desc>
</info>
- <prop oor:name="Replacement" oor:type="xs:boolean">
+ <prop oor:name="Replacement" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: FontSubstitution -->
<!-- OldLocation: fntsubst.ini -->
<!-- UIHints: Tools - Options - General - Font replacement -->
@@ -2165,7 +2252,7 @@
<desc>Contains the settings for the font selection box in the object
bar.</desc>
</info>
- <prop oor:name="History" oor:type="xs:boolean">
+ <prop oor:name="History" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Desktop/FontHistory -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - View -->
@@ -2177,7 +2264,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ShowFontBoxWYSIWYG" oor:type="xs:boolean">
+ <prop
+ oor:name="ShowFontBoxWYSIWYG" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: Desktop/ShowFontBoxWYSIWYG -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - View -->
@@ -2201,14 +2290,16 @@
(HTML source view or BASIC IDE)</desc>
</info>
</prop>
- <prop oor:name="FontHeight" oor:type="xs:short">
+ <prop oor:name="FontHeight" oor:type="xs:short" oor:nillable="false">
<info>
<desc>Specifies the height, in points, of the font that is used in
source views (HTML source view or BASIC IDE)</desc>
</info>
<value>10</value>
</prop>
- <prop oor:name="NonProportionalFontsOnly" oor:type="xs:boolean">
+ <prop
+ oor:name="NonProportionalFontsOnly" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<desc>Specifies whether only non-proportional font should be
presented on the dialog page.</desc>
@@ -2223,7 +2314,7 @@
<desc>Specifies Gallery options.</desc>
<label>Gallery Options</label>
</info>
- <prop oor:name="ID_Dialog" oor:type="xs:boolean">
+ <prop oor:name="ID_Dialog" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Common/Peets-ID-Dialog -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: If entry is set to True, activate context menu on gallery
@@ -2264,7 +2355,7 @@
<author>AS</author>
<desc>Contains history information.</desc>
</info>
- <prop oor:name="HelpBookmarkSize" oor:type="xs:int">
+ <prop oor:name="HelpBookmarkSize" oor:type="xs:int" oor:nillable="false">
<info>
<author>PB</author>
<desc>Describes the range and current size of the help bookmark
@@ -2286,7 +2377,7 @@
</constraints>
<value>10000</value>
</prop>
- <prop oor:name="Size" oor:type="xs:int">
+ <prop oor:name="Size" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Describes the range and current size of the history list.</desc>
</info>
@@ -2304,7 +2395,7 @@
</constraints>
<value>100</value>
</prop>
- <prop oor:name="PickListSize" oor:type="xs:int">
+ <prop oor:name="PickListSize" oor:type="xs:int" oor:nillable="false">
<!--UI hints: File menu-->
<info>
<desc>Describes the range and current size of the picklist shown
@@ -2348,7 +2439,7 @@
<desc>Contains settings which are used during the Office startup to
check for unfinished work.</desc>
</info>
- <prop oor:name="SendCrashMail" oor:type="xs:boolean">
+ <prop oor:name="SendCrashMail" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Common/SendCrashMail -->
<!-- OldLocation: soffice.ini -->
<info>
@@ -2358,7 +2449,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="UseMailUI" oor:type="xs:boolean">
+ <prop oor:name="UseMailUI" oor:type="xs:boolean" oor:nillable="false">
<info>
<deprecated/>
<author>MBA</author>
@@ -2366,7 +2457,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Slot" oor:type="xs:boolean">
+ <prop oor:name="Slot" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Common/Slots -->
<!-- OldLocation: soffice.ini -->
<info>
@@ -2377,7 +2468,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="DevelopmentChart" oor:type="xs:boolean">
+ <prop
+ oor:name="DevelopmentChart" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>BM</author>
<desc>Specifies that If this option is set to true, the new
@@ -2388,7 +2481,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="CurrentTempURL" oor:type="xs:string">
+ <prop oor:name="CurrentTempURL" oor:type="xs:string" oor:nillable="false">
<info>
<author>CD</author>
<desc>Specifies the current or last temp directory. This directory
@@ -2411,7 +2504,7 @@
<author>MBA</author>
<desc>Contains general settings about the saving process.</desc>
</info>
- <prop oor:name="WorkingSet" oor:type="xs:boolean">
+ <prop oor:name="WorkingSet" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: General/Restore -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - General Save - [Section] Restore editing
@@ -2430,7 +2523,7 @@
<author>MBA</author>
<desc>Contains settings which specify how documents are saved.</desc>
</info>
- <prop oor:name="Unpacked" oor:type="xs:boolean">
+ <prop oor:name="Unpacked" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: File - Save/Save As -->
<info>
<author>MBA</author>
@@ -2441,7 +2534,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="UseUserData" oor:type="xs:boolean">
+ <prop oor:name="UseUserData" oor:type="xs:boolean" oor:nillable="false">
<!-- OldLocation: soffice.ini -->
<!-- UIHints: File - Save/Save As -->
<info>
@@ -2452,7 +2545,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="AutoSave" oor:type="xs:boolean">
+ <prop oor:name="AutoSave" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: General/Save/Documents -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - General Save - [Section] Save -->
@@ -2464,7 +2557,8 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="CreateBackup" oor:type="xs:boolean">
+ <prop
+ oor:name="CreateBackup" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: General/Save/Documents -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - General Save - [Section] Save -->
@@ -2476,7 +2570,8 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="EditProperty" oor:type="xs:boolean">
+ <prop
+ oor:name="EditProperty" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: General/Save/Documents -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - General Save - [Section] Save -->
@@ -2488,7 +2583,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="AutoSavePrompt" oor:type="xs:boolean">
+ <prop
+ oor:name="AutoSavePrompt" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: General/Save/Documents -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - General Save - [Section] Save -->
@@ -2500,7 +2597,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="AutoSaveTimeIntervall" oor:type="xs:int">
+ <prop
+ oor:name="AutoSaveTimeIntervall" oor:type="xs:int"
+ oor:nillable="false">
<!-- OldPath: General/Save/Documents -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - General Save - [Section] Save -->
@@ -2525,7 +2624,7 @@
</constraints>
<value>15</value>
</prop>
- <prop oor:name="ViewInfo" oor:type="xs:boolean">
+ <prop oor:name="ViewInfo" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: General/Restore -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - General Save - [Section] Restore
@@ -2538,7 +2637,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="PrettyPrinting" oor:type="xs:boolean">
+ <prop
+ oor:name="PrettyPrinting" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- UIHints: Tools Options - General Save - optimize XML file
size-->
<!--the UI setting is inverse to this setting-->
@@ -2551,7 +2652,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="WarnAlienFormat" oor:type="xs:boolean">
+ <prop
+ oor:name="WarnAlienFormat" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- UIHints: Tools Options - General Save - -->
<info>
<author>MBA</author>
@@ -2561,7 +2664,8 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="AlwaysSaveAs" oor:type="xs:boolean">
+ <prop
+ oor:name="AlwaysSaveAs" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>MAV</author>
<desc>If the option is set, every time a user triggers a plain Save
@@ -2570,7 +2674,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="SaveBackwardCompatibleODF" oor:type="xs:boolean">
+ <prop
+ oor:name="SaveBackwardCompatibleODF" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>PB</author>
<desc>If the value is "true", then the ODF that is saved by
@@ -2579,7 +2685,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="LoadPrinter" oor:type="xs:boolean">
+ <prop oor:name="LoadPrinter" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: Tools - Options - Load/Save - General - Load - Load
printer settings with the document -->
<info>
@@ -2596,7 +2702,7 @@
<desc>Contains settings on how graphics contained in a document should
be saved.</desc>
</info>
- <prop oor:name="Format" oor:type="xs:int">
+ <prop oor:name="Format" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: General/Save/Graphics -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - General Save - [Section] Save
@@ -2633,7 +2739,7 @@
<desc>Specifies how URLs in documents should be processed during
save.</desc>
</info>
- <prop oor:name="FileSystem" oor:type="xs:boolean">
+ <prop oor:name="FileSystem" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: General/Save/URL -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - General Save - [Section] Save URLs
@@ -2646,7 +2752,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Internet" oor:type="xs:boolean">
+ <prop oor:name="Internet" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: General/Save/URL -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - General Save - [Section] Save URLs
@@ -2665,7 +2771,8 @@
<author>PB</author>
<desc>Specifies ODF settings.</desc>
</info>
- <prop oor:name="DefaultVersion" oor:type="xs:short">
+ <prop
+ oor:name="DefaultVersion" oor:type="xs:short" oor:nillable="false">
<!-- UIHints: Tools - Options - Load/Save - General - ODF version -->
<info>
<author>PB</author>
@@ -2700,7 +2807,9 @@
</constraints>
<value>3</value>
</prop>
- <prop oor:name="UseSHA1InODF12" oor:type="xs:boolean">
+ <prop
+ oor:name="UseSHA1InODF12" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>MAV</author>
<desc>Specifies whether SHA1 algorithm instead of SHA256 should be
@@ -2709,7 +2818,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="UseBlowfishInODF12" oor:type="xs:boolean">
+ <prop
+ oor:name="UseBlowfishInODF12" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>MAV</author>
<desc>Specifies whether Blowfish algorithm instead of AES should be
@@ -2724,7 +2835,9 @@
<author>MBA</author>
<desc>Contains settings regarding the loading of documents.</desc>
</info>
- <prop oor:name="UserDefinedSettings" oor:type="xs:boolean">
+ <prop
+ oor:name="UserDefinedSettings" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- UIHints: Tools Options - General Load/Save - General [Section]
Load - Load user-defined with the document-->
<info>
@@ -2735,7 +2848,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ShowOfficeUpdateDialog" oor:type="xs:boolean">
+ <prop
+ oor:name="ShowOfficeUpdateDialog" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>MAV</author>
<desc>Specifies whether the office update dialog should be shown in
@@ -2755,7 +2870,9 @@
<author>MBA</author>
<desc>Contains security settings regarding Basic scripts.</desc>
</info>
- <prop oor:name="SecureURL" oor:type="oor:string-list">
+ <prop
+ oor:name="SecureURL" oor:type="oor:string-list"
+ oor:nillable="false">
<!-- OldPath: Security/SecureURL -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - Browser -->
@@ -2771,7 +2888,7 @@
</info>
<value/>
</prop>
- <prop oor:name="OfficeBasic" oor:type="xs:int">
+ <prop oor:name="OfficeBasic" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Security/StarBASIC -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - Browser -->
@@ -2798,7 +2915,9 @@
</constraints>
<value>1</value>
</prop>
- <prop oor:name="ExecutePlugins" oor:type="xs:boolean">
+ <prop
+ oor:name="ExecutePlugins" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>MBA</author>
<desc>Specifies whether execution of plugins found inside a document
@@ -2806,7 +2925,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Warning" oor:type="xs:boolean">
+ <prop oor:name="Warning" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>MBA</author>
<desc>Specifies whether a warning box should be displayed before
@@ -2814,7 +2933,8 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Confirmation" oor:type="xs:boolean">
+ <prop
+ oor:name="Confirmation" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>MBA</author>
<desc>Specifies whether the user must confirm before a basic script
@@ -2822,7 +2942,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="WarnSaveOrSendDoc" oor:type="xs:boolean">
+ <prop
+ oor:name="WarnSaveOrSendDoc" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>GT</author>
<desc>Specifies wether to warn when saving or sending documents with
@@ -2830,7 +2952,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="WarnSignDoc" oor:type="xs:boolean">
+ <prop oor:name="WarnSignDoc" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>GT</author>
<desc>Specifies wether to warn when signing documents with
@@ -2838,7 +2960,8 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="WarnPrintDoc" oor:type="xs:boolean">
+ <prop
+ oor:name="WarnPrintDoc" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>GT</author>
<desc>Specifies wether to warn when printing documents with
@@ -2846,7 +2969,8 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="WarnCreatePDF" oor:type="xs:boolean">
+ <prop
+ oor:name="WarnCreatePDF" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>GT</author>
<desc>Specifies wether to warn when creating PDF documents with
@@ -2854,7 +2978,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="RemovePersonalInfoOnSaving" oor:type="xs:boolean">
+ <prop
+ oor:name="RemovePersonalInfoOnSaving" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>GT</author>
<desc>Specifies wether to remove personal information on
@@ -2862,7 +2988,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="RecommendPasswordProtection" oor:type="xs:boolean">
+ <prop
+ oor:name="RecommendPasswordProtection" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>GT</author>
<desc>Specifies wether to recommend password protection when saving
@@ -2870,7 +2998,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="HyperlinksWithCtrlClick" oor:type="xs:boolean">
+ <prop
+ oor:name="HyperlinksWithCtrlClick" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>PB</author>
<desc>Specifies whether ctrl-click is required to follow
@@ -2878,7 +3008,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="MacroSecurityLevel" oor:type="xs:int">
+ <prop
+ oor:name="MacroSecurityLevel" oor:type="xs:int"
+ oor:nillable="false">
<info>
<author>GT</author>
<desc>Level of Macro security.</desc>
@@ -2897,7 +3029,9 @@
</constraints>
<value>2</value>
</prop>
- <prop oor:name="DisableMacrosExecution" oor:type="xs:boolean">
+ <prop
+ oor:name="DisableMacrosExecution" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>MAV</author>
<desc>Specifies whether the macro execution is disabled in general.
@@ -2920,7 +3054,7 @@
<author>MBA</author>
<desc>Contains window and dialog settings.</desc>
</info>
- <prop oor:name="FontScaling" oor:type="xs:short">
+ <prop oor:name="FontScaling" oor:type="xs:short" oor:nillable="false">
<!--OldPath: General/View -->
<!--OldLocation: soffice.cfg-->
<!--UIHints: Tools Options - General View [Section] Display-->
@@ -2951,7 +3085,9 @@
<author>CD</author>
<desc>Contains settings to change new document window behavior.</desc>
</info>
- <prop oor:name="ForceFocusAndToFront" oor:type="xs:boolean">
+ <prop
+ oor:name="ForceFocusAndToFront" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>CD</author>
<desc>Every new document window will be forced to front and grabs
@@ -2966,7 +3102,7 @@
<desc>Contains settings on how the application window should be
displayed.</desc>
</info>
- <prop oor:name="FullScreen" oor:type="xs:boolean">
+ <prop oor:name="FullScreen" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: soffice-view/App-Window -->
<!-- OldLocation: soffice.ini -->
<info>
@@ -2976,7 +3112,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Preference" oor:type="xs:int">
+ <prop oor:name="Preference" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: soffice-view/App-Window -->
<!-- OldLocation: soffice.ini -->
<info>
@@ -3009,7 +3145,7 @@
<desc>Contains settings which specify how dialogs and toolbars should
be displayed.</desc>
</info>
- <prop oor:name="ButtonLarge" oor:type="xs:boolean">
+ <prop oor:name="ButtonLarge" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: General/View -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - General View [Section] Buttons -->
@@ -3021,7 +3157,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ButtonFlat" oor:type="xs:boolean">
+ <prop oor:name="ButtonFlat" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: General/View -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - General View [Section] Buttons -->
@@ -3033,7 +3169,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="MousePositioning" oor:type="xs:short">
+ <prop
+ oor:name="MousePositioning" oor:type="xs:short"
+ oor:nillable="false">
<!-- OldPath: General/View -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - General View [Section] Mouse
@@ -3063,7 +3201,9 @@
</constraints>
<value>2</value>
</prop>
- <prop oor:name="MiddleMouseButton" oor:type="xs:short">
+ <prop
+ oor:name="MiddleMouseButton" oor:type="xs:short"
+ oor:nillable="false">
<!-- OldPath: General/View -->
<!-- UIHints: Tools Options - General View [Section] Middle mouse
button -->
@@ -3137,7 +3277,9 @@
<author>PB</author>
<desc>Contains menu view settings.</desc>
</info>
- <prop oor:name="DontHideDisabledEntry" oor:type="xs:boolean">
+ <prop
+ oor:name="DontHideDisabledEntry" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: Desktop/DontHideDisabledEntry -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - View -->
@@ -3148,7 +3290,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsSystemIconsInMenus" oor:type="xs:boolean">
+ <prop
+ oor:name="IsSystemIconsInMenus" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>CMC</author>
<desc>Indicates whether icons in the office menus should
@@ -3156,7 +3300,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ShowIconsInMenues" oor:type="xs:boolean">
+ <prop
+ oor:name="ShowIconsInMenues" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: General/View -->
<!-- UIHints: Tools Options - General View [Section] Options -->
<info>
@@ -3166,7 +3312,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="FollowMouse" oor:type="xs:boolean">
+ <prop oor:name="FollowMouse" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: General/View -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - General View [Section] Options -->
@@ -3184,7 +3330,7 @@
<author>MBA</author>
<desc>Contains settings for general windows used by the Office.</desc>
</info>
- <prop oor:name="Drag" oor:type="xs:short">
+ <prop oor:name="Drag" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: General/View -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - General View [Section] Display -->
@@ -3224,7 +3370,7 @@
<desc>Deprecated.</desc>
</info>
</prop>
- <prop oor:name="Version" oor:type="xs:string">
+ <prop oor:name="Version" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: soffice_View/Window -->
<!-- OldLocation: soffice.ini -->
<!-- Notice: LM: Description is missing -->
@@ -3236,7 +3382,7 @@
<!-- JB: Empty default inserted into empty property node. Remove if
NIL was intended -->
</prop>
- <prop oor:name="State" oor:type="xs:boolean">
+ <prop oor:name="State" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: soffice_View/Window -->
<!-- OldLocation: soffice.ini -->
<!-- Notice: LM: Description is missing -->
@@ -3287,7 +3433,7 @@
</enumeration>
</constraints>
</prop>
- <prop oor:name="UserData" oor:type="xs:string">
+ <prop oor:name="UserData" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: soffice_View/Window -->
<!-- OldLocation: soffice.ini -->
<!-- Notice: LM: Description is missing -->
@@ -3307,7 +3453,7 @@
<desc>Specifies the properties of window containers for docked
windows.</desc>
</info>
- <prop oor:name="Key" oor:type="xs:string">
+ <prop oor:name="Key" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: soffice_View/SplitWindow -->
<!-- OldLocation: soffice.ini -->
<!-- Notice: LM: Description is missing 0SplitWindow=V1,2,1,0,6308 -->
@@ -3384,14 +3530,15 @@
<info>
<desc>Font antialiasing properties</desc>
</info>
- <prop oor:name="Enabled" oor:type="xs:boolean">
+ <prop oor:name="Enabled" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies font antialiasing properties</desc>
<label>Font Antialiasing Enabled</label>
</info>
<value>true</value>
</prop>
- <prop oor:name="MinPixelHeight" oor:type="xs:short">
+ <prop
+ oor:name="MinPixelHeight" oor:type="xs:short" oor:nillable="false">
<info>
<desc>Specifies an additional limit if Font Antialiasing is enabled.
Fonts that are smaller than the specified limit are not
@@ -3408,7 +3555,7 @@
<desc>Contains the settings regarding the undo operation in the
Office.</desc>
</info>
- <prop oor:name="Steps" oor:type="xs:int">
+ <prop oor:name="Steps" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: General/Undo -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - General Save - [Section] Undo -->
@@ -3457,7 +3604,9 @@
<author>AF</author>
<desc>Specifies options related to printing.</desc>
</info>
- <prop oor:name="PrintingModifiesDocument" oor:type="xs:boolean">
+ <prop
+ oor:name="PrintingModifiesDocument" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- UIHints: Tools Options - General Print [Section]
PrinterOptions -->
<info>
@@ -3473,7 +3622,7 @@
<author>OS</author>
<desc>Contains settings for print specific warnings.</desc>
</info>
- <prop oor:name="PaperSize" oor:type="xs:boolean">
+ <prop oor:name="PaperSize" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: General/Print/Warning -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - General Print [Section] Warnings -->
@@ -3485,7 +3634,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="PaperOrientation" oor:type="xs:boolean">
+ <prop
+ oor:name="PaperOrientation" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: General/Print/Warning -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - General Print [Section] Warnings -->
@@ -3497,7 +3648,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="NotFound" oor:type="xs:boolean">
+ <prop oor:name="NotFound" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: General/Print/Warning -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - General Print [Section] Warnings -->
@@ -3509,7 +3660,8 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Transparency" oor:type="xs:boolean">
+ <prop
+ oor:name="Transparency" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: Tools Options - General Print [Section] Warnings -->
<info>
<author>AF</author>
@@ -3529,7 +3681,9 @@
<info>
<desc>Specifies the options related to printing.</desc>
</info>
- <prop oor:name="ReduceTransparency" oor:type="xs:boolean">
+ <prop
+ oor:name="ReduceTransparency" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- UIHints: Tools Options - General Print [Section]
PrinterOptions -->
<info>
@@ -3540,7 +3694,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ReducedTransparencyMode" oor:type="xs:short">
+ <prop
+ oor:name="ReducedTransparencyMode" oor:type="xs:short"
+ oor:nillable="false">
<!-- UIHints: Tools Options - General Print [Section]
PrinterOptions -->
<info>
@@ -3551,7 +3707,9 @@
</info>
<value>0</value>
</prop>
- <prop oor:name="ReduceGradients" oor:type="xs:boolean">
+ <prop
+ oor:name="ReduceGradients" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- UIHints: Tools Options - General Print [Section]
PrinterOptions -->
<info>
@@ -3562,7 +3720,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ReducedGradientMode" oor:type="xs:short">
+ <prop
+ oor:name="ReducedGradientMode" oor:type="xs:short"
+ oor:nillable="false">
<!-- UIHints: Tools Options - General Print [Section]
PrinterOptions -->
<info>
@@ -3573,7 +3733,9 @@
</info>
<value>0</value>
</prop>
- <prop oor:name="ReducedGradientStepCount" oor:type="xs:short">
+ <prop
+ oor:name="ReducedGradientStepCount" oor:type="xs:short"
+ oor:nillable="false">
<!-- UIHints: Tools Options - General Print [Section]
PrinterOptions -->
<info>
@@ -3584,7 +3746,9 @@
</info>
<value>64</value>
</prop>
- <prop oor:name="ReduceBitmaps" oor:type="xs:boolean">
+ <prop
+ oor:name="ReduceBitmaps" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- UIHints: Tools Options - General Print [Section]
PrinterOptions -->
<info>
@@ -3595,7 +3759,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ReducedBitmapMode" oor:type="xs:short">
+ <prop
+ oor:name="ReducedBitmapMode" oor:type="xs:short"
+ oor:nillable="false">
<!-- UIHints: Tools Options - General Print [Section]
PrinterOptions -->
<info>
@@ -3607,7 +3773,9 @@
</info>
<value>1</value>
</prop>
- <prop oor:name="ReducedBitmapResolution" oor:type="xs:short">
+ <prop
+ oor:name="ReducedBitmapResolution" oor:type="xs:short"
+ oor:nillable="false">
<!-- UIHints: Tools Options - General Print [Section]
PrinterOptions -->
<info>
@@ -3620,7 +3788,7 @@
</prop>
<prop
oor:name="ReducedBitmapIncludesTransparency"
- oor:type="xs:boolean">
+ oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: Tools Options - General Print [Section]
PrinterOptions -->
<info>
@@ -3631,7 +3799,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ConvertToGreyscales" oor:type="xs:boolean">
+ <prop
+ oor:name="ConvertToGreyscales" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- UIHints: Tools Options - General Print [Section]
PrinterOptions -->
<info>
@@ -3648,7 +3818,9 @@
<desc>Specifies the options for printing to a file.</desc>
<label>Print File</label>
</info>
- <prop oor:name="ReduceTransparency" oor:type="xs:boolean">
+ <prop
+ oor:name="ReduceTransparency" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- UIHints: Tools Options - General Print [Section]
PrintFileOptions -->
<info>
@@ -3659,7 +3831,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ReducedTransparencyMode" oor:type="xs:short">
+ <prop
+ oor:name="ReducedTransparencyMode" oor:type="xs:short"
+ oor:nillable="false">
<!-- UIHints: Tools Options - General Print [Section]
PrintFileOptions -->
<info>
@@ -3670,7 +3844,9 @@
</info>
<value>0</value>
</prop>
- <prop oor:name="ReduceGradients" oor:type="xs:boolean">
+ <prop
+ oor:name="ReduceGradients" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- UIHints: Tools Options - General Print [Section]
PrintFileOptions -->
<info>
@@ -3681,7 +3857,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ReducedGradientMode" oor:type="xs:short">
+ <prop
+ oor:name="ReducedGradientMode" oor:type="xs:short"
+ oor:nillable="false">
<!-- UIHints: Tools Options - General Print [Section]
PrintFileOptions -->
<info>
@@ -3692,7 +3870,9 @@
</info>
<value>0</value>
</prop>
- <prop oor:name="ReducedGradientStepCount" oor:type="xs:short">
+ <prop
+ oor:name="ReducedGradientStepCount" oor:type="xs:short"
+ oor:nillable="false">
<!-- UIHints: Tools Options - General Print [Section]
PrintFileOptions -->
<info>
@@ -3703,7 +3883,9 @@
</info>
<value>64</value>
</prop>
- <prop oor:name="ReduceBitmaps" oor:type="xs:boolean">
+ <prop
+ oor:name="ReduceBitmaps" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- UIHints: Tools Options - General Print [Section]
PrintFileOptions -->
<info>
@@ -3714,7 +3896,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ReducedBitmapMode" oor:type="xs:short">
+ <prop
+ oor:name="ReducedBitmapMode" oor:type="xs:short"
+ oor:nillable="false">
<!-- UIHints: Tools Options - General Print [Section]
PrintFileOptions -->
<info>
@@ -3726,7 +3910,9 @@
</info>
<value>1</value>
</prop>
- <prop oor:name="ReducedBitmapResolution" oor:type="xs:short">
+ <prop
+ oor:name="ReducedBitmapResolution" oor:type="xs:short"
+ oor:nillable="false">
<!-- UIHints: Tools Options - General Print [Section]
PrintFileOptions -->
<info>
@@ -3739,7 +3925,7 @@
</prop>
<prop
oor:name="ReducedBitmapIncludesTransparency"
- oor:type="xs:boolean">
+ oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: Tools Options - General Print [Section]
PrintFileOptions -->
<info>
@@ -3751,7 +3937,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ConvertToGreyscales" oor:type="xs:boolean">
+ <prop
+ oor:name="ConvertToGreyscales" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- UIHints: Tools Options - General Print [Section]
PrintFileOptions -->
<info>
@@ -3834,14 +4022,14 @@
<author>FS</author>
<desc>Contains settings that specify the common help settings.</desc>
</info>
- <prop oor:name="ShowBasic" oor:type="xs:boolean">
+ <prop oor:name="ShowBasic" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>ABI</author>
<desc>Determines wether basic help should be shown.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="Locale" oor:type="xs:string">
+ <prop oor:name="Locale" oor:type="xs:string" oor:nillable="false">
<info>
<author>ABI</author>
<desc>Determines the locale for the help pages.</desc>
@@ -3850,7 +4038,7 @@
<!-- JB: Empty default inserted into empty property node. Remove if NIL
was intended -->
</prop>
- <prop oor:name="System" oor:type="xs:string">
+ <prop oor:name="System" oor:type="xs:string" oor:nillable="false">
<info>
<author>ABI</author>
<desc>Determines the operating system on which the help system is
@@ -3860,7 +4048,7 @@
<!-- JB: Empty default inserted into empty property node. Remove if NIL
was intended -->
</prop>
- <prop oor:name="Tip" oor:type="xs:boolean">
+ <prop oor:name="Tip" oor:type="xs:boolean" oor:nillable="false">
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Help menu-->
<info>
@@ -3870,7 +4058,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ExtendedTip" oor:type="xs:boolean">
+ <prop oor:name="ExtendedTip" oor:type="xs:boolean" oor:nillable="false">
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Help menu-->
<info>
@@ -3880,7 +4068,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="HelpStyleSheet" oor:type="xs:string">
+ <prop oor:name="HelpStyleSheet" oor:type="xs:string" oor:nillable="false">
<info>
<author>ABI</author>
<desc>Specifies the name of the stylesheet used to display help
@@ -3893,14 +4081,14 @@
<author>MBA</author>
<desc>Specifies the properties of the HelpAgent.</desc>
</info>
- <prop oor:name="Enabled" oor:type="xs:boolean">
+ <prop oor:name="Enabled" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies whether the HelpAgent is enabled.</desc>
<label>enable HelpAgent</label>
</info>
<value>true</value>
</prop>
- <prop oor:name="Timeout" oor:type="xs:int">
+ <prop oor:name="Timeout" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the time-out value in seconds after which the
HelpAgent is closed automatically if ignored by the user.</desc>
@@ -3908,7 +4096,7 @@
</info>
<value>30</value>
</prop>
- <prop oor:name="RetryLimit" oor:type="xs:int">
+ <prop oor:name="RetryLimit" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies how often the user must ignore a given HelpAgent
topic until it is disregarded in the future (any requests for this
@@ -3931,28 +4119,33 @@
<author>PL</author>
<desc>Contains settings for the start center.</desc>
</info>
- <prop oor:name="AddFeatureURL" oor:type="xs:string">
+ <prop
+ oor:name="AddFeatureURL" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Contains a string specifying the URL to be browsed for
additional features (e.g. extensions)</desc>
</info>
<value/>
</prop>
- <prop oor:name="InfoURL" oor:type="xs:string">
+ <prop oor:name="InfoURL" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Contains a string specifying the URL to be browsed for
information about the product</desc>
</info>
<value/>
</prop>
- <prop oor:name="TemplateRepositoryURL" oor:type="xs:string">
+ <prop
+ oor:name="TemplateRepositoryURL" oor:type="xs:string"
+ oor:nillable="false">
<info>
<desc>Contains a string specifying the URL to be browsed for
additional template documents</desc>
</info>
<value/>
</prop>
- <prop oor:name="StartCenterLayoutStyle" oor:type="xs:int">
+ <prop
+ oor:name="StartCenterLayoutStyle" oor:type="xs:int"
+ oor:nillable="false">
<info>
<desc>Contains a number deciding the layout style of the start
center</desc>
@@ -3966,7 +4159,7 @@
<desc>Contains various settings regarding the product registration
feature.</desc>
</info>
- <prop oor:name="TemplateURL" oor:type="xs:string">
+ <prop oor:name="TemplateURL" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Contains a string specifying the URL with placeholders to be
used for online registration.</desc>
@@ -3975,7 +4168,7 @@
<!-- JB: Empty default inserted into empty property node. Remove if
NIL was intended -->
</prop>
- <prop oor:name="URL" oor:type="xs:string">
+ <prop oor:name="URL" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Contains a string specifying the real URL to be used for
online registration.</desc>
@@ -3984,7 +4177,7 @@
<!-- JB: Empty default inserted into empty property node. Remove if
NIL was intended -->
</prop>
- <prop oor:name="ReminderDate" oor:type="xs:string">
+ <prop oor:name="ReminderDate" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Contains a string representation of the date on which the user
receives a reminder (e.g. "13.02.2002").</desc>
@@ -3993,14 +4186,15 @@
<!-- JB: Empty default inserted into empty property node. Remove if
NIL was intended -->
</prop>
- <prop oor:name="RequestDialog" oor:type="xs:int">
+ <prop oor:name="RequestDialog" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Contains the number used internally to determine when the
dialog should be started.</desc>
</info>
<value>1</value>
</prop>
- <prop oor:name="ShowMenuItem" oor:type="xs:boolean">
+ <prop
+ oor:name="ShowMenuItem" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Contains a Boolean that specifies if the "Registration..."
menu item is available.</desc>
@@ -4035,7 +4229,7 @@
<info>
<desc>Contains Applet related settings.</desc>
</info>
- <prop oor:name="Enable" oor:type="xs:boolean">
+ <prop oor:name="Enable" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Java -->
<!-- OldLocation: java.ini -->
<!-- UIHints: Tools Options Security Enable Applets -->
@@ -4053,7 +4247,7 @@
<desc>Specifies the options related to the vectorization of
bitmaps.</desc>
</info>
- <prop oor:name="ColorCount" oor:type="xs:short">
+ <prop oor:name="ColorCount" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Draw_Impress/Vectorize -->
<!-- OldLocation: drawing.cfg -->
<!-- UIHints: Select bitmap =&gt; context menu convert To polygon -->
@@ -4079,7 +4273,7 @@
</constraints>
<value>8</value>
</prop>
- <prop oor:name="PointReduce" oor:type="xs:short">
+ <prop oor:name="PointReduce" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Draw_Impress/Vectorize -->
<!-- OldLocation: drawing.cfg -->
<!-- UIHints: Select bitmap =&gt; context menu convert To polygon -->
@@ -4105,7 +4299,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="FillHole" oor:type="xs:boolean">
+ <prop oor:name="FillHole" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw_Impress/Vectorize -->
<!-- OldLocation: drawing.cfg -->
<!-- UIHints: Select bitmap => context menu convert To polygon -->
@@ -4117,7 +4311,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="TileExtent" oor:type="xs:short">
+ <prop oor:name="TileExtent" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Draw_Impress/Vectorize -->
<!-- OldLocation: drawing.cfg -->
<!-- UIHints: Select bitmap => context menu convert To polygon -->
@@ -4153,7 +4347,7 @@
<desc>Specifies the color options for images.</desc>
<label>Image Color</label>
</info>
- <prop oor:name="Grayscale" oor:type="xs:short">
+ <prop oor:name="Grayscale" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Image/Colors -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools Options - Picture Colors [Section]
@@ -4178,7 +4372,7 @@
</constraints>
<value>256</value>
</prop>
- <prop oor:name="PosterColor" oor:type="xs:short">
+ <prop oor:name="PosterColor" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Image/Colors -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools Options - Picture Colors [Section] Poster
@@ -4203,7 +4397,7 @@
</constraints>
<value>16</value>
</prop>
- <prop oor:name="Brightness" oor:type="xs:int">
+ <prop oor:name="Brightness" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Image/Colors -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools Options - Picture Colors [Section] Brightness
@@ -4228,7 +4422,7 @@
</constraints>
<value>10</value>
</prop>
- <prop oor:name="Contrast" oor:type="xs:int">
+ <prop oor:name="Contrast" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Image/Colors -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools Options - Picture Colors [Section] Brightness
@@ -4253,7 +4447,7 @@
</constraints>
<value>10</value>
</prop>
- <prop oor:name="RotationAngle" oor:type="xs:int">
+ <prop oor:name="RotationAngle" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Image/Colors -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools Options - Picture Colors [Section] Rotation -->
@@ -4277,7 +4471,7 @@
</constraints>
<value>4500</value>
</prop>
- <prop oor:name="LeftRight" oor:type="xs:boolean">
+ <prop oor:name="LeftRight" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Image/Colors -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools Options - Picture Colors [Section] Rotation -->
@@ -4289,7 +4483,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="BlackWhiteThreshold" oor:type="xs:int">
+ <prop
+ oor:name="BlackWhiteThreshold" oor:type="xs:int"
+ oor:nillable="false">
<!-- OldPath: Image/Colors -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools Options - Picture Colors [Section] Black &
@@ -4319,7 +4515,7 @@
<desc>Specifies the RGB color options for images.</desc>
<label>Image RGB Color</label>
</info>
- <prop oor:name="Red" oor:type="xs:int">
+ <prop oor:name="Red" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Image/Colors/RGB -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools Options - Picture Colors - [Section] RGB
@@ -4344,7 +4540,7 @@
</constraints>
<value>10</value>
</prop>
- <prop oor:name="Green" oor:type="xs:int">
+ <prop oor:name="Green" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Image/Colors/RGB -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools Options - Picture Colors - [Section] RGB
@@ -4369,7 +4565,7 @@
</constraints>
<value>10</value>
</prop>
- <prop oor:name="Blue" oor:type="xs:int">
+ <prop oor:name="Blue" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Image/Colors/RGB -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools Options - Picture Colors - [Section] RGB
@@ -4401,7 +4597,7 @@
<desc>Specifies the effects options for images.</desc>
<label>Image Effects</label>
</info>
- <prop oor:name="MosaicX_Tile" oor:type="xs:short">
+ <prop oor:name="MosaicX_Tile" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Image/Effects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools Options - Picture Effects - [Section] Mosaic -->
@@ -4425,7 +4621,7 @@
</constraints>
<value>4</value>
</prop>
- <prop oor:name="MosaicY_Tile" oor:type="xs:short">
+ <prop oor:name="MosaicY_Tile" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Image/Effects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools Options - Picture Effects - [Section] Mosaic -->
@@ -4449,7 +4645,7 @@
</constraints>
<value>4</value>
</prop>
- <prop oor:name="Definition" oor:type="xs:short">
+ <prop oor:name="Definition" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Image/Effects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools Options - Picture Effects - [Section] Mosaic -->
@@ -4483,7 +4679,9 @@
</constraints>
<value>2</value>
</prop>
- <prop oor:name="SolarizationThreshold" oor:type="xs:int">
+ <prop
+ oor:name="SolarizationThreshold" oor:type="xs:int"
+ oor:nillable="false">
<!-- OldPath: Image/Effects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools Options - Picture Effects - [Section]
@@ -4508,7 +4706,7 @@
</constraints>
<value>10</value>
</prop>
- <prop oor:name="Invert" oor:type="xs:boolean">
+ <prop oor:name="Invert" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Image/Effects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools Options - Picture Effects - [Section]
@@ -4521,7 +4719,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="TileX_Tile" oor:type="xs:short">
+ <prop oor:name="TileX_Tile" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Image/Effects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools Options - Picture Effects - [Section] Tile -->
@@ -4545,7 +4743,7 @@
</constraints>
<value>4</value>
</prop>
- <prop oor:name="TileY_Tile" oor:type="xs:short">
+ <prop oor:name="TileY_Tile" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Image/Effects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools Options - Picture Effects - [Section] Tile -->
@@ -4569,7 +4767,7 @@
</constraints>
<value>4</value>
</prop>
- <prop oor:name="Degree" oor:type="xs:short">
+ <prop oor:name="Degree" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Image/Effects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools Options - Picture Effects - [Section]
@@ -4605,7 +4803,7 @@
</constraints>
<value>2</value>
</prop>
- <prop oor:name="Intensity" oor:type="xs:int">
+ <prop oor:name="Intensity" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Image/Effects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools Options - Picture Effects - [Section] Aging -->
@@ -4636,7 +4834,7 @@
<author>NN</author>
<desc>Specifies settings for the date formats used.</desc>
</info>
- <prop oor:name="TwoDigitYear" oor:type="xs:int">
+ <prop oor:name="TwoDigitYear" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: General/Other -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - General - Other - Year (two digits) -->
@@ -4664,35 +4862,44 @@
<info>
<desc>Specifies default settings of Microsoft import filters.</desc>
</info>
- <prop oor:name="MathTypeToMath" oor:type="xs:boolean">
+ <prop
+ oor:name="MathTypeToMath" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<desc>Specifies if convertible MathType OLE objects are converted
into Math objects.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="WinWordToWriter" oor:type="xs:boolean">
+ <prop
+ oor:name="WinWordToWriter" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<desc>Specifies if convertible WinWord OLE objects are converted
into Writer objects.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="ExcelToCalc" oor:type="xs:boolean">
+ <prop
+ oor:name="ExcelToCalc" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies if convertible Excel OLE objects are converted
into Calc objects.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="PowerPointToImpress" oor:type="xs:boolean">
+ <prop
+ oor:name="PowerPointToImpress" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<desc>Specifies if convertible PowerPoint OLE objects are
converted into Impress objects.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="ImportWWFieldsAsEnhancedFields" oor:type="xs:boolean">
+ <prop
+ oor:name="ImportWWFieldsAsEnhancedFields" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<desc>Flag to control use of enhanced fields.</desc>
</info>
@@ -4703,35 +4910,44 @@
<info>
<desc>Specifies default settings of Microsoft export filters.</desc>
</info>
- <prop oor:name="MathToMathType" oor:type="xs:boolean">
+ <prop
+ oor:name="MathToMathType" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<desc>Specifies if embedded Math objects are converted into
MathType objects.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="WriterToWinWord" oor:type="xs:boolean">
+ <prop
+ oor:name="WriterToWinWord" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<desc>Specifies if embedded Writer objects are converted into
WinWord objects.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="CalcToExcel" oor:type="xs:boolean">
+ <prop
+ oor:name="CalcToExcel" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies if embedded Calc objects are converted into Excel
objects.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="ImpressToPowerPoint" oor:type="xs:boolean">
+ <prop
+ oor:name="ImpressToPowerPoint" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<desc>Specifies if embedded Impress objects are converted into
PowerPoint objects.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="EnablePowerPointPreview" oor:type="xs:boolean">
+ <prop
+ oor:name="EnablePowerPointPreview" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>SJ</author>
<desc>Specifies if previews are created when saving PowerPoint
@@ -4739,7 +4955,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="EnableExcelPreview" oor:type="xs:boolean">
+ <prop
+ oor:name="EnableExcelPreview" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>SJ</author>
<desc>Specifies if previews are created when saving Excel
@@ -4747,7 +4965,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="EnableWordPreview" oor:type="xs:boolean">
+ <prop
+ oor:name="EnableWordPreview" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>SJ</author>
<desc>Specifies if previews are created when saving Word
@@ -4772,7 +4992,7 @@
<desc>Specifies default settings of the PCD - Photo CD Base import
dialog.</desc>
</info>
- <prop oor:name="Resolution" oor:type="xs:int">
+ <prop oor:name="Resolution" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: PCD-IMPORT-RESOLUTION -->
<!-- OldLocation: fltopt.ini -->
<info>
@@ -4804,7 +5024,8 @@
<info>
<desc>Specifies default settings of graphic export dialogs.</desc>
</info>
- <prop oor:name="PixelExportUnit" oor:type="xs:int">
+ <prop
+ oor:name="PixelExportUnit" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the unit default that is used in the the graphic
export dialog if exporting pixel graphics.</desc>
@@ -4849,7 +5070,9 @@
</constraints>
<value>-1</value>
</prop>
- <prop oor:name="PixelExportResolutionUnit" oor:type="xs:int">
+ <prop
+ oor:name="PixelExportResolutionUnit" oor:type="xs:int"
+ oor:nillable="false">
<info>
<desc>Specifies the unit default for the resolution that is used
in the the graphic export dialog if exporting pixel
@@ -4874,7 +5097,9 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="PixelExportResolution" oor:type="xs:int">
+ <prop
+ oor:name="PixelExportResolution" oor:type="xs:int"
+ oor:nillable="false">
<info>
<desc>Specifies the logical width of a graphic.
[UNIT=1/100 mm].</desc>
@@ -4889,7 +5114,9 @@
</constraints>
<value>96</value>
</prop>
- <prop oor:name="MaxFilesizeForRealtimePreview" oor:type="xs:int">
+ <prop
+ oor:name="MaxFilesizeForRealtimePreview" oor:type="xs:int"
+ oor:nillable="false">
<info>
<desc>Specifies the maximum raw graphic size in bytes up to which
the realtime preview is enabled, for fast computers this value may
@@ -4897,7 +5124,9 @@
</info>
<value>4000000</value>
</prop>
- <prop oor:name="VectorExportUnit" oor:type="xs:int">
+ <prop
+ oor:name="VectorExportUnit" oor:type="xs:int"
+ oor:nillable="false">
<info>
<desc>Specifies the unit default that is used in the the graphic
export dialog if exporting vector graphics.</desc>
@@ -4942,7 +5171,7 @@
<desc>Specifies default settings of the Windows Bitmap export
dialog.</desc>
</info>
- <prop oor:name="Color" oor:type="xs:int">
+ <prop oor:name="Color" oor:type="xs:int" oor:nillable="false">
<!-- OldLocation: fltopt.ini -->
<!-- UIHints: File Export Filetype BMP-MS Windows - [dialog]
BMP Options -->
@@ -4995,7 +5224,9 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="RLE_Coding" oor:type="xs:boolean">
+ <prop
+ oor:name="RLE_Coding" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: BMP-RLE_CODING -->
<!-- OldLocation: fltopt.ini -->
<!-- UIHints: File Export Filetype BMP-MS Windows - [dialog]
@@ -5016,7 +5247,7 @@
<desc>Specifies default settings of the EPS - Encapsulated
Postscript export dialog.</desc>
</info>
- <prop oor:name="Preview" oor:type="xs:int">
+ <prop oor:name="Preview" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies if a preview graphic should be exported together
with the Encapsulated PostScript file. Due to the fact that most
@@ -5051,7 +5282,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="Version" oor:type="xs:int">
+ <prop oor:name="Version" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the PostScript version that has to be used for
the EPS export. Because not every PostScript printer is capable
@@ -5074,7 +5305,7 @@
</constraints>
<value>2</value>
</prop>
- <prop oor:name="ColorFormat" oor:type="xs:int">
+ <prop oor:name="ColorFormat" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies if color or grayscale format is used for the EPS
export. This option is not available for version 1 PostScript
@@ -5095,7 +5326,9 @@
</constraints>
<value>2</value>
</prop>
- <prop oor:name="CompressionMode" oor:type="xs:int">
+ <prop
+ oor:name="CompressionMode" oor:type="xs:int"
+ oor:nillable="false">
<info>
<desc>Specifies if bitmaps are exported by using the LZW (Lempel
- Ziv - Welch) compression algorithm. Compression is only
@@ -5116,7 +5349,7 @@
</constraints>
<value>2</value>
</prop>
- <prop oor:name="TextMode" oor:type="xs:int">
+ <prop oor:name="TextMode" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies if glyph outlines are exported. They produce the
highest quality and it is the only possible way to create EPS
@@ -5145,7 +5378,7 @@
<desc>Specifies default settings of the GIF - Graphics Interchange
export dialog.</desc>
</info>
- <prop oor:name="Interlaced" oor:type="xs:int">
+ <prop oor:name="Interlaced" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: GIF-EXPORT-INTERLACED -->
<!-- OldLocation: fltopt.ini -->
<!-- UIHints: File Export Filetype GIF-Graphics Interchange -->
@@ -5169,7 +5402,7 @@
</constraints>
<value>1</value>
</prop>
- <prop oor:name="Translucent" oor:type="xs:int">
+ <prop oor:name="Translucent" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: GIF-EXPORT-TRANSLUCENT -->
<!-- OldLocation: fltopt.ini -->
<!-- UIHints: File Export Filetype GIF-Graphics Interchange -->
@@ -5197,7 +5430,7 @@
<desc>Specifies default settings of the JPEG - Joint Photographic
Experts Group export dialog.</desc>
</info>
- <prop oor:name="Quality" oor:type="xs:int">
+ <prop oor:name="Quality" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: JPG-EXPORT-QUALITY -->
<!-- OldLocation: fltopt.ini -->
<!-- UIHints: File Export Filetype JPG-JPEG -->
@@ -5223,7 +5456,7 @@
</constraints>
<value>75</value>
</prop>
- <prop oor:name="ColorMode" oor:type="xs:int">
+ <prop oor:name="ColorMode" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: JPG_EXPORT_COLORMODE -->
<!-- OldLocation: fltopt.ini -->
<!-- UIHints: File Export Filetype JPG-JPEG -->
@@ -5251,7 +5484,7 @@
<desc>Specifies default settings of the PBM - Portable Bitmap
export dialog.</desc>
</info>
- <prop oor:name="FileFormat" oor:type="xs:int">
+ <prop oor:name="FileFormat" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: PBM-EXPORT-FORMAT -->
<!-- OldLocation: fltopt.ini -->
<!-- UIHints: File Export Filetype PBM-Portable Bitmap -->
@@ -5279,7 +5512,7 @@
<desc>Specifies default settings of the PGM - Portable Graymap
export dialog.</desc>
</info>
- <prop oor:name="FileFormat" oor:type="xs:int">
+ <prop oor:name="FileFormat" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: PGM-EXPORT-FORMAT -->
<!-- OldLocation: fltopt.ini -->
<!-- UIHints: File Export Filetype PGM-Portable Graymap -->
@@ -5307,7 +5540,7 @@
<desc>Specifies default settings of the PPM - Portable Pixelmap
export dialog.</desc>
</info>
- <prop oor:name="FileFormat" oor:type="xs:int">
+ <prop oor:name="FileFormat" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: PPM-EXPORT-FORMAT -->
<!-- OldLocation: fltopt.ini -->
<!-- UIHints: File Export Filetype PPM-Portable Pixelmap -->
@@ -5335,7 +5568,7 @@
<desc>Specifies default settings of the PNG - Portable Network
Graphic export dialog.</desc>
</info>
- <prop oor:name="Compression" oor:type="xs:int">
+ <prop oor:name="Compression" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: PNG-EXPORT-COMPRESSION -->
<!-- OldLocation: fltopt.ini -->
<!-- UIHints: File Export Filetype PNG-Portable Network
@@ -5363,7 +5596,7 @@
</constraints>
<value>6</value>
</prop>
- <prop oor:name="Interlaced" oor:type="xs:int">
+ <prop oor:name="Interlaced" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: PNG-EXPORT-INTERLACED -->
<!-- OldLocation: fltopt.ini -->
<!-- UIHints: File Export Filetype PNG-Portable Network
@@ -5394,7 +5627,8 @@
<author>KA</author>
<desc>Specifies default settings of SVG export dialog.</desc>
</info>
- <prop oor:name="TinyMode" oor:type="xs:boolean">
+ <prop
+ oor:name="TinyMode" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>KA</author>
<desc>Specifies if SVG Tiny profile should be used for
@@ -5402,7 +5636,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="EmbedFonts" oor:type="xs:boolean">
+ <prop
+ oor:name="EmbedFonts" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>KA</author>
<desc>Specifies if fonts should be embedded into SVG
@@ -5410,7 +5646,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="UseNativeTextDecoration" oor:type="xs:boolean">
+ <prop
+ oor:name="UseNativeTextDecoration" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>KA</author>
<desc>Specifies if text decoration like underlining and
@@ -5431,7 +5669,9 @@
<info>
<desc>Contains settings for HTML import.</desc>
</info>
- <prop oor:name="NumbersEnglishUS" oor:type="xs:boolean">
+ <prop
+ oor:name="NumbersEnglishUS" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- UIHints: Tools Options Load/Save - HTML Compability [Section]
Import -->
<info>
@@ -5442,7 +5682,8 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="UnknownTag" oor:type="xs:boolean">
+ <prop
+ oor:name="UnknownTag" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Browser/HTML/Import -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - Browser HTML [Section] Import -->
@@ -5454,7 +5695,8 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="FontSetting" oor:type="xs:boolean">
+ <prop
+ oor:name="FontSetting" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Browser/HTML/Import -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - Browser HTML [Section] Import -->
@@ -5470,7 +5712,7 @@
<info>
<desc>Specifies font size for HTML.</desc>
</info>
- <prop oor:name="Size_1" oor:type="xs:int">
+ <prop oor:name="Size_1" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Browser/HTML/Font_Sizes -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - Browser HTML [Section] Font
@@ -5482,7 +5724,7 @@
</info>
<value>7</value>
</prop>
- <prop oor:name="Size_2" oor:type="xs:int">
+ <prop oor:name="Size_2" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Browser/HTML/Font_Sizes -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - Browser HTML [Section] Font
@@ -5494,7 +5736,7 @@
</info>
<value>10</value>
</prop>
- <prop oor:name="Size_3" oor:type="xs:int">
+ <prop oor:name="Size_3" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Browser/HTML/Font_Sizes -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - Browser HTML [Section] Font
@@ -5506,7 +5748,7 @@
</info>
<value>12</value>
</prop>
- <prop oor:name="Size_4" oor:type="xs:int">
+ <prop oor:name="Size_4" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Browser/HTML/Font_Sizes -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - Browser HTML [Section] Font
@@ -5518,7 +5760,7 @@
</info>
<value>14</value>
</prop>
- <prop oor:name="Size_5" oor:type="xs:int">
+ <prop oor:name="Size_5" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Browser/HTML/Font_Sizes -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - Browser HTML [Section] Font
@@ -5530,7 +5772,7 @@
</info>
<value>18</value>
</prop>
- <prop oor:name="Size_6" oor:type="xs:int">
+ <prop oor:name="Size_6" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Browser/HTML/Font_Sizes -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - Browser HTML [Section] Font
@@ -5542,7 +5784,7 @@
</info>
<value>24</value>
</prop>
- <prop oor:name="Size_7" oor:type="xs:int">
+ <prop oor:name="Size_7" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Browser/HTML/Font_Sizes -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - Browser HTML [Section] Font
@@ -5560,7 +5802,7 @@
<info>
<desc>Contains settings for HTML export.</desc>
</info>
- <prop oor:name="Browser" oor:type="xs:int">
+ <prop oor:name="Browser" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Browser/HTML/Export -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - Browser HTML [Section] Export -->
@@ -5599,7 +5841,7 @@
</constraints>
<value>4</value>
</prop>
- <prop oor:name="Basic" oor:type="xs:boolean">
+ <prop oor:name="Basic" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Browser/HTML/Export -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - Browser HTML [Section] Export -->
@@ -5611,7 +5853,8 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="PrintLayout" oor:type="xs:boolean">
+ <prop
+ oor:name="PrintLayout" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Browser/HTML/Export -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - Browser HTML [Section] Export -->
@@ -5623,7 +5866,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="LocalGraphic" oor:type="xs:boolean">
+ <prop
+ oor:name="LocalGraphic" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: Browser/HTML/Export -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - Browser HTML [Section] Export -->
@@ -5635,7 +5880,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Warning" oor:type="xs:boolean">
+ <prop oor:name="Warning" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Browser/HTML/Export -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - Browser HTML [Section] Export -->
@@ -5668,7 +5913,7 @@
<info>
<desc>Specifies default settings of PDF export dialog.</desc>
</info>
- <prop oor:name="CompressMode" oor:type="xs:int">
+ <prop oor:name="CompressMode" oor:type="xs:int" oor:nillable="false">
<info>
<deprecated>Use following properties instead:
UseLosslessCompression, Quality, UseResolutionReduction,
@@ -5678,7 +5923,9 @@
</info>
<value>1</value>
</prop>
- <prop oor:name="UseLosslessCompression" oor:type="xs:boolean">
+ <prop
+ oor:name="UseLosslessCompression" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>SJ</author>
<desc>Specifies if graphics are exported to PDF using a lossless
@@ -5687,7 +5934,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Quality" oor:type="xs:int">
+ <prop oor:name="Quality" oor:type="xs:int" oor:nillable="false">
<info>
<author>SJ</author>
<desc>Specifies quality of the JPG export. A higher value results
@@ -5711,7 +5958,9 @@
</constraints>
<value>90</value>
</prop>
- <prop oor:name="ReduceImageResolution" oor:type="xs:boolean">
+ <prop
+ oor:name="ReduceImageResolution" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>SJ</author>
<desc>Specifies if the resolution of each image is reduced to the
@@ -5719,7 +5968,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="MaxImageResolution" oor:type="xs:int">
+ <prop
+ oor:name="MaxImageResolution" oor:type="xs:int"
+ oor:nillable="false">
<info>
<desc>If the property ReduceImageResolution is set to true all
images will be reduced to the given value in DPI.</desc>
@@ -5753,7 +6004,9 @@
</constraints>
<value>300</value>
</prop>
- <prop oor:name="UseTaggedPDF" oor:type="xs:boolean">
+ <prop
+ oor:name="UseTaggedPDF" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>SJ</author>
<desc>Determines if PDF are created by using special tags also
@@ -5761,21 +6014,26 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ExportNotes" oor:type="xs:boolean">
+ <prop
+ oor:name="ExportNotes" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>SJ</author>
<desc>Specifies if notes are exported to PDF.</desc>
</info>
<value>false</value>
</prop>
- <prop oor:name="ExportBookmarks" oor:type="xs:boolean">
+ <prop
+ oor:name="ExportBookmarks" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>PL</author>
<desc>Specifies if bookmarks are exported to PDF.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="OpenBookmarkLevels" oor:type="xs:int">
+ <prop
+ oor:name="OpenBookmarkLevels" oor:type="xs:int"
+ oor:nillable="false">
<info>
<author>PL</author>
<desc>Specifies how many bookmark levels should be opened in the
@@ -5783,7 +6041,9 @@
</info>
<value>-1</value>
</prop>
- <prop oor:name="ExportNotesPages" oor:type="xs:boolean">
+ <prop
+ oor:name="ExportNotesPages" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>SJ</author>
<desc>Specifies if notes pages are exported to PDF. (Notes pages
@@ -5791,7 +6051,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="UseTransitionEffects" oor:type="xs:boolean">
+ <prop
+ oor:name="UseTransitionEffects" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>SJ</author>
<desc>Specifies slide transitions are exported to PDF. This option
@@ -5799,7 +6061,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ExportFormFields" oor:type="xs:boolean">
+ <prop
+ oor:name="ExportFormFields" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>pl</author>
<desc>Specifies whether form fields are exported as widgets or
@@ -5807,7 +6071,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="EmbedStandardFonts" oor:type="xs:boolean">
+ <prop
+ oor:name="EmbedStandardFonts" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>pl</author>
<desc>Specifies whether to embed the 14 standard PDF fonts or
@@ -5815,7 +6081,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="FormsType" oor:type="xs:int">
+ <prop oor:name="FormsType" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the submitted format of a PDF form.</desc>
</info>
@@ -5843,7 +6109,9 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="AllowDuplicateFieldNames" oor:type="xs:boolean">
+ <prop
+ oor:name="AllowDuplicateFieldNames" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>pl</author>
<desc>Specifies whether multiple form fields exported are allowed
@@ -5851,7 +6119,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="IsSkipEmptyPages" oor:type="xs:boolean">
+ <prop
+ oor:name="IsSkipEmptyPages" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>FME</author>
<desc>Specifies that automatically inserted empty pages are
@@ -5860,7 +6130,8 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsAddStream" oor:type="xs:boolean">
+ <prop
+ oor:name="IsAddStream" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>PL</author>
<desc>Specifies that a stream is inserted to the PDF file which
@@ -5868,7 +6139,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="HideViewerMenubar" oor:type="xs:boolean">
+ <prop
+ oor:name="HideViewerMenubar" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>beppec56</author>
<desc>Specifies whether to hide the PDF viewer menubar when the
@@ -5876,7 +6149,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="HideViewerToolbar" oor:type="xs:boolean">
+ <prop
+ oor:name="HideViewerToolbar" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>beppec56</author>
<desc>Specifies whether to hide the PDF viewer toolbar when the
@@ -5884,7 +6159,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="HideViewerWindowControls" oor:type="xs:boolean">
+ <prop
+ oor:name="HideViewerWindowControls" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>beppec56</author>
<desc>Specifies whether to hide the PDF viewer controls when the
@@ -5892,7 +6169,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ResizeWindowToInitialPage" oor:type="xs:boolean">
+ <prop
+ oor:name="ResizeWindowToInitialPage" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>beppec56</author>
<desc>Specifies that the PDF viewer window is opened full screen
@@ -5900,7 +6179,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="CenterWindow" oor:type="xs:boolean">
+ <prop
+ oor:name="CenterWindow" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>beppec56</author>
<desc>Specifies that the PDF viewer window is centered to the
@@ -5908,7 +6189,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="OpenInFullScreenMode" oor:type="xs:boolean">
+ <prop
+ oor:name="OpenInFullScreenMode" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>beppec56</author>
<desc>Specifies that the PDF viewer window is opened full screen,
@@ -5916,7 +6199,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="DisplayPDFDocumentTitle" oor:type="xs:boolean">
+ <prop
+ oor:name="DisplayPDFDocumentTitle" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>beppec56</author>
<desc>Specifies that the title of the document, if present in the
@@ -5925,7 +6210,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="InitialView" oor:type="xs:int">
+ <prop oor:name="InitialView" oor:type="xs:int" oor:nillable="false">
<info>
<author>beppec56</author>
<desc>Specifies how the PDF document should be displayed when
@@ -5951,7 +6236,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="Magnification" oor:type="xs:int">
+ <prop oor:name="Magnification" oor:type="xs:int" oor:nillable="false">
<info>
<author>beppec56</author>
<desc>Specifies the action to be performed when the PDF document
@@ -5990,7 +6275,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="Zoom" oor:type="xs:int">
+ <prop oor:name="Zoom" oor:type="xs:int" oor:nillable="false">
<info>
<author>pl</author>
<desc>specifies the zoom level a PDF document is opened with. Only
@@ -5998,7 +6283,7 @@
</info>
<value>100</value>
</prop>
- <prop oor:name="InitialPage" oor:type="xs:int">
+ <prop oor:name="InitialPage" oor:type="xs:int" oor:nillable="false">
<info>
<author>pl</author>
<desc>Specifies the page on which a PDF document should be opened
@@ -6006,7 +6291,7 @@
</info>
<value>1</value>
</prop>
- <prop oor:name="PageLayout" oor:type="xs:int">
+ <prop oor:name="PageLayout" oor:type="xs:int" oor:nillable="false">
<info>
<author>beppec56</author>
<desc>Specifies the page layout to be used when the document is
@@ -6039,7 +6324,9 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="FirstPageOnLeft" oor:type="xs:boolean">
+ <prop
+ oor:name="FirstPageOnLeft" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>beppec56</author>
<desc>Used with the value 3 of the PageLayout property above, true
@@ -6049,7 +6336,7 @@
<value>false</value>
</prop>
<!-- PDF Encryption -->
- <prop oor:name="Printing" oor:type="xs:int">
+ <prop oor:name="Printing" oor:type="xs:int" oor:nillable="false">
<info>
<author>beppec56</author>
<desc>Specifies what printing is allowed.</desc>
@@ -6075,7 +6362,7 @@
</constraints>
<value>2</value>
</prop>
- <prop oor:name="Changes" oor:type="xs:int">
+ <prop oor:name="Changes" oor:type="xs:int" oor:nillable="false">
<info>
<author>beppec56</author>
<desc>Specifies the change allowed to the document.</desc>
@@ -6112,7 +6399,9 @@
</constraints>
<value>4</value>
</prop>
- <prop oor:name="EnableCopyingOfContent" oor:type="xs:boolean">
+ <prop
+ oor:name="EnableCopyingOfContent" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>beppec56</author>
<desc>Specifies that the pages and the document content can be
@@ -6122,7 +6411,7 @@
</prop>
<prop
oor:name="EnableTextAccessForAccessibilityTools"
- oor:type="xs:boolean">
+ oor:type="xs:boolean" oor:nillable="false">
<info>
<author>beppec56</author>
<desc>Specifies that the document content can be extracted to be
@@ -6132,7 +6421,9 @@
</prop>
<!-- END PDF Encryption -->
<!-- PDF Version selection -->
- <prop oor:name="SelectPdfVersion" oor:type="xs:int">
+ <prop
+ oor:name="SelectPdfVersion" oor:type="xs:int"
+ oor:nillable="false">
<info>
<author>beppec56</author>
<desc>Specifies the version of PDF to emit.</desc>
@@ -6153,7 +6444,9 @@
</prop>
<!-- END PDF Version selection -->
<!-- PDF Relative Link -->
- <prop oor:name="ExportLinksRelativeFsys" oor:type="xs:boolean">
+ <prop
+ oor:name="ExportLinksRelativeFsys" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>beppec56</author>
<desc>Specifies that the file system related hyperlinks (file://
@@ -6162,7 +6455,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="PDFViewSelection" oor:type="xs:int">
+ <prop
+ oor:name="PDFViewSelection" oor:type="xs:int"
+ oor:nillable="false">
<info>
<author>beppec56</author>
<desc>Specifies the way the exported PDF will be viewed
@@ -6197,7 +6492,9 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="ConvertOOoTargetToPDFTarget" oor:type="xs:boolean">
+ <prop
+ oor:name="ConvertOOoTargetToPDFTarget" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>beppec56</author>
<desc>Specifies that the target documents with .od[tpgs]
@@ -6207,7 +6504,8 @@
<value>false</value>
</prop>
<prop
- oor:name="ExportBookmarksToPDFDestination" oor:type="xs:boolean">
+ oor:name="ExportBookmarksToPDFDestination" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>beppec56</author>
<desc>Specifies that the bookmarks contained in the source
@@ -6232,7 +6530,8 @@
be open at the same time. NIL will be interpreted as infinite!</desc>
</info>
</prop>
- <prop oor:name="PluginsEnabled" oor:type="xs:boolean">
+ <prop
+ oor:name="PluginsEnabled" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: ? -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools Options Browser Other Plug-Ins Enable -->
@@ -6243,7 +6542,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="UseSystemFileDialog" oor:type="xs:boolean">
+ <prop
+ oor:name="UseSystemFileDialog" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>FS</author>
<desc>Determines if the system's file and folder pickers should be
@@ -6253,7 +6554,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="UseDocumentSystemFileLocking" oor:type="xs:boolean">
+ <prop
+ oor:name="UseDocumentSystemFileLocking" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>MAV</author>
<desc>Allows to specify whether the OOo document file locking
@@ -6261,7 +6564,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="UseDocumentOOoLockFile" oor:type="xs:boolean">
+ <prop
+ oor:name="UseDocumentOOoLockFile" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>MAV</author>
<desc>Allows to specify whether the OOo document file locking
@@ -6269,14 +6574,16 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="UseLocking" oor:type="xs:boolean">
+ <prop oor:name="UseLocking" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Allows to specify whether locking should be used at all.
Use this setting only for debugging purpose.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="ShowLinkWarningDialog" oor:type="xs:boolean">
+ <prop
+ oor:name="ShowLinkWarningDialog" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>THB</author>
<desc>Determines if a warning dialog should be
@@ -6285,7 +6592,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="UseSystemPrintDialog" oor:type="xs:boolean">
+ <prop
+ oor:name="UseSystemPrintDialog" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>PL</author>
<desc>Determines if the system's print dialog should be used. If
@@ -6295,7 +6604,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="TryODMADialog" oor:type="xs:boolean">
+ <prop oor:name="TryODMADialog" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>tml</author>
<desc>Determines whether to show the document creation and selection
@@ -6308,14 +6617,17 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="DisableUICustomization" oor:type="xs:boolean">
+ <prop
+ oor:name="DisableUICustomization" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>RSiddhartha</author>
<desc>Disables the customization of the UI elements.</desc>
</info>
<value>false</value>
</prop>
- <prop oor:name="AlwaysAllowSave" oor:type="xs:boolean">
+ <prop
+ oor:name="AlwaysAllowSave" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>kohei</author>
<desc>Determines if the user can save the document even when it's not
@@ -6323,7 +6635,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ExperimentalMode" oor:type="xs:boolean">
+ <prop
+ oor:name="ExperimentalMode" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>mmeeks</author>
<desc>Determins if various experimental, and potentially unstable
@@ -6331,7 +6645,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="SymbolSet" oor:type="xs:short">
+ <prop oor:name="SymbolSet" oor:type="xs:short" oor:nillable="false">
<!-- UIHints: Tools Options General View -->
<info>
<author>MBA</author>
@@ -6352,7 +6666,7 @@
</constraints>
<value>2</value>
</prop>
- <prop oor:name="SymbolStyle" oor:type="xs:string">
+ <prop oor:name="SymbolStyle" oor:type="xs:string" oor:nillable="false">
<!-- UIHints: Tools Options General View -->
<info>
<author>kendy</author>
@@ -6403,7 +6717,7 @@
</constraints>
<value>auto</value>
</prop>
- <prop oor:name="ToolboxStyle" oor:type="xs:short">
+ <prop oor:name="ToolboxStyle" oor:type="xs:short" oor:nillable="false">
<!-- UIHints: Tools Options General View -->
<info>
<author>MBA</author>
@@ -6423,7 +6737,9 @@
</constraints>
<value>1</value>
</prop>
- <prop oor:name="FormControlPilotsEnabled" oor:type="xs:boolean">
+ <prop
+ oor:name="FormControlPilotsEnabled" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>FS</author>
<desc>Enables/Disables the usage of AutoPilots for form
@@ -6431,7 +6747,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="FirstRun" oor:type="xs:boolean">
+ <prop oor:name="FirstRun" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>MBA</author>
<desc>Specifies if the office has never before been started.</desc>
@@ -6521,7 +6837,9 @@
<desc>specifies settings for the property browser used for forms and
form controls.</desc>
</info>
- <prop oor:name="ExperimentalProperties" oor:type="xs:boolean">
+ <prop
+ oor:name="ExperimentalProperties" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>FS</author>
<desc>Enables or disables the property browser's access to
@@ -6529,7 +6847,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="DirectHelp" oor:type="xs:boolean">
+ <prop oor:name="DirectHelp" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>FS</author>
<desc>Enables or disables a help section at the bottom of the
@@ -6545,7 +6863,9 @@
<author>OS</author>
<desc>Contains layout specific settings for Asian languages.</desc>
</info>
- <prop oor:name="IsKerningWesternTextOnly" oor:type="xs:boolean">
+ <prop
+ oor:name="IsKerningWesternTextOnly" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Tools Options Asian typography Asian layout Kerning
@@ -6558,7 +6878,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="CompressCharacterDistance" oor:type="xs:short">
+ <prop
+ oor:name="CompressCharacterDistance" oor:type="xs:short"
+ oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Tools Options Asian typography Asian layout Character
@@ -6587,7 +6909,9 @@
<author>OS / PB</author>
<desc>Contains all options for search.</desc>
</info>
- <prop oor:name="IsWholeWordsOnly" oor:type="xs:boolean">
+ <prop
+ oor:name="IsWholeWordsOnly" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Edit/Find & Replace -->
@@ -6597,7 +6921,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="IsBackwards" oor:type="xs:boolean">
+ <prop oor:name="IsBackwards" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Edit/Find & Replace -->
@@ -6607,7 +6931,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="IsUseRegularExpression" oor:type="xs:boolean">
+ <prop
+ oor:name="IsUseRegularExpression" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Edit/Find & Replace -->
@@ -6617,7 +6943,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="IsSearchForStyles" oor:type="xs:boolean">
+ <prop
+ oor:name="IsSearchForStyles" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Edit/Find & Replace -->
@@ -6627,7 +6955,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="IsSimilaritySearch" oor:type="xs:boolean">
+ <prop
+ oor:name="IsSimilaritySearch" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Edit/Find & Replace -->
@@ -6637,7 +6967,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="IsMatchCase" oor:type="xs:boolean">
+ <prop oor:name="IsMatchCase" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Edit/Find & Replace -->
@@ -6647,7 +6977,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="IsUseAsianOptions" oor:type="xs:boolean">
+ <prop
+ oor:name="IsUseAsianOptions" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Edit/Find & Replace -->
@@ -6687,7 +7019,7 @@
command.</desc>
</info>
</prop>
- <prop oor:name="IsNotes" oor:type="xs:boolean">
+ <prop oor:name="IsNotes" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: Edit Search/Replace -->
<info>
<author>mod</author>
@@ -6700,7 +7032,9 @@
<author>OS</author>
<desc>Contains search options for the Japanese language.</desc>
</info>
- <prop oor:name="IsMatchFullHalfWidthForms" oor:type="xs:boolean">
+ <prop
+ oor:name="IsMatchFullHalfWidthForms" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
@@ -6711,7 +7045,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatchHiraganaKatakana" oor:type="xs:boolean">
+ <prop
+ oor:name="IsMatchHiraganaKatakana" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
@@ -6722,7 +7058,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatchContractions" oor:type="xs:boolean">
+ <prop
+ oor:name="IsMatchContractions" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
@@ -6733,7 +7071,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatchMinusDashCho-on" oor:type="xs:boolean">
+ <prop
+ oor:name="IsMatchMinusDashCho-on" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
@@ -6744,7 +7084,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatchRepeatCharMarks" oor:type="xs:boolean">
+ <prop
+ oor:name="IsMatchRepeatCharMarks" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
@@ -6755,7 +7097,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatchVariantFormKanji" oor:type="xs:boolean">
+ <prop
+ oor:name="IsMatchVariantFormKanji" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
@@ -6766,7 +7110,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatchOldKanaForms" oor:type="xs:boolean">
+ <prop
+ oor:name="IsMatchOldKanaForms" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
@@ -6777,7 +7123,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatch_DiZi_DuZu" oor:type="xs:boolean">
+ <prop
+ oor:name="IsMatch_DiZi_DuZu" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
@@ -6788,7 +7136,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatch_BaVa_HaFa" oor:type="xs:boolean">
+ <prop
+ oor:name="IsMatch_BaVa_HaFa" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
@@ -6799,7 +7149,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatch_TsiThiChi_DhiZi" oor:type="xs:boolean">
+ <prop
+ oor:name="IsMatch_TsiThiChi_DhiZi" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
@@ -6810,7 +7162,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatch_HyuIyu_ByuVyu" oor:type="xs:boolean">
+ <prop
+ oor:name="IsMatch_HyuIyu_ByuVyu" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
@@ -6821,7 +7175,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatch_SeShe_ZeJe" oor:type="xs:boolean">
+ <prop
+ oor:name="IsMatch_SeShe_ZeJe" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
@@ -6832,7 +7188,8 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatch_IaIya" oor:type="xs:boolean">
+ <prop oor:name="IsMatch_IaIya" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
@@ -6843,7 +7200,8 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatch_KiKu" oor:type="xs:boolean">
+ <prop
+ oor:name="IsMatch_KiKu" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
@@ -6854,7 +7212,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsIgnorePunctuation" oor:type="xs:boolean">
+ <prop
+ oor:name="IsIgnorePunctuation" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
@@ -6865,7 +7225,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsIgnoreWhitespace" oor:type="xs:boolean">
+ <prop
+ oor:name="IsIgnoreWhitespace" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
@@ -6877,7 +7239,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsIgnoreProlongedSoundMark" oor:type="xs:boolean">
+ <prop
+ oor:name="IsIgnoreProlongedSoundMark" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
@@ -6888,7 +7252,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsIgnoreMiddleDot" oor:type="xs:boolean">
+ <prop
+ oor:name="IsIgnoreMiddleDot" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Tools/Options/"Asian typography"-"Japanese Find" -->
@@ -6906,7 +7272,9 @@
<author>OS</author>
<desc>Specifies settings for the accessibility options.</desc>
</info>
- <prop oor:name="AutoDetectSystemHC" oor:type="xs:boolean">
+ <prop
+ oor:name="AutoDetectSystemHC" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>FS</author>
<desc>Enables the automatic detection of a high contrast mode set for
@@ -6917,7 +7285,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsForPagePreviews" oor:type="xs:boolean">
+ <prop
+ oor:name="IsForPagePreviews" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>OS</author>
<desc>Enables the use of high contrast colors, instead of displaying
@@ -6926,7 +7296,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsHelpTipsDisappear" oor:type="xs:boolean">
+ <prop
+ oor:name="IsHelpTipsDisappear" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>OS</author>
<desc>Enables or disables the automatic time out of help tips. You can
@@ -6936,7 +7308,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="HelpTipSeconds" oor:type="xs:short">
+ <prop oor:name="HelpTipSeconds" oor:type="xs:short" oor:nillable="false">
<info>
<author>OS</author>
<desc>Enables or disables the automatic time out of help tips. You
@@ -6960,7 +7332,9 @@
</constraints>
<value>4</value>
</prop>
- <prop oor:name="IsAllowAnimatedGraphics" oor:type="xs:boolean">
+ <prop
+ oor:name="IsAllowAnimatedGraphics" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>AF</author>
<desc>Indicates whether to allow the graphical animation in all SO/OO
@@ -6971,7 +7345,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsAllowAnimatedText" oor:type="xs:boolean">
+ <prop
+ oor:name="IsAllowAnimatedText" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>AF</author>
<desc>Indicates whether to allow all textual animation like blinking
@@ -6980,7 +7356,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsAutomaticFontColor" oor:type="xs:boolean">
+ <prop
+ oor:name="IsAutomaticFontColor" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>OS</author>
<desc>Overrides all text color attributes set in a SO/OO document for
@@ -6989,7 +7367,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="IsSystemFont" oor:type="xs:boolean">
+ <prop oor:name="IsSystemFont" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>OS</author>
<desc>Allows the user to change the UI font to the system
@@ -6998,7 +7376,9 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsSelectionInReadonly" oor:type="xs:boolean">
+ <prop
+ oor:name="IsSelectionInReadonly" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>OS</author>
<desc>Indicates whether the cursor is displayed in read-only
@@ -7036,13 +7416,13 @@
settings should be used.</desc>
</info>
</prop>
- <prop oor:name="Program" oor:type="xs:string">
+ <prop oor:name="Program" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the external mail application to be used.</desc>
</info>
<value/>
</prop>
- <prop oor:name="CommandProfile" oor:type="xs:string">
+ <prop oor:name="CommandProfile" oor:type="xs:string" oor:nillable="false">
<info>
<deprecated>Without replacement.</deprecated>
<desc>Specifies the default external mail application.</desc>
@@ -7081,7 +7461,7 @@
<desc>Contains settings for the Asian languages (Chinese, Japanese,
Korean,...) layout.</desc>
</info>
- <prop oor:name="CJKFont" oor:type="xs:boolean">
+ <prop oor:name="CJKFont" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: setup -->
<info>
<desc>Specifies, whether CJK font settings are available (true) or
@@ -7089,7 +7469,8 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="VerticalText" oor:type="xs:boolean">
+ <prop
+ oor:name="VerticalText" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: setup -->
<info>
<desc>Specifies, whether vertical text is available (true) or not
@@ -7097,7 +7478,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="AsianTypography" oor:type="xs:boolean">
+ <prop
+ oor:name="AsianTypography" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- UIHints: setup -->
<info>
<desc>Specifies, whether Asian typography options like compression
@@ -7105,7 +7488,8 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="JapaneseFind" oor:type="xs:boolean">
+ <prop
+ oor:name="JapaneseFind" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: setup -->
<info>
<desc>Specifies, whether Japanese find options are selectable for
@@ -7113,7 +7497,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Ruby" oor:type="xs:boolean">
+ <prop oor:name="Ruby" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: setup -->
<info>
<desc>Specifies whether Rubys are available (true) or not
@@ -7121,7 +7505,8 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ChangeCaseMap" oor:type="xs:boolean">
+ <prop
+ oor:name="ChangeCaseMap" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: setup -->
<info>
<desc>Specifies whether case mapping to half and full width,
@@ -7129,7 +7514,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="DoubleLines" oor:type="xs:boolean">
+ <prop oor:name="DoubleLines" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: setup -->
<info>
<desc>Specifies whether writing in double lines is available (true)
@@ -7137,7 +7522,8 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="EmphasisMarks" oor:type="xs:boolean">
+ <prop
+ oor:name="EmphasisMarks" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: setup -->
<info>
<desc>Specifies whether emphasis marks are available (true) or not
@@ -7145,7 +7531,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="VerticalCallOut" oor:type="xs:boolean">
+ <prop
+ oor:name="VerticalCallOut" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- UIHints: setup -->
<info>
<desc>Specifies whether vertical call out objects are available
@@ -7159,7 +7547,7 @@
<desc>Contains settings for the languages with complex text layout
(Hebrew, Arabic, Thai,...).</desc>
</info>
- <prop oor:name="CTLFont" oor:type="xs:boolean">
+ <prop oor:name="CTLFont" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: setup -->
<info>
<desc>Specifies whether CTL font settings are available (true) or
@@ -7167,7 +7555,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="CTLSequenceChecking" oor:type="xs:boolean">
+ <prop
+ oor:name="CTLSequenceChecking" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- UIHints: setup -->
<info>
<desc>Specifies whether CTL strings are checked for the correct
@@ -7175,7 +7565,9 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="CTLSequenceCheckingRestricted" oor:type="xs:boolean">
+ <prop
+ oor:name="CTLSequenceCheckingRestricted" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- UIHints: setup -->
<info>
<desc>Specifies whether CTL strings are checked restricted for the
@@ -7185,7 +7577,8 @@
<value>false</value>
</prop>
<prop
- oor:name="CTLSequenceCheckingTypeAndReplace" oor:type="xs:boolean">
+ oor:name="CTLSequenceCheckingTypeAndReplace" oor:type="xs:boolean"
+ oor:nillable="false">
<!-- UIHints: setup -->
<info>
<desc>Specifies whether CTL input sequences are corrected while
@@ -7193,7 +7586,8 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="CTLCursorMovement" oor:type="xs:int">
+ <prop
+ oor:name="CTLCursorMovement" oor:type="xs:int" oor:nillable="false">
<!-- UIHints: options-->
<info>
<desc>Specifies the type of text cursor movement (logical (0) or
@@ -7201,7 +7595,7 @@
</info>
<value>0</value>
</prop>
- <prop oor:name="CTLTextNumerals" oor:type="xs:int">
+ <prop oor:name="CTLTextNumerals" oor:type="xs:int" oor:nillable="false">
<!-- UIHints: options-->
<info>
<desc>Specifies the type of numerals (Arabic (0), Hindi (1), system
@@ -7250,7 +7644,9 @@
<author>FME</author>
<desc>Contains Writer specific settings for smart tags.</desc>
</info>
- <prop oor:name="RecognizeSmartTags" oor:type="xs:boolean">
+ <prop
+ oor:name="RecognizeSmartTags" oor:type="xs:boolean"
+ oor:nillable="false">
<info>
<author>FME</author>
<desc>Specifies whether smart tag recognization is enabled.</desc>
diff --git a/officecfg/registry/schema/org/openoffice/Office/Compatibility.xcs b/officecfg/registry/schema/org/openoffice/Office/Compatibility.xcs
index 1e1c800a5095..d99d03303559 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Compatibility.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Compatibility.xcs
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="UTF-8"?>
+<?xml version="1.0" encoding="UTF-8"?>
<!--***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -41,47 +41,47 @@
</enumeration>
</constraints>
</prop>
- <prop oor:name="UsePrinterMetrics" oor:type="xs:boolean">
+ <prop oor:name="UsePrinterMetrics" oor:type="xs:boolean" oor:nillable="false">
<info><desc>Use printer metrics for document formatting</desc></info>
<value>false</value>
</prop>
- <prop oor:name="AddSpacing" oor:type="xs:boolean">
+ <prop oor:name="AddSpacing" oor:type="xs:boolean" oor:nillable="false">
<info><desc>Add spacing between paragraphs and tables</desc></info>
<value>true</value>
</prop>
- <prop oor:name="AddSpacingAtPages" oor:type="xs:boolean">
+ <prop oor:name="AddSpacingAtPages" oor:type="xs:boolean" oor:nillable="false">
<info><desc>Add paragraph and table spacing at tops of pages</desc></info>
<value>true</value>
</prop>
- <prop oor:name="UseOurTabStopFormat" oor:type="xs:boolean">
+ <prop oor:name="UseOurTabStopFormat" oor:type="xs:boolean" oor:nillable="false">
<info><desc>Use OpenOffice.org 1.1 tabstop formatting</desc></info>
<value>false</value>
</prop>
- <prop oor:name="NoExternalLeading" oor:type="xs:boolean">
+ <prop oor:name="NoExternalLeading" oor:type="xs:boolean" oor:nillable="false">
<info><desc>Do not add leading (extra space) between lines of text</desc></info>
<value>false</value>
</prop>
- <prop oor:name="UseLineSpacing" oor:type="xs:boolean">
+ <prop oor:name="UseLineSpacing" oor:type="xs:boolean" oor:nillable="false">
<info><desc>Use OpenOffice.org 1.1 line spacing</desc></info>
<value>false</value>
</prop>
- <prop oor:name="AddTableSpacing" oor:type="xs:boolean">
+ <prop oor:name="AddTableSpacing" oor:type="xs:boolean" oor:nillable="false">
<info><desc>???</desc></info>
<value>true</value>
</prop>
- <prop oor:name="UseObjectPositioning" oor:type="xs:boolean">
+ <prop oor:name="UseObjectPositioning" oor:type="xs:boolean" oor:nillable="false">
<info><desc>Use OpenOffice.org 1.1 object positioning</desc></info>
<value>false</value>
</prop>
- <prop oor:name="UseOurTextWrapping" oor:type="xs:boolean">
+ <prop oor:name="UseOurTextWrapping" oor:type="xs:boolean" oor:nillable="false">
<info><desc>Use OpenOffice.org 1.1 text wrapping</desc></info>
<value>false</value>
</prop>
- <prop oor:name="ConsiderWrappingStyle" oor:type="xs:boolean">
+ <prop oor:name="ConsiderWrappingStyle" oor:type="xs:boolean" oor:nillable="false">
<info><desc>Consider wrapping style when positioning objects</desc></info>
<value>false</value>
</prop>
- <prop oor:name="ExpandWordSpace" oor:type="xs:boolean">
+ <prop oor:name="ExpandWordSpace" oor:type="xs:boolean" oor:nillable="false">
<info><desc>Expand word space on lines with manual line breaks in justified paragraphs</desc></info>
<value>true</value>
</prop>
@@ -98,7 +98,7 @@
<desc>Used by the writer compatibility flag as the last OOo version.</desc>
</info>
<!--The default must be written by the setup.-->
- <prop oor:name="OOo11" oor:type="xs:string">
+ <prop oor:name="OOo11" oor:type="xs:string" oor:nillable="false">
<!-- UIHints: Tools - Options - OOo Writer - Compatibility -->
<!--The value should only be written by the setup.-->
<info>
diff --git a/officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs b/officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs
index 5768729f3ac1..6bfda997ad86 100644
--- a/officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs
@@ -184,7 +184,7 @@
<desc>Specifies the prefix of the URL of the database driver.</desc>
</info>
</prop>
- <prop oor:name="Extension" oor:type="xs:string">
+ <prop oor:name="Extension" oor:type="xs:string" oor:nillable="false">
<info><desc>The file extension, which match to this type. Only set when it is file based driver</desc></info>
<value/>
</prop>
@@ -206,7 +206,7 @@
<info>
<desc>controls availability of features within OpenOffice.org Base.</desc>
</info>
- <prop oor:name="CreateLocalDatabase" oor:type="xs:boolean">
+ <prop oor:name="CreateLocalDatabase" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies that the user is able to create new local database documents in the "Create Database" wizard.</desc>
</info>
@@ -217,7 +217,7 @@
<info>
<desc>Specifies which data-access related features are available in OpenOffice.org Writer.</desc>
</info>
- <prop oor:name="DatabaseFields" oor:type="xs:boolean">
+ <prop oor:name="DatabaseFields" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies that the Database tab page should be available in the fields dialog.</desc>
</info>
@@ -228,7 +228,7 @@
<info>
<desc>Specifies which data-access related features, usually existent in all applications, are available.</desc>
</info>
- <prop oor:name="EditDatabaseFromDataSourceView" oor:type="xs:boolean">
+ <prop oor:name="EditDatabaseFromDataSourceView" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies that the data source view (also known as data source browser) should offer the "Edit database file" context menu entry.</desc>
</info>
@@ -271,7 +271,7 @@
<info>
<desc>Specifies additional information about the database drivers.</desc>
</info>
- <prop oor:name="DriverPrecedence" oor:type="oor:string-list">
+ <prop oor:name="DriverPrecedence" oor:type="oor:string-list" oor:nillable="false">
<info>
<desc>Specifies order of database drivers in which they should be asked if the accept the connection string.</desc>
</info>
@@ -282,7 +282,7 @@
<info>
<desc>Specifies all information which is needed for the global connection pool.</desc>
</info>
- <prop oor:name="EnablePooling" oor:type="xs:boolean">
+ <prop oor:name="EnablePooling" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies if the global connection pool is enabled.</desc>
</info>
@@ -323,14 +323,14 @@
<info>
<desc>Specifies the data source that can be used as an AddressBook.</desc>
</info>
- <prop oor:name="DataSourceName" oor:type="xs:string">
+ <prop oor:name="DataSourceName" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the name of the registered data source.</desc>
</info>
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="Command" oor:type="xs:string">
+ <prop oor:name="Command" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the command to execute on the data source to retrieve the result set. This may be an SQL command or a table name or a query name.</desc>
</info>
@@ -342,7 +342,7 @@
<desc>Determines the exact meaning of Command. Valid values are: 0 - Command is a table name 1 - Command is a query name 2 - Command is an SQL command.</desc>
</info>
</prop>
- <prop oor:name="AutoPilotCompleted" oor:type="xs:boolean">
+ <prop oor:name="AutoPilotCompleted" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies if the auto pilot is completed.</desc>
</info>
@@ -370,21 +370,21 @@
<desc>Specifies the height of the view window</desc>
</info>
</prop>
- <prop oor:name="QueryText" oor:type="xs:string">
+ <prop oor:name="QueryText" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the search text for filtering</desc>
</info>
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="QueryField" oor:type="xs:string">
+ <prop oor:name="QueryField" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the search field for filtering</desc>
</info>
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="ShowColumnAssignmentWarning" oor:type="xs:boolean">
+ <prop oor:name="ShowColumnAssignmentWarning" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Determines whether a non-assigned column results in a warning box.</desc>
</info>
@@ -421,20 +421,20 @@
<info>
<desc>Specifies the mozilla preferences.</desc>
</info>
- <prop oor:name="ProfileName" oor:type="xs:string">
+ <prop oor:name="ProfileName" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the mozilla profile name.</desc>
</info>
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="PabDescription" oor:type="xs:string" oor:localized="true">
+ <prop oor:name="PabDescription" oor:type="xs:string" oor:localized="true" oor:nillable="false">
<info>
<desc>Describes the name of the table which the Mozilla Personal Address Book is mapped to</desc>
</info>
<value/>
</prop>
- <prop oor:name="HisDescription" oor:type="xs:string" oor:localized="true">
+ <prop oor:name="HisDescription" oor:type="xs:string" oor:localized="true" oor:nillable="false">
<info>
<desc>Describes the name of the table which the Mozilla Collected Addresses is mapped to</desc>
</info>
@@ -641,7 +641,7 @@
<info>
<desc>Specifies the evolution preferences.</desc>
</info>
- <prop oor:name="FullPathExportingCommand" oor:type="xs:string">
+ <prop oor:name="FullPathExportingCommand" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the evolution full path exporting command name.</desc>
</info>
@@ -825,7 +825,7 @@
<info>
<desc>Specifies the driver settings for the mozilla database driver.</desc>
</info>
- <prop oor:name="DisableKDEMaximumVersionCheck" oor:type="xs:boolean">
+ <prop oor:name="DisableKDEMaximumVersionCheck" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>At runtime, the driver checks if the installed KDE version is too new to be supported.
In this case, it refuses creating connections. With the setting here, this check can
@@ -857,7 +857,7 @@
<info>
<desc>Specifies the options for searching in forms.</desc>
</info>
- <prop oor:name="SearchType" oor:type="xs:string">
+ <prop oor:name="SearchType" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the search type.</desc>
</info>
@@ -880,7 +880,7 @@
</constraints>
<value>text</value>
</prop>
- <prop oor:name="SearchPosition" oor:type="xs:string">
+ <prop oor:name="SearchPosition" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the search position.</desc>
</info>
@@ -913,73 +913,73 @@
<desc>Contains a list of the previous search strings.</desc>
</info>
</prop>
- <prop oor:name="IsSearchAllFields" oor:type="xs:boolean">
+ <prop oor:name="IsSearchAllFields" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies if all fields should be searched.</desc>
</info>
<value>false</value>
</prop>
- <prop oor:name="IsUseFormatter" oor:type="xs:boolean">
+ <prop oor:name="IsUseFormatter" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies that the formatter should be used.</desc>
</info>
<value>false</value>
</prop>
- <prop oor:name="IsBackwards" oor:type="xs:boolean">
+ <prop oor:name="IsBackwards" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies that the search starts backward.</desc>
</info>
<value>false</value>
</prop>
- <prop oor:name="IsWildcardSearch" oor:type="xs:boolean">
+ <prop oor:name="IsWildcardSearch" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies that the search contains wildcards.</desc>
</info>
<value>false</value>
</prop>
- <prop oor:name="IsUseRegularExpression" oor:type="xs:boolean">
+ <prop oor:name="IsUseRegularExpression" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies that regular expressions should be used.</desc>
</info>
<value>false</value>
</prop>
- <prop oor:name="IsSimilaritySearch" oor:type="xs:boolean">
+ <prop oor:name="IsSimilaritySearch" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies that the similarity search should be used.</desc>
</info>
<value>false</value>
</prop>
- <prop oor:name="IsLevenshteinRelaxed" oor:type="xs:boolean">
+ <prop oor:name="IsLevenshteinRelaxed" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies that the similarity search should be combined.</desc>
</info>
<value>false</value>
</prop>
- <prop oor:name="LevenshteinOther" oor:type="xs:short">
+ <prop oor:name="LevenshteinOther" oor:type="xs:short" oor:nillable="false">
<info>
<desc>Specifies the number of characters that can be exchanged while searching for similarity.</desc>
</info>
<value>2</value>
</prop>
- <prop oor:name="LevenshteinShorter" oor:type="xs:short">
+ <prop oor:name="LevenshteinShorter" oor:type="xs:short" oor:nillable="false">
<info>
<desc>Specifies the number of characters that can be deleted while searching for similarity.</desc>
</info>
<value>2</value>
</prop>
- <prop oor:name="LevenshteinLonger" oor:type="xs:short">
+ <prop oor:name="LevenshteinLonger" oor:type="xs:short" oor:nillable="false">
<info>
<desc>Specifies the number of characters that can be added while searching for similarity.</desc>
</info>
<value>2</value>
</prop>
- <prop oor:name="IsMatchCase" oor:type="xs:boolean">
+ <prop oor:name="IsMatchCase" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies that the searched value should match.</desc>
</info>
<value>false</value>
</prop>
- <prop oor:name="IsUseAsianOptions" oor:type="xs:boolean">
+ <prop oor:name="IsUseAsianOptions" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies that the Asian options for search should be used.</desc>
</info>
@@ -989,109 +989,109 @@
<info>
<desc>Specifies the Japanese options for searching.</desc>
</info>
- <prop oor:name="IsMatchFullHalfWidthForms" oor:type="xs:boolean">
+ <prop oor:name="IsMatchFullHalfWidthForms" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the MatchFullHalfWidthForms search option is enabled.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatchHiraganaKatakana" oor:type="xs:boolean">
+ <prop oor:name="IsMatchHiraganaKatakana" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the MatchHiraganaKatakana search option is enabled.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatchContractions" oor:type="xs:boolean">
+ <prop oor:name="IsMatchContractions" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the MatchContractions search option is enabled.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatchMinusDashCho-on" oor:type="xs:boolean">
+ <prop oor:name="IsMatchMinusDashCho-on" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the MatchMinusDashCho-on search option is enabled.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatchRepeatCharMarks" oor:type="xs:boolean">
+ <prop oor:name="IsMatchRepeatCharMarks" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the MatchRepeatCharMarks search option is enabled.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatchVariantFormKanji" oor:type="xs:boolean">
+ <prop oor:name="IsMatchVariantFormKanji" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the MatchVariantFormKanji search option is enabled.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatchOldKanaForms" oor:type="xs:boolean">
+ <prop oor:name="IsMatchOldKanaForms" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the MatchOldKanaForms search option is enabled.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatch_DiZi_DuZu" oor:type="xs:boolean">
+ <prop oor:name="IsMatch_DiZi_DuZu" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the Match_DiZi_DuZu search option is enabled.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatch_BaVa_HaFa" oor:type="xs:boolean">
+ <prop oor:name="IsMatch_BaVa_HaFa" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the Match_BaVa_HaFa search option is enabled.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatch_TsiThiChi_DhiZi" oor:type="xs:boolean">
+ <prop oor:name="IsMatch_TsiThiChi_DhiZi" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the Match_TsiThiChi_DhiZi search option is enabled.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatch_HyuIyu_ByuVyu" oor:type="xs:boolean">
+ <prop oor:name="IsMatch_HyuIyu_ByuVyu" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the Match_HyuIyu_ByuVyu search option is enabled.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatch_SeShe_ZeJe" oor:type="xs:boolean">
+ <prop oor:name="IsMatch_SeShe_ZeJe" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the Match_SeShe_ZeJe search option is enabled.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatch_IaIya" oor:type="xs:boolean">
+ <prop oor:name="IsMatch_IaIya" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the Match_IaIya search option is enabled.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="IsMatch_KiKu" oor:type="xs:boolean">
+ <prop oor:name="IsMatch_KiKu" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the Match_KiKu search option is enabled.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="IsIgnorePunctuation" oor:type="xs:boolean">
+ <prop oor:name="IsIgnorePunctuation" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the IgnorePunctuation search option is enabled.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="IsIgnoreWhitespace" oor:type="xs:boolean">
+ <prop oor:name="IsIgnoreWhitespace" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the IgnoreWhitespace search option is enabled.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="IsIgnoreProlongedSoundMark" oor:type="xs:boolean">
+ <prop oor:name="IsIgnoreProlongedSoundMark" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the IgnoreProlongedSoundMark search option is enabled.</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="IsIgnoreMiddleDot" oor:type="xs:boolean">
+ <prop oor:name="IsIgnoreMiddleDot" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the IgnoreMiddleDot search option is enabled.</desc>
</info>
diff --git a/officecfg/registry/schema/org/openoffice/Office/Draw.xcs b/officecfg/registry/schema/org/openoffice/Office/Draw.xcs
index 14509143d360..41b8cc5423e7 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Draw.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Draw.xcs
@@ -40,7 +40,7 @@
<info>
<desc>Defines the general properties of the graphical object representation of screen displays.</desc>
</info>
- <prop oor:name="Ruler" oor:type="xs:boolean">
+ <prop oor:name="Ruler" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Layout/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing - Layout - [Section] Display -->
@@ -51,7 +51,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Helpline" oor:type="xs:boolean">
+ <prop oor:name="Helpline" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Layout/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing - Layout - [Section] Display -->
@@ -62,7 +62,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Guide" oor:type="xs:boolean">
+ <prop oor:name="Guide" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Layout/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing - Layout - [Section] Display -->
@@ -73,7 +73,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Bezier" oor:type="xs:boolean">
+ <prop oor:name="Bezier" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Layout/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing - Layout - [Section] Display -->
@@ -84,7 +84,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Contour" oor:type="xs:boolean">
+ <prop oor:name="Contour" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Layout/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing - Layout - [Section] Display -->
@@ -110,14 +110,14 @@
<desc>Specifies the distance between adjacent tab stops.</desc>
<label>Tab stops</label>
</info>
- <prop oor:name="Metric" oor:type="xs:int">
+ <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>[UNIT=1/100 mm]</desc>
<label/>
</info>
<value>1250</value>
</prop>
- <prop oor:name="NonMetric" oor:type="xs:int">
+ <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>[UNIT=1/100 mm]</desc>
<label/>
@@ -134,7 +134,7 @@
<desc>Contains the specification of distances and sizes.</desc>
<label>Measurement unit</label>
</info>
- <prop oor:name="Metric" oor:type="xs:int">
+ <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the unit used for specification of distances and sizes in a metric environment.</desc>
</info>
@@ -167,7 +167,7 @@
</constraints>
<value>2</value>
</prop>
- <prop oor:name="NonMetric" oor:type="xs:int">
+ <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the unit used for specification of distances and sizes in a non metric environment.</desc>
<label>Measurement unit</label>
@@ -212,7 +212,7 @@
<info>
<desc>Contains the specification of how to display the content of Draw documents on screen.</desc>
</info>
- <prop oor:name="PicturePlaceholder" oor:type="xs:boolean">
+ <prop oor:name="PicturePlaceholder" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Contents/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Drawing - Contents - [Section] Alternative display -->
@@ -223,7 +223,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ContourMode" oor:type="xs:boolean">
+ <prop oor:name="ContourMode" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Contents/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Drawing - Contents - [Section] Alternative display -->
@@ -234,7 +234,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="TextPlaceholder" oor:type="xs:boolean">
+ <prop oor:name="TextPlaceholder" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Contents/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Drawing - Contents - [Section] Alternative display -->
@@ -245,7 +245,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="LineContour" oor:type="xs:boolean">
+ <prop oor:name="LineContour" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Contents/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Drawing - Contents - [Section] Alternative display -->
@@ -262,7 +262,7 @@
<info>
<desc>Contains a collection of configuration items for the Draw application that do not fit into another category.</desc>
</info>
- <prop oor:name="BackgroundCache" oor:type="xs:boolean">
+ <prop oor:name="BackgroundCache" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Other -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Other [Section] Other -->
@@ -273,7 +273,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="CopyWhileMoving" oor:type="xs:boolean">
+ <prop oor:name="CopyWhileMoving" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Other -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Other [Section] Other -->
@@ -284,7 +284,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ObjectMoveable" oor:type="xs:boolean">
+ <prop oor:name="ObjectMoveable" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Other -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Other [Section] Other -->
@@ -295,7 +295,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="NoDistort" oor:type="xs:boolean">
+ <prop oor:name="NoDistort" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Other -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Other [Section] Other -->
@@ -306,7 +306,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="DclickTextedit" oor:type="xs:boolean">
+ <prop oor:name="DclickTextedit" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Other -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Option Bar -->
@@ -317,7 +317,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="RotateClick" oor:type="xs:boolean">
+ <prop oor:name="RotateClick" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Other -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Option Bar -->
@@ -328,7 +328,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Preview" oor:type="xs:double">
+ <prop oor:name="Preview" oor:type="xs:double" oor:nillable="false">
<!-- OldPath: Draw/Other -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Menu: view - preview mode -->
@@ -356,7 +356,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="ShowComments" oor:type="xs:boolean">
+ <prop oor:name="ShowComments" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>CL</author>
<desc>Indicates whether to show comments (true) or hide them (false).</desc>
@@ -364,7 +364,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ModifyWithAttributes" oor:type="xs:boolean">
+ <prop oor:name="ModifyWithAttributes" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Other -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Optionbar -->
@@ -379,7 +379,7 @@
<info>
<desc>Defines text editing related configuration items.</desc>
</info>
- <prop oor:name="QuickEditing" oor:type="xs:boolean">
+ <prop oor:name="QuickEditing" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Other/Text_Objects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Other [Section] Text objects -->
@@ -390,7 +390,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Selectable" oor:type="xs:boolean">
+ <prop oor:name="Selectable" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Other/Text_Objects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Other [Section] Text objects -->
@@ -406,7 +406,7 @@
<info>
<desc>Contains a specification of how to morph between objects (e.g. how many steps and whether to regard the object&apos;s attributes).</desc>
</info>
- <prop oor:name="Steps" oor:type="xs:short">
+ <prop oor:name="Steps" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Draw/Cross_fading -->
<!-- OldLocation: drawing.cfg -->
<!-- UIHints: Select two objects =&gt; Edit Cross-fade -->
@@ -429,7 +429,7 @@
</constraints>
<value>16</value>
</prop>
- <prop oor:name="Orientation" oor:type="xs:boolean">
+ <prop oor:name="Orientation" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Cross_fading -->
<!-- OldLocation: drawing.cfg -->
<!-- UIHints: Select two objects =&gt; Edit Cross-fade -->
@@ -440,7 +440,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Attributes" oor:type="xs:boolean">
+ <prop oor:name="Attributes" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Cross_fading -->
<!-- OldLocation: drawing.cfg -->
<!-- UIHints: Select two objects =&gt; Edit Cross-fade -->
@@ -461,14 +461,14 @@
<desc>Defines the default size of newly created objects using CTRL-Return or CTRL-Click at a object creating Button</desc>
<label>Default Object Size</label>
</info>
- <prop oor:name="Width" oor:type="xs:int">
+ <prop oor:name="Width" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the default width of new objects. [UNIT=1/100 mm]</desc>
<label/>
</info>
<value>8000</value>
</prop>
- <prop oor:name="Height" oor:type="xs:int">
+ <prop oor:name="Height" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the default height of new objects. [UNIT=1/100 mm]</desc>
<label/>
@@ -481,7 +481,7 @@
<desc>Contains the group of options that control the compatibility to other applications.</desc>
<label>Compatibility options.</label>
</info>
- <prop oor:name="PrinterIndependentLayout" oor:type="xs:short">
+ <prop oor:name="PrinterIndependentLayout" oor:type="xs:short" oor:nillable="false">
<!-- UIHints: Tools - Options - Draw - Other - [Section] Compatibility -->
<info>
<author>AF</author>
@@ -500,7 +500,7 @@
<info>
<desc>Contains the specification of how to force object positions and sizes to predefined locations in relation to other objects.</desc>
</info>
- <prop oor:name="Grid" oor:type="xs:boolean">
+ <prop oor:name="Grid" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Snap/Objects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Snap to Grid - [Section] Snap to -->
@@ -511,7 +511,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="SnapLine" oor:type="xs:boolean">
+ <prop oor:name="SnapLine" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Snap/Objects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Snap to Grid - [Section] Snap to -->
@@ -522,7 +522,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="PageMargin" oor:type="xs:boolean">
+ <prop oor:name="PageMargin" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Snap/Objects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Snap to Grid - [Section] Snap to -->
@@ -533,7 +533,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ObjectFrame" oor:type="xs:boolean">
+ <prop oor:name="ObjectFrame" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Snap/Objects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Snap to Grid - [Section] Snap to -->
@@ -544,7 +544,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ObjectPoint" oor:type="xs:boolean">
+ <prop oor:name="ObjectPoint" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Snap/Objects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Snap to Grid - [Section] Snap to -->
@@ -555,7 +555,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Range" oor:type="xs:int">
+ <prop oor:name="Range" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Draw/Snap/Objects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Snap to Grid - [Section] Snap to -->
@@ -583,7 +583,7 @@
<info>
<desc>Specifies constraints regarding the creation and modification of graphical objects.</desc>
</info>
- <prop oor:name="CreatingMoving" oor:type="xs:boolean">
+ <prop oor:name="CreatingMoving" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Snap/Position -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Snap to Grid - [Section] Snap position -->
@@ -594,7 +594,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ExtendEdges" oor:type="xs:boolean">
+ <prop oor:name="ExtendEdges" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Snap/Position -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Snap to Grid - [Section] Snap position -->
@@ -605,7 +605,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Rotating" oor:type="xs:boolean">
+ <prop oor:name="Rotating" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Snap/Position -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Snap to Grid - [Section] Snap position -->
@@ -616,7 +616,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="RotatingValue" oor:type="xs:int">
+ <prop oor:name="RotatingValue" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Draw/Snap/Position -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Snap to Grid - [Section] Snap position -->
@@ -639,7 +639,7 @@
</constraints>
<value>1500</value>
</prop>
- <prop oor:name="PointReduction" oor:type="xs:int">
+ <prop oor:name="PointReduction" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Draw/Snap/Position -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Snap to Grid - [Section] Snap position -->
@@ -668,7 +668,7 @@
<info>
<desc>Contains configuration items related to zooming.</desc>
</info>
- <prop oor:name="ScaleX" oor:type="xs:int">
+ <prop oor:name="ScaleX" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Draw/Zoom -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Zoom - [Section] Scale -->
@@ -679,7 +679,7 @@
</info>
<value>1</value>
</prop>
- <prop oor:name="ScaleY" oor:type="xs:int">
+ <prop oor:name="ScaleY" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Draw/Zoom -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Zoom - [Section] Scale -->
@@ -699,7 +699,7 @@
<info>
<desc>Switches regarding use and display of the (snap) grid.</desc>
</info>
- <prop oor:name="SnapToGrid" oor:type="xs:boolean">
+ <prop oor:name="SnapToGrid" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Grid/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Grid - [Section] Options -->
@@ -710,7 +710,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="VisibleGrid" oor:type="xs:boolean">
+ <prop oor:name="VisibleGrid" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Grid/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Grid - [Section] Options -->
@@ -721,7 +721,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Synchronize" oor:type="xs:boolean">
+ <prop oor:name="Synchronize" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Grid/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Grid - [Section] Options -->
@@ -747,14 +747,14 @@
<desc>Defines the horizontal distance between adjacent grid points.</desc>
<label>X Axis Resolution</label>
</info>
- <prop oor:name="Metric" oor:type="xs:int">
+ <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>[UNIT=1/100 mm]</desc>
<label/>
</info>
<value>1000</value>
</prop>
- <prop oor:name="NonMetric" oor:type="xs:int">
+ <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>[UNIT=1/100 mm]</desc>
<label/>
@@ -772,14 +772,14 @@
<desc>Defines the vertical distance between adjacent grid points.</desc>
<label>Y Axis Resolution</label>
</info>
- <prop oor:name="Metric" oor:type="xs:int">
+ <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>[UNIT=1/100 mm]</desc>
<label/>
</info>
<value>1000</value>
</prop>
- <prop oor:name="NonMetric" oor:type="xs:int">
+ <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>[UNIT=1/100 mm]</desc>
<label/>
@@ -792,7 +792,7 @@
<info>
<desc>Specifies the subdivision of the grid.</desc>
</info>
- <prop oor:name="XAxis" oor:type="xs:double">
+ <prop oor:name="XAxis" oor:type="xs:double" oor:nillable="false">
<!-- OldPath: Draw/Grid/Subdivision -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Grid - [Section] Grid -->
@@ -804,7 +804,7 @@
</info>
<value>9</value>
</prop>
- <prop oor:name="YAxis" oor:type="xs:double">
+ <prop oor:name="YAxis" oor:type="xs:double" oor:nillable="false">
<!-- OldPath: Draw/Grid/Subdivision -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Grid - [Section] Grid -->
@@ -821,7 +821,7 @@
<info>
<desc>Specifies the snap grid.</desc>
</info>
- <prop oor:name="Size" oor:type="xs:boolean">
+ <prop oor:name="Size" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Grid/Snap_Grid -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Grid - [Section] Snap grid -->
@@ -842,14 +842,14 @@
<desc>Defines the horizontal distance between adjacent points of the snap grid.</desc>
<label>X axis</label>
</info>
- <prop oor:name="Metric" oor:type="xs:int">
+ <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>[UNIT=1/100 mm]</desc>
<label/>
</info>
<value>1000</value>
</prop>
- <prop oor:name="NonMetric" oor:type="xs:int">
+ <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>[UNIT=1/100 mm]</desc>
<label/>
@@ -867,14 +867,14 @@
<desc>Defines the vertical distance between adjacent points of the snap grid.</desc>
<label>Y axis</label>
</info>
- <prop oor:name="Metric" oor:type="xs:int">
+ <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>[UNIT=1/100 mm]</desc>
<label/>
</info>
<value>1000</value>
</prop>
- <prop oor:name="NonMetric" oor:type="xs:int">
+ <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>[UNIT=1/100 mm]</desc>
<label/>
@@ -892,7 +892,7 @@
<info>
<desc>Defines options regarding the printing of document content.</desc>
</info>
- <prop oor:name="Drawing" oor:type="xs:boolean">
+ <prop oor:name="Drawing" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Print/Contents -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Print - [Section] Contents -->
@@ -908,7 +908,7 @@
<info>
<desc>Specifies how and what pages will be printed.</desc>
</info>
- <prop oor:name="PageSize" oor:type="xs:boolean">
+ <prop oor:name="PageSize" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Print/Page -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Drawing Print - [Section] Page options -->
@@ -919,7 +919,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="PageTile" oor:type="xs:boolean">
+ <prop oor:name="PageTile" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Print/Page -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Drawing Print - [Section] Page options -->
@@ -930,7 +930,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Booklet" oor:type="xs:boolean">
+ <prop oor:name="Booklet" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Print/Page -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Drawing Print - [Section] Page options -->
@@ -941,7 +941,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="BookletFront" oor:type="xs:boolean">
+ <prop oor:name="BookletFront" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Print/Page -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Drawing Print - [Section] Page options -->
@@ -952,7 +952,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="BookletBack" oor:type="xs:boolean">
+ <prop oor:name="BookletBack" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Print/Page -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Drawing Print - [Section] Page options -->
@@ -968,7 +968,7 @@
<info>
<desc>Contains specifications of general printing related issues.</desc>
</info>
- <prop oor:name="PageName" oor:type="xs:boolean">
+ <prop oor:name="PageName" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Print - [Section] Print -->
@@ -979,7 +979,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Date" oor:type="xs:boolean">
+ <prop oor:name="Date" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Print - [Section] Print -->
@@ -990,7 +990,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Time" oor:type="xs:boolean">
+ <prop oor:name="Time" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Print - [Section] Print -->
@@ -1001,7 +1001,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="HiddenPage" oor:type="xs:boolean">
+ <prop oor:name="HiddenPage" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Print - [Section] Print -->
@@ -1012,7 +1012,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Quality" oor:type="xs:int">
+ <prop oor:name="Quality" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Draw/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Print - [Section] Quality -->
@@ -1039,7 +1039,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="FromPrinterSetup" oor:type="xs:boolean">
+ <prop oor:name="FromPrinterSetup" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Draw/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Drawing Print [Check box] From printer setup -->
diff --git a/officecfg/registry/schema/org/openoffice/Office/ExtensionManager.xcs b/officecfg/registry/schema/org/openoffice/Office/ExtensionManager.xcs
index 819290c3c283..76e9632619bf 100644
--- a/officecfg/registry/schema/org/openoffice/Office/ExtensionManager.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/ExtensionManager.xcs
@@ -48,7 +48,7 @@
<info>
<desc>Information about repositories for extensions.</desc>
</info>
- <prop oor:name="WebsiteLink" oor:type="xs:string">
+ <prop oor:name="WebsiteLink" oor:type="xs:string" oor:nillable="false">
<info>
<desc>This links is used from the Extension Manager. A user can click on the &amp;Download extensions...&amp;
control so that a browser is opened which displayed the website to which directs this URL.
diff --git a/officecfg/registry/schema/org/openoffice/Office/Impress.xcs b/officecfg/registry/schema/org/openoffice/Office/Impress.xcs
index 1b549d66b29b..094cee5a3530 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Impress.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Impress.xcs
@@ -100,7 +100,7 @@
<info>
<desc>Contains general properties of the graphical object representation of screen displays.</desc>
</info>
- <prop oor:name="Ruler" oor:type="xs:boolean">
+ <prop oor:name="Ruler" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Layout/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation - Layout - [Section] Display -->
@@ -110,7 +110,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Helpline" oor:type="xs:boolean">
+ <prop oor:name="Helpline" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Layout/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation - Layout - [Section] Display -->
@@ -120,7 +120,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Guide" oor:type="xs:boolean">
+ <prop oor:name="Guide" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Layout/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation - Layout - [Section] Display -->
@@ -130,7 +130,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Bezier" oor:type="xs:boolean">
+ <prop oor:name="Bezier" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Layout/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation - Layout - [Section] Display -->
@@ -140,7 +140,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Contour" oor:type="xs:boolean">
+ <prop oor:name="Contour" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Layout/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation - Layout - [Section] Display -->
@@ -165,14 +165,14 @@
<desc>Specifies the distance between adjacent tab stops with regard to whether the metric or the non-metric system is currently selected.</desc>
<label>Tab stops</label>
</info>
- <prop oor:name="Metric" oor:type="xs:int">
+ <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the distance between adjacent tab stops in 1/100 mm when the metric system is selected.</desc>
<label/>
</info>
<value>1250</value>
</prop>
- <prop oor:name="NonMetric" oor:type="xs:int">
+ <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the distance between adjacent tab stops in 1/100 mm when the non-metric system is selected.</desc>
<label/>
@@ -188,7 +188,7 @@
<desc>Specifies the measurement unit to be used with respect to whether the metric or the non-metric system is selected.</desc>
<label>Measurement unit</label>
</info>
- <prop oor:name="Metric" oor:type="xs:int">
+ <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the measurement unit to be used when the metric system is selected.</desc>
<label>Measurement unit</label>
@@ -222,7 +222,7 @@
</constraints>
<value>2</value>
</prop>
- <prop oor:name="NonMetric" oor:type="xs:int">
+ <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the measurement unit to be used when the non-metric system is selected.</desc>
<label>Measurement unit</label>
@@ -267,7 +267,7 @@
<info>
<desc>Contains configuration items related to the display of Impress documents.</desc>
</info>
- <prop oor:name="PicturePlaceholder" oor:type="xs:boolean">
+ <prop oor:name="PicturePlaceholder" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Contents/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation - Contents - [Section] Alternative display -->
@@ -277,7 +277,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ContourMode" oor:type="xs:boolean">
+ <prop oor:name="ContourMode" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Contents/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation - Contents - [Section] Alternative display -->
@@ -287,7 +287,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="TextPlaceholder" oor:type="xs:boolean">
+ <prop oor:name="TextPlaceholder" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Contents/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation - Contents - [Section] Alternative display -->
@@ -297,7 +297,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="LineContour" oor:type="xs:boolean">
+ <prop oor:name="LineContour" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Contents/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation - Contents - [Section] Alternative display -->
@@ -313,7 +313,7 @@
<info>
<desc>Contains a collection of configuration items for the Impress application that do not fit into another category.</desc>
</info>
- <prop oor:name="BackgroundCache" oor:type="xs:boolean">
+ <prop oor:name="BackgroundCache" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Other -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Other [Section] Other -->
@@ -323,7 +323,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="CopyWhileMoving" oor:type="xs:boolean">
+ <prop oor:name="CopyWhileMoving" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Other -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Other [Section] Other -->
@@ -333,7 +333,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ObjectMoveable" oor:type="xs:boolean">
+ <prop oor:name="ObjectMoveable" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Other -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Other [Section] Other -->
@@ -343,7 +343,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="NoDistort" oor:type="xs:boolean">
+ <prop oor:name="NoDistort" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Other -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Other [Section] Other -->
@@ -353,7 +353,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="DclickTextedit" oor:type="xs:boolean">
+ <prop oor:name="DclickTextedit" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Other -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Option Bar -->
@@ -363,7 +363,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="RotateClick" oor:type="xs:boolean">
+ <prop oor:name="RotateClick" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Other -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Option Bar -->
@@ -373,7 +373,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Preview" oor:type="xs:double">
+ <prop oor:name="Preview" oor:type="xs:double" oor:nillable="false">
<!-- OldPath: Impress/Other -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Menu: view - preview mode -->
@@ -400,7 +400,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="ShowComments" oor:type="xs:boolean">
+ <prop oor:name="ShowComments" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>CL</author>
<desc>Indicates whether to show comments (true) or hide them (false).</desc>
@@ -408,7 +408,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ModifyWithAttributes" oor:type="xs:boolean">
+ <prop oor:name="ModifyWithAttributes" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Other -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Optionbar -->
@@ -419,7 +419,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ShowUndoDeleteWarning" oor:type="xs:boolean">
+ <prop oor:name="ShowUndoDeleteWarning" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: UNDO stack delete warnng dialog -->
@@ -430,7 +430,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="SlideshowRespectZOrder" oor:type="xs:boolean">
+ <prop oor:name="SlideshowRespectZOrder" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: Slideshow Z order for animations -->
@@ -441,7 +441,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="TransitionFiles" oor:type="oor:string-list">
+ <prop oor:name="TransitionFiles" oor:type="oor:string-list" oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: List of files containing transition effects -->
@@ -457,7 +457,7 @@
</info>
<value oor:separator=";">vnd.sun.star.expand:$BRAND_BASE_DIR/share/config/soffice.cfg/simpress/transitions.xml;vnd.sun.star.expand:$BRAND_BASE_DIR/share/config/soffice.cfg/simpress/transitions-ogl.xml</value>
</prop>
- <prop oor:name="EffectFiles" oor:type="oor:string-list">
+ <prop oor:name="EffectFiles" oor:type="oor:string-list" oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: List of files containing object effects -->
@@ -473,7 +473,7 @@
</info>
<value oor:separator=";">vnd.sun.star.expand:$BRAND_BASE_DIR/share/config/soffice.cfg/simpress/effects.xml</value>
</prop>
- <prop oor:name="PreviewNewEffects" oor:type="xs:boolean">
+ <prop oor:name="PreviewNewEffects" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: automatic preview checkbox in create new effect dialog -->
@@ -484,7 +484,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="PreviewChangedEffects" oor:type="xs:boolean">
+ <prop oor:name="PreviewChangedEffects" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: automatic preview in custom animation panel -->
@@ -495,7 +495,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="PreviewTransitions" oor:type="xs:boolean">
+ <prop oor:name="PreviewTransitions" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: automatic preview in slide transtion panel -->
@@ -506,7 +506,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Display" oor:type="xs:int">
+ <prop oor:name="Display" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: slide show settings display listbox -->
@@ -517,7 +517,7 @@
</info>
<value>0</value>
</prop>
- <prop oor:name="PenColor" oor:type="xs:int">
+ <prop oor:name="PenColor" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: slide show context menu -->
@@ -528,7 +528,7 @@
</info>
<value>16711680</value>
</prop>
- <prop oor:name="PenWidth" oor:type="xs:double">
+ <prop oor:name="PenWidth" oor:type="xs:double" oor:nillable="false">
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- UIHints: slide show context menu -->
@@ -544,7 +544,7 @@
<info>
<desc>Contains text editing related configuration items.</desc>
</info>
- <prop oor:name="QuickEditing" oor:type="xs:boolean">
+ <prop oor:name="QuickEditing" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Other/Text_Objects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Other [Section] Text objects -->
@@ -554,7 +554,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Selectable" oor:type="xs:boolean">
+ <prop oor:name="Selectable" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Other/Text_Objects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Other [Section] Text objects -->
@@ -570,7 +570,7 @@
<desc>Specifies configuration items governing the behavior when creating a new document or a new page.</desc>
<label>Start with AutoPilots</label>
</info>
- <prop oor:name="AutoPilot" oor:type="xs:boolean">
+ <prop oor:name="AutoPilot" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Other/New_Doc -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Other [Section] New document -->
@@ -580,7 +580,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Layout" oor:type="xs:boolean">
+ <prop oor:name="Layout" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Other/New_Doc -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Other [Section] New document -->
@@ -595,7 +595,7 @@
<info>
<desc>Specifies configuration items governing behavior when starting a presentation.</desc>
</info>
- <prop oor:name="CurrentPage" oor:type="xs:boolean">
+ <prop oor:name="CurrentPage" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Other/Start -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Other [Section] Start presentation -->
@@ -611,7 +611,7 @@
<desc>Contains the group of options that control the compatibility to other applications.</desc>
<label>Compatibility options.</label>
</info>
- <prop oor:name="AddBetween" oor:type="xs:boolean">
+ <prop oor:name="AddBetween" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Other/Compatibility -->
<!-- UIHints: Tools - Options - Presentation - Other - [Section] Compatibility -->
<info>
@@ -621,7 +621,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="PrinterIndependentLayout" oor:type="xs:short">
+ <prop oor:name="PrinterIndependentLayout" oor:type="xs:short" oor:nillable="false">
<!-- UIHints: Tools - Options - Presentation - Other - [Section] Compatibility -->
<info>
<author>AF</author>
@@ -640,14 +640,14 @@
<desc>Defines the default size of newly created objects using CTRL-Return or CTRL-Click at a object creating Button.</desc>
<label>Default Object Size</label>
</info>
- <prop oor:name="Width" oor:type="xs:int">
+ <prop oor:name="Width" oor:type="xs:int" oor:nillable="false">
<info>
<desc>[UNIT=1/100 mm]</desc>
<label/>
</info>
<value>8000</value>
</prop>
- <prop oor:name="Height" oor:type="xs:int">
+ <prop oor:name="Height" oor:type="xs:int" oor:nillable="false">
<info>
<desc>[UNIT=1/100 mm]</desc>
<label/>
@@ -664,7 +664,7 @@
<info>
<desc>Specifies how to force object positions and sizes to predefined locations in relation to other objects.</desc>
</info>
- <prop oor:name="Grid" oor:type="xs:boolean">
+ <prop oor:name="Grid" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Snap/Objects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Snap to Grid - [Section] Snap to -->
@@ -674,7 +674,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="SnapLine" oor:type="xs:boolean">
+ <prop oor:name="SnapLine" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Snap/Objects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Snap to Grid - [Section] Snap to -->
@@ -684,7 +684,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="PageMargin" oor:type="xs:boolean">
+ <prop oor:name="PageMargin" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Snap/Objects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Snap to Grid - [Section] Snap to -->
@@ -694,7 +694,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ObjectFrame" oor:type="xs:boolean">
+ <prop oor:name="ObjectFrame" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Snap/Objects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Snap to Grid - [Section] Snap to -->
@@ -704,7 +704,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ObjectPoint" oor:type="xs:boolean">
+ <prop oor:name="ObjectPoint" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Snap/Objects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Snap to Grid - [Section] Snap to -->
@@ -714,7 +714,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Range" oor:type="xs:int">
+ <prop oor:name="Range" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Impress/Snap/Objects -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Snap to Grid - [Section] Snap to -->
@@ -741,7 +741,7 @@
<info>
<desc>Specifies constraints regarding the creation and modification of graphical objects.</desc>
</info>
- <prop oor:name="CreatingMoving" oor:type="xs:boolean">
+ <prop oor:name="CreatingMoving" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Snap/Position -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Snap to Grid - [Section] Snap position -->
@@ -751,7 +751,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ExtendEdges" oor:type="xs:boolean">
+ <prop oor:name="ExtendEdges" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Snap/Position -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Snap to Grid - [Section] Snap position -->
@@ -761,7 +761,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Rotating" oor:type="xs:boolean">
+ <prop oor:name="Rotating" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Snap/Position -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Snap to Grid - [Section] Snap position -->
@@ -771,7 +771,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="RotatingValue" oor:type="xs:int">
+ <prop oor:name="RotatingValue" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Impress/Snap/Position -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Snap to Grid - [Section] Snap position -->
@@ -793,7 +793,7 @@
</constraints>
<value>1500</value>
</prop>
- <prop oor:name="PointReduction" oor:type="xs:int">
+ <prop oor:name="PointReduction" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Impress/Snap/Position -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Snap to Grid - [Section] Snap position -->
@@ -825,7 +825,7 @@
<info>
<desc>Specifies switches regarding use and display of the snap grid.</desc>
</info>
- <prop oor:name="SnapToGrid" oor:type="xs:boolean">
+ <prop oor:name="SnapToGrid" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Grid/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Grid - [Section] Options -->
@@ -835,7 +835,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="VisibleGrid" oor:type="xs:boolean">
+ <prop oor:name="VisibleGrid" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Grid/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Grid - [Section] Options -->
@@ -845,7 +845,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Synchronize" oor:type="xs:boolean">
+ <prop oor:name="Synchronize" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Grid/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Grid - [Section] Options -->
@@ -869,14 +869,14 @@
<desc>Defines the horizontal distance between adjacent grid points.</desc>
<label>X Axis Resolution</label>
</info>
- <prop oor:name="Metric" oor:type="xs:int">
+ <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Defines the horizontal distance between adjacent grid points in 1/100 mm, used when the metric system is active.</desc>
<label/>
</info>
<value>2000</value>
</prop>
- <prop oor:name="NonMetric" oor:type="xs:int">
+ <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Defines the horizontal distance between adjacent grid points in 1/100 mm, used when the non-metric system is active.</desc>
<label/>
@@ -893,14 +893,14 @@
<desc>Defines the vertical distance between adjacent grid points.</desc>
<label>Y Axis Resolution</label>
</info>
- <prop oor:name="Metric" oor:type="xs:int">
+ <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Defines the vertical distance between adjacent grid points in 1/100 mm, used when the metric system is active.</desc>
<label/>
</info>
<value>2000</value>
</prop>
- <prop oor:name="NonMetric" oor:type="xs:int">
+ <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Defines the vertical distance between adjacent grid points in 1/100 mm, used when the non-metric system is active.</desc>
<label/>
@@ -913,7 +913,7 @@
<info>
<desc>Specifies the subdivision of the grid.</desc>
</info>
- <prop oor:name="XAxis" oor:type="xs:double">
+ <prop oor:name="XAxis" oor:type="xs:double" oor:nillable="false">
<!-- OldPath: Impress/Grid/Subdivision -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Grid - [Section] Grid -->
@@ -924,7 +924,7 @@
</info>
<value>9</value>
</prop>
- <prop oor:name="YAxis" oor:type="xs:double">
+ <prop oor:name="YAxis" oor:type="xs:double" oor:nillable="false">
<!-- OldPath: Impress/Grid/Subdivision -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Grid - [Section] Grid -->
@@ -940,7 +940,7 @@
<info>
<desc>Contains the specifications of the snap grid.</desc>
</info>
- <prop oor:name="Size" oor:type="xs:boolean">
+ <prop oor:name="Size" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Grid/Snap_Grid -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Grid - [Section] Snap grid -->
@@ -959,14 +959,14 @@
<desc>Defines the horizontal distance between adjacent points of the snap grid.</desc>
<label>X axis</label>
</info>
- <prop oor:name="Metric" oor:type="xs:int">
+ <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Defines the horizontal distance between adjacent points of the snap grid in 1/100 mm, used when the metric system is selected.</desc>
<label/>
</info>
<value>100</value>
</prop>
- <prop oor:name="NonMetric" oor:type="xs:int">
+ <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Defines the horizontal distance between adjacent points of the snap grid in 1/100 mm, used when the non-metric system is selected.</desc>
<label/>
@@ -983,14 +983,14 @@
<desc>Defines the vertical distance between adjacent points of the snap grid.</desc>
<label>Y axis</label>
</info>
- <prop oor:name="Metric" oor:type="xs:int">
+ <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Defines the vertical distance between adjacent points of the snap grid in 1/100 mm, used when the metric system is selected.</desc>
<label/>
</info>
<value>100</value>
</prop>
- <prop oor:name="NonMetric" oor:type="xs:int">
+ <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Defines the vertical distance between adjacent points of the snap grid in 1/100 mm, used when the non-metric system is selected.</desc>
<label/>
@@ -1008,7 +1008,7 @@
<info>
<desc>Defines options regarding the printing of document content.</desc>
</info>
- <prop oor:name="Presentation" oor:type="xs:boolean">
+ <prop oor:name="Presentation" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Print/Contents -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Print - [Section] Contents -->
@@ -1018,7 +1018,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Note" oor:type="xs:boolean">
+ <prop oor:name="Note" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Print/Contents -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Print - [Section] Contents -->
@@ -1028,7 +1028,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Handout" oor:type="xs:boolean">
+ <prop oor:name="Handout" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Print/Contents -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Print - [Section] Contents -->
@@ -1038,7 +1038,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Outline" oor:type="xs:boolean">
+ <prop oor:name="Outline" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Print/Contents -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Print - [Section] Contents -->
@@ -1053,7 +1053,7 @@
<info>
<desc>Specifies how and which pages will be printed.</desc>
</info>
- <prop oor:name="PageSize" oor:type="xs:boolean">
+ <prop oor:name="PageSize" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Print/Page -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Print - [Section] Page options -->
@@ -1063,7 +1063,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="PageTile" oor:type="xs:boolean">
+ <prop oor:name="PageTile" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Print/Page -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Print - [Section] Page options -->
@@ -1073,7 +1073,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Booklet" oor:type="xs:boolean">
+ <prop oor:name="Booklet" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Print/Page -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Print - [Section] Page options -->
@@ -1083,7 +1083,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="BookletFront" oor:type="xs:boolean">
+ <prop oor:name="BookletFront" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Print/Page -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Print - [Section] Page options -->
@@ -1093,7 +1093,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="BookletBack" oor:type="xs:boolean">
+ <prop oor:name="BookletBack" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Print/Page -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Print - [Section] Page options -->
@@ -1108,7 +1108,7 @@
<info>
<desc>Specifies general printing related issues.</desc>
</info>
- <prop oor:name="PageName" oor:type="xs:boolean">
+ <prop oor:name="PageName" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Print - [Section] Print -->
@@ -1118,7 +1118,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Date" oor:type="xs:boolean">
+ <prop oor:name="Date" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Print - [Section] Print -->
@@ -1128,7 +1128,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Time" oor:type="xs:boolean">
+ <prop oor:name="Time" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Print - [Section] Print -->
@@ -1138,7 +1138,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="HiddenPage" oor:type="xs:boolean">
+ <prop oor:name="HiddenPage" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Print - [Section] Print -->
@@ -1148,7 +1148,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Quality" oor:type="xs:int">
+ <prop oor:name="Quality" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Impress/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Print - [Section] Quality -->
@@ -1174,7 +1174,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="FromPrinterSetup" oor:type="xs:boolean">
+ <prop oor:name="FromPrinterSetup" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Impress/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Presentation Print [Check box] From printer setup -->
@@ -1184,7 +1184,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="HandoutHorizontal" oor:type="xs:boolean">
+ <prop oor:name="HandoutHorizontal" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: File - Print - [Section] Print content - [Radio buttons] Horizontal(TRUE)/Vertical(FALSE) -->
<info>
<desc>Indicates whether the slide thumbnails on the printed handouts are ordered horizontal or vertical</desc>
@@ -1192,7 +1192,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="PagesPerHandout" oor:type="xs:int">
+ <prop oor:name="PagesPerHandout" oor:type="xs:int" oor:nillable="false">
<!-- UIHints: File - Print - [Section] Print content - [ListBox] Slides per page -->
<info>
<desc>Specifies the number of slide thumbnails printed on each handout page.</desc>
@@ -1249,7 +1249,7 @@
<desc>Contains the group of options that control the behavior of the VBA filter.</desc>
<label>VBA Filter</label>
</info>
- <prop oor:name="Load" oor:type="xs:boolean">
+ <prop oor:name="Load" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Filter/MS_Office/Basic/PowerPoint -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - Filter Settings Microsoft Office [Section] Microsoft PowerPoint 97/2000 -->
@@ -1260,7 +1260,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Save" oor:type="xs:boolean">
+ <prop oor:name="Save" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Filter/MS_Office/Basic/PowerPoint -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - Filter Settings Microsoft Office [Section] Microsoft PowerPoint 97/2000 -->
@@ -1412,7 +1412,7 @@
<desc>Values for tuning the preview cache of the slide sorter.</desc>
<label>Preview Cache Options</label>
</info>
- <prop oor:name="CacheSize" oor:type="xs:int">
+ <prop oor:name="CacheSize" oor:type="xs:int" oor:nillable="false">
<info>
<desc>
Maximal size of the cache that stores slide
@@ -1425,7 +1425,7 @@
</info>
<value>4194304</value>
</prop>
- <prop oor:name="CompactionPolicy" oor:type="xs:string">
+ <prop oor:name="CompactionPolicy" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Technique of how to reduce the memory used by the cache.</desc>
<label>Compaction Policy</label>
@@ -1447,7 +1447,7 @@
</constraints>
<value>Compress</value>
</prop>
- <prop oor:name="CompressionPolicy" oor:type="xs:string">
+ <prop oor:name="CompressionPolicy" oor:type="xs:string" oor:nillable="false">
<info>
<desc>
Technique of how to compress preview bitmaps for
@@ -1486,7 +1486,7 @@
</constraints>
<value>ResolutionReduction</value>
</prop>
- <prop oor:name="TimeBetweenHighPriorityRequests" oor:type="xs:int">
+ <prop oor:name="TimeBetweenHighPriorityRequests" oor:type="xs:int" oor:nillable="false">
<info>
<desc>
Time in milli seconds to wait between processing
@@ -1496,7 +1496,7 @@
</info>
<value>10</value>
</prop>
- <prop oor:name="TimeBetweenLowPriorityRequests" oor:type="xs:int">
+ <prop oor:name="TimeBetweenLowPriorityRequests" oor:type="xs:int" oor:nillable="false">
<info>
<desc>
Time in milli seconds to wait between processing
@@ -1506,7 +1506,7 @@
</info>
<value>100</value>
</prop>
- <prop oor:name="TimeBetweenRequestsDuringShow" oor:type="xs:int">
+ <prop oor:name="TimeBetweenRequestsDuringShow" oor:type="xs:int" oor:nillable="false">
<info>
<desc>
Time in milli seconds to wait between processing
diff --git a/officecfg/registry/schema/org/openoffice/Office/Java.xcs b/officecfg/registry/schema/org/openoffice/Office/Java.xcs
index 06666ad4a625..26615a0bc3d1 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Java.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Java.xcs
@@ -34,7 +34,7 @@
<info>
<desc >Provides information used to initialize a Java Virtual Machine. </desc>
</info>
- <prop oor:name="Home" oor:type="xs:string">
+ <prop oor:name="Home" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Java -->
<!-- OldLocation: java.ini -->
<!-- Notice: Default: depends on Java installation path -->
@@ -45,7 +45,7 @@
</info>
<value>NULL</value>
</prop>
- <prop oor:name="Version" oor:type="xs:string">
+ <prop oor:name="Version" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Java -->
<!-- OldLocation: java.ini -->
<!-- Notice: Default: depends on version used -->
@@ -56,7 +56,7 @@
</info>
<value>NULL</value>
</prop>
- <prop oor:name="RunTimeLib" oor:type="xs:string">
+ <prop oor:name="RunTimeLib" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Java -->
<!-- OldLocation: java.ini -->
<info>
@@ -66,7 +66,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="SystemClassPath" oor:type="xs:string">
+ <prop oor:name="SystemClassPath" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Java -->
<!-- OldLocation: java.ini -->
<info>
@@ -76,7 +76,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="Enable" oor:type="xs:boolean">
+ <prop oor:name="Enable" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Java -->
<!-- OldLocation: java.ini -->
<info>
@@ -86,7 +86,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Security" oor:type="xs:boolean">
+ <prop oor:name="Security" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Java -->
<!-- OldLocation: java.ini -->
<!-- UIHints: Tools Options StarOffice Security [Section] Java -->
@@ -122,7 +122,7 @@
</enumeration>
</constraints>
</prop>
- <prop oor:name="UserClassPath" oor:type="xs:string">
+ <prop oor:name="UserClassPath" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Java -->
<!-- OldLocation: java.ini -->
<!-- UIHints: Tools Options StarOffice Security [Section] Java -->
@@ -282,7 +282,7 @@
</enumeration>
</constraints>
</prop>
- <prop oor:name="JavaLibPath" oor:type="xs:string">
+ <prop oor:name="JavaLibPath" oor:type="xs:string" oor:nillable="false">
<!-- Platform: UNIX -->
<!-- OldPath: Java -->
<!-- OldLocation: java.ini -->
@@ -307,7 +307,7 @@
<deprecated/>
<desc>Provides information which are used by jvmsetup. </desc>
</info>
- <prop oor:name="PackageInstallationDirectory" oor:type="xs:string">
+ <prop oor:name="PackageInstallationDirectory" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Install -->
<!-- OldLocation: java.ini -->
<info>
@@ -316,7 +316,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="VerifiedVersion" oor:type="xs:string">
+ <prop oor:name="VerifiedVersion" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Install -->
<!-- OldLocation: java.ini -->
<info>
@@ -325,7 +325,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="Version" oor:type="xs:string">
+ <prop oor:name="Version" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Install -->
<!-- OldLocation: java.ini -->
<info>
@@ -334,7 +334,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="Vendor" oor:type="xs:string">
+ <prop oor:name="Vendor" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Install -->
<!-- OldLocation: java.ini -->
<info>
@@ -343,7 +343,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="RequiredVersion" oor:type="xs:string">
+ <prop oor:name="RequiredVersion" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Install -->
<!-- OldLocation: java.ini -->
<info>
@@ -352,7 +352,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="InstallationPackage" oor:type="xs:string">
+ <prop oor:name="InstallationPackage" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Install -->
<!-- OldLocation: java.ini -->
<info>
@@ -361,7 +361,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="ExcludeVersion" oor:type="xs:string">
+ <prop oor:name="ExcludeVersion" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Install -->
<!-- OldLocation: java.ini -->
<info>
@@ -370,7 +370,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="AdditionalSearchPath" oor:type="xs:string">
+ <prop oor:name="AdditionalSearchPath" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Install -->
<!-- OldLocation: java.ini -->
<info>
@@ -379,7 +379,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="AdditionalClasspath" oor:type="xs:string">
+ <prop oor:name="AdditionalClasspath" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Install -->
<!-- OldLocation: java.ini -->
<info>
diff --git a/officecfg/registry/schema/org/openoffice/Office/Jobs.xcs b/officecfg/registry/schema/org/openoffice/Office/Jobs.xcs
index f5421c8a246f..d63d18a1b80a 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Jobs.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Jobs.xcs
@@ -55,13 +55,13 @@
<info>
<desc>Is used to enable/disable a job execution related to a triggered event.</desc>
</info>
- <prop oor:name="AdminTime" oor:type="xs:string">
+ <prop oor:name="AdminTime" oor:type="xs:string" oor:nillable="false">
<info>
<desc>If it's newer then UserTime, the job will be reactivated next time.</desc>
</info>
<value>2003-01-01T00:00:00+00:00</value>
</prop>
- <prop oor:name="UserTime" oor:type="xs:string">
+ <prop oor:name="UserTime" oor:type="xs:string" oor:nillable="false">
<info>
<desc>If it's newer then AdminTime, the job is deactivated for execution.</desc>
</info>
diff --git a/officecfg/registry/schema/org/openoffice/Office/Linguistic.xcs b/officecfg/registry/schema/org/openoffice/Office/Linguistic.xcs
index c1db417208ae..60d65eb9ea3d 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Linguistic.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Linguistic.xcs
@@ -157,7 +157,7 @@
<info>
<desc>Contains general settings for the linguistic configurations.</desc>
</info>
- <prop oor:name="UILocale" oor:type="xs:string">
+ <prop oor:name="UILocale" oor:type="xs:string" oor:nillable="false">
<!-- OldLocation: NEW -->
<!-- UIHints: Tools - Options - General - Language Settings - Languages -->
<info>
@@ -166,7 +166,7 @@
</info>
<value/>
</prop>
- <prop oor:name="IsIgnoreControlCharacters" oor:type="xs:boolean">
+ <prop oor:name="IsIgnoreControlCharacters" oor:type="xs:boolean" oor:nillable="false">
<!-- OldLocation: NEW -->
<info>
<author>TL</author>
@@ -174,7 +174,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="DefaultLocale" oor:type="xs:string">
+ <prop oor:name="DefaultLocale" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: DefaultLanguage -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - Language -->
@@ -186,7 +186,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="DefaultLocale_CJK" oor:type="xs:string">
+ <prop oor:name="DefaultLocale_CJK" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: DefaultLanguage -->
<!-- UIHints: Tools - Options - General - Language -->
<info>
@@ -197,7 +197,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="DefaultLocale_CTL" oor:type="xs:string">
+ <prop oor:name="DefaultLocale_CTL" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: DefaultLanguage -->
<!-- UIHints: Tools - Options - General - Language -->
<info>
@@ -212,7 +212,7 @@
<info>
<desc>Defines which personal dictionaries are used.</desc>
</info>
- <prop oor:name="ActiveDictionaries" oor:type="oor:string-list">
+ <prop oor:name="ActiveDictionaries" oor:type="oor:string-list" oor:nillable="false">
<!-- OldPath: Active-Dictionaries -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - Language -->
@@ -223,7 +223,7 @@
</info>
<value oor:separator=";">IgnoreAllList;en-US.dic;en-GB.dic;sl.dic;technical.dic</value>
</prop>
- <prop oor:name="IsUseDictionaryList" oor:type="xs:boolean">
+ <prop oor:name="IsUseDictionaryList" oor:type="xs:boolean" oor:nillable="false">
<!-- OldLocation: NEW -->
<info>
<author>TL</author>
@@ -237,7 +237,7 @@
<info>
<desc>Defines settings used by the text conversion.</desc>
</info>
- <prop oor:name="ActiveConversionDictionaries" oor:type="oor:string-list">
+ <prop oor:name="ActiveConversionDictionaries" oor:type="oor:string-list" oor:nillable="false">
<!-- OldLocation: NEW -->
<info>
<desc>Specifies the user dictionaries to be used. </desc>
@@ -245,7 +245,7 @@
</info>
<value/>
</prop>
- <prop oor:name="IsIgnorePostPositionalWord" oor:type="xs:boolean">
+ <prop oor:name="IsIgnorePostPositionalWord" oor:type="xs:boolean" oor:nillable="false">
<!-- OldLocation: NEW -->
<info>
<desc>Specifies if post positionals should be ignored when looking for Korean entries.</desc>
@@ -253,7 +253,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsAutoCloseDialog" oor:type="xs:boolean">
+ <prop oor:name="IsAutoCloseDialog" oor:type="xs:boolean" oor:nillable="false">
<!-- OldLocation: NEW -->
<info>
<desc>Specifies if the dialog should be closed automatically after the conversion of the current text portion is processed.</desc>
@@ -261,7 +261,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="IsShowEntriesRecentlyUsedFirst" oor:type="xs:boolean">
+ <prop oor:name="IsShowEntriesRecentlyUsedFirst" oor:type="xs:boolean" oor:nillable="false">
<!-- OldLocation: NEW -->
<info>
<desc>Specifies if entries that were recently used as replacements should be listed first.</desc>
@@ -269,7 +269,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="IsAutoReplaceUniqueEntries" oor:type="xs:boolean">
+ <prop oor:name="IsAutoReplaceUniqueEntries" oor:type="xs:boolean" oor:nillable="false">
<!-- OldLocation: NEW -->
<info>
<desc>Specifies if entries for which have only one possible replacement should be replaced automatically.</desc>
@@ -284,7 +284,7 @@
<label>Direction to simplified</label>
</info>
</prop>
- <prop oor:name="IsUseCharacterVariants" oor:type="xs:boolean">
+ <prop oor:name="IsUseCharacterVariants" oor:type="xs:boolean" oor:nillable="false">
<!-- OldLocation: NEW -->
<info>
<desc>Specifies wether Taiwan, Hongkong SAR, and Macao SAR character variants should be used for translation.</desc>
@@ -292,7 +292,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="IsTranslateCommonTerms" oor:type="xs:boolean">
+ <prop oor:name="IsTranslateCommonTerms" oor:type="xs:boolean" oor:nillable="false">
<!-- OldLocation: NEW -->
<info>
<desc>Specifies wether common terms should be detected and translated as whole words.</desc>
@@ -300,7 +300,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="IsReverseMapping" oor:type="xs:boolean">
+ <prop oor:name="IsReverseMapping" oor:type="xs:boolean" oor:nillable="false">
<!-- OldLocation: NEW -->
<info>
<desc>If Reverse Mapping is active than every dictionary entry added or modified will also be added or modified within the dictionary in the opposite mapping direction.</desc>
@@ -313,7 +313,7 @@
<info>
<desc>Contains spell checking-relevant settings.</desc>
</info>
- <prop oor:name="IsSpellUpperCase" oor:type="xs:boolean">
+ <prop oor:name="IsSpellUpperCase" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: MiscOptions / SpellOptions -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - Language -->
@@ -324,7 +324,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="IsSpellWithDigits" oor:type="xs:boolean">
+ <prop oor:name="IsSpellWithDigits" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: MiscOptions / SpellOptions -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - Language -->
@@ -335,7 +335,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="IsSpellCapitalization" oor:type="xs:boolean">
+ <prop oor:name="IsSpellCapitalization" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: MiscOptions / SpellOptions -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - Language -->
@@ -346,7 +346,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsSpellAuto" oor:type="xs:boolean">
+ <prop oor:name="IsSpellAuto" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: MiscOptions / SpellOptions -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - Language -->
@@ -357,7 +357,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsSpellSpecial" oor:type="xs:boolean">
+ <prop oor:name="IsSpellSpecial" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: MiscOptions / SpellOptions -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - Language -->
@@ -368,7 +368,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsReverseDirection" oor:type="xs:boolean">
+ <prop oor:name="IsReverseDirection" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: MiscOptions / SpellOptions -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - Language -->
@@ -384,7 +384,7 @@
<info>
<desc>Contains grammar checking relevant settings.</desc>
</info>
- <prop oor:name="IsAutoCheck" oor:type="xs:boolean">
+ <prop oor:name="IsAutoCheck" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>OS</author>
<desc>determines if grammar is automatically checked.</desc>
@@ -392,7 +392,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsInteractiveCheck" oor:type="xs:boolean">
+ <prop oor:name="IsInteractiveCheck" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>OS</author>
<desc>determines if grammar is check in the spelling and grammar dialog.</desc>
@@ -405,7 +405,7 @@
<info>
<desc>Contains hyphenation relevant settings.</desc>
</info>
- <prop oor:name="MinLeading" oor:type="xs:short">
+ <prop oor:name="MinLeading" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: HyphMinLeading -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - Language -->
@@ -428,7 +428,7 @@
</constraints>
<value>2</value>
</prop>
- <prop oor:name="MinTrailing" oor:type="xs:short">
+ <prop oor:name="MinTrailing" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: HyphMinTrailing -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - Language -->
@@ -451,7 +451,7 @@
</constraints>
<value>2</value>
</prop>
- <prop oor:name="MinWordLength" oor:type="xs:short">
+ <prop oor:name="MinWordLength" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: HyphMinWordLength -->
<!-- OldLocation: soffice.ini -->
<info>
@@ -473,7 +473,7 @@
</constraints>
<value>5</value>
</prop>
- <prop oor:name="IsHyphSpecial" oor:type="xs:boolean">
+ <prop oor:name="IsHyphSpecial" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: MiscOptions -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - Language -->
@@ -484,7 +484,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsHyphAuto" oor:type="xs:boolean">
+ <prop oor:name="IsHyphAuto" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: MiscOptions -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - Language -->
@@ -539,7 +539,7 @@
</info>
</set>
- <prop oor:name="DataFilesChangedCheckValue" oor:type="xs:int">
+ <prop oor:name="DataFilesChangedCheckValue" oor:type="xs:int" oor:nillable="false">
<info>
<author>TL</author>
<desc>Value used to check if the data files of the linguistic have changed and thus the configuration needs to be updated.</desc>
diff --git a/officecfg/registry/schema/org/openoffice/Office/Logging.xcs b/officecfg/registry/schema/org/openoffice/Office/Logging.xcs
index 2fda9ea6aaf1..21badddeb6b9 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Logging.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Logging.xcs
@@ -54,7 +54,7 @@
the logger. Plain properties below the HandlerSettings node are passed to
the log handler upon creation, as sequence of NamedValues.</desc>
</info>
- <prop oor:name="FileURL" oor:type="xs:string">
+ <prop oor:name="FileURL" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the file URL for the log handler. The default value here will expand to a file
with the same name as the logger for which the handler is used, with extension &quot;.log&quot;.
@@ -84,21 +84,21 @@
<author>b_michaelsen</author>
<desc>specifies settings for the logging of userinterface events.</desc>
</info>
- <prop oor:name="EnablingAllowed" oor:type="xs:boolean">
+ <prop oor:name="EnablingAllowed" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>only if this is true, usage tracking is allowed and its options will be shown
</desc>
</info>
<value>false</value>
</prop>
- <prop oor:name="LogPath" oor:type="xs:string">
+ <prop oor:name="LogPath" oor:type="xs:string" oor:nillable="false">
<info>
<desc>directory where the logs will get saved
</desc>
</info>
<value>$(user)/temp/Feedback</value>
</prop>
- <prop oor:name="IdleTimeout" oor:type="xs:int">
+ <prop oor:name="IdleTimeout" oor:type="xs:int" oor:nillable="false">
<info>
<desc>idle time in minutes. If two log event are separated by a longer
time, the log will be rotated.</desc>
diff --git a/officecfg/registry/schema/org/openoffice/Office/Math.xcs b/officecfg/registry/schema/org/openoffice/Office/Math.xcs
index 50b4ede0ecc7..211ef9a0c525 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Math.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Math.xcs
@@ -213,7 +213,7 @@
<desc>Specifies the symbol set containing the symbol.</desc>
</info>
</prop>
- <prop oor:name="Predefined" oor:type="xs:boolean">
+ <prop oor:name="Predefined" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies if a symbol is predefined or user-defined.</desc>
</info>
@@ -231,7 +231,7 @@
<info>
<desc>Contains settings for printing.</desc>
</info>
- <prop oor:name="Title" oor:type="xs:boolean">
+ <prop oor:name="Title" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Math/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Formula Settings - [Section] Print options -->
@@ -242,7 +242,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="FormulaText" oor:type="xs:boolean">
+ <prop oor:name="FormulaText" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Math/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Formula Settings - [Section] Print options -->
@@ -253,7 +253,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Frame" oor:type="xs:boolean">
+ <prop oor:name="Frame" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Math/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Formula Settings - [Section] Print options -->
@@ -264,7 +264,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Size" oor:type="xs:short">
+ <prop oor:name="Size" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Formula Settings - [Section] Print format -->
@@ -292,7 +292,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="ZoomFactor" oor:type="xs:short">
+ <prop oor:name="ZoomFactor" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Formula Settings - [Section] Print format -->
@@ -320,7 +320,7 @@
<info>
<desc>Contains settings related to load and save operations.</desc>
</info>
- <prop oor:name="IsSaveOnlyUsedSymbols" oor:type="xs:boolean">
+ <prop oor:name="IsSaveOnlyUsedSymbols" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: - Tools/Options - OpenOffice Maths - Settings -->
<info>
<author>TL</author>
@@ -334,7 +334,7 @@
<info>
<desc>Contains miscellaneous settings.</desc>
</info>
- <prop oor:name="NoSymbolsWarning" oor:type="xs:boolean">
+ <prop oor:name="NoSymbolsWarning" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Math/Misc -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: - -->
@@ -346,7 +346,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IgnoreSpacesRight" oor:type="xs:boolean">
+ <prop oor:name="IgnoreSpacesRight" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Math/Misc -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options Formula Settings - [Section] Miscellaneous options -->
@@ -362,7 +362,7 @@
<info>
<desc>Contains view settings.</desc>
</info>
- <prop oor:name="ToolboxVisible" oor:type="xs:boolean">
+ <prop oor:name="ToolboxVisible" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Math/View -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: View - Elements -->
@@ -373,7 +373,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="AutoRedraw" oor:type="xs:boolean">
+ <prop oor:name="AutoRedraw" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Math/View -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: View - AutoRefresh Display -->
@@ -384,7 +384,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="FormulaCursor" oor:type="xs:boolean">
+ <prop oor:name="FormulaCursor" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Math/View -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: The icon &quot;Formula Cursor&quot; in the Tool bar -->
@@ -405,7 +405,7 @@
<info>
<desc>Defines the default format settings for formulas.</desc>
</info>
- <prop oor:name="Textmode" oor:type="xs:boolean">
+ <prop oor:name="Textmode" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Text Mode -->
@@ -416,7 +416,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="GreekCharStyle" oor:type="xs:short">
+ <prop oor:name="GreekCharStyle" oor:type="xs:short" oor:nillable="false">
<!-- UIHints: n/a yet -->
<info>
<author>TL</author>
@@ -437,7 +437,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="ScaleNormalBracket" oor:type="xs:boolean">
+ <prop oor:name="ScaleNormalBracket" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Brackets - Scale all brackets -->
@@ -448,7 +448,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="HorizontalAlignment" oor:type="xs:short">
+ <prop oor:name="HorizontalAlignment" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Alignment - Horizontal -->
@@ -476,7 +476,7 @@
</constraints>
<value>1</value>
</prop>
- <prop oor:name="BaseSize" oor:type="xs:short">
+ <prop oor:name="BaseSize" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format- Font Size - Base size -->
@@ -499,7 +499,7 @@
</constraints>
<value>12</value>
</prop>
- <prop oor:name="TextSize" oor:type="xs:short">
+ <prop oor:name="TextSize" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format- Font Size - Text -->
@@ -522,7 +522,7 @@
</constraints>
<value>100</value>
</prop>
- <prop oor:name="IndexSize" oor:type="xs:short">
+ <prop oor:name="IndexSize" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format- Font Size - Indices -->
@@ -545,7 +545,7 @@
</constraints>
<value>60</value>
</prop>
- <prop oor:name="FunctionSize" oor:type="xs:short">
+ <prop oor:name="FunctionSize" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format- Font Size - Functions -->
@@ -568,7 +568,7 @@
</constraints>
<value>100</value>
</prop>
- <prop oor:name="OperatorSize" oor:type="xs:short">
+ <prop oor:name="OperatorSize" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format- Font Size - Operators -->
@@ -591,7 +591,7 @@
</constraints>
<value>100</value>
</prop>
- <prop oor:name="LimitsSize" oor:type="xs:short">
+ <prop oor:name="LimitsSize" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format- Font Size - Limits -->
@@ -614,7 +614,7 @@
</constraints>
<value>60</value>
</prop>
- <prop oor:name="VariableFont" oor:type="xs:string">
+ <prop oor:name="VariableFont" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Fonts - Variables -->
@@ -625,7 +625,7 @@
</info>
<value/>
</prop>
- <prop oor:name="FunctionFont" oor:type="xs:string">
+ <prop oor:name="FunctionFont" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Fonts - Functions -->
@@ -636,7 +636,7 @@
</info>
<value/>
</prop>
- <prop oor:name="NumberFont" oor:type="xs:string">
+ <prop oor:name="NumberFont" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Fonts - Numbers -->
@@ -647,7 +647,7 @@
</info>
<value/>
</prop>
- <prop oor:name="TextFont" oor:type="xs:string">
+ <prop oor:name="TextFont" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Fonts - Text -->
@@ -658,7 +658,7 @@
</info>
<value/>
</prop>
- <prop oor:name="SansFont" oor:type="xs:string">
+ <prop oor:name="SansFont" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Fonts - Sans -->
@@ -669,7 +669,7 @@
</info>
<value/>
</prop>
- <prop oor:name="SerifFont" oor:type="xs:string">
+ <prop oor:name="SerifFont" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Fonts - Serif -->
@@ -680,7 +680,7 @@
</info>
<value/>
</prop>
- <prop oor:name="FixedFont" oor:type="xs:string">
+ <prop oor:name="FixedFont" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Fonts - Fixed -->
@@ -695,7 +695,7 @@
<info>
<desc>Specifies the distance settings used for formatting a formula.</desc>
</info>
- <prop oor:name="Horizontal" oor:type="xs:short">
+ <prop oor:name="Horizontal" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Spacing - Spacing -->
@@ -718,7 +718,7 @@
</constraints>
<value>10</value>
</prop>
- <prop oor:name="Vertical" oor:type="xs:short">
+ <prop oor:name="Vertical" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Spacing - Line Spacing -->
@@ -741,7 +741,7 @@
</constraints>
<value>5</value>
</prop>
- <prop oor:name="Root" oor:type="xs:short">
+ <prop oor:name="Root" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Spacing - Root Spacing -->
@@ -764,7 +764,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="SubScript" oor:type="xs:short">
+ <prop oor:name="SubScript" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Indexes - Subscript -->
@@ -787,7 +787,7 @@
</constraints>
<value>20</value>
</prop>
- <prop oor:name="SuperScript" oor:type="xs:short">
+ <prop oor:name="SuperScript" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Indexes - Superscript -->
@@ -810,7 +810,7 @@
</constraints>
<value>20</value>
</prop>
- <prop oor:name="LowerLimit" oor:type="xs:short">
+ <prop oor:name="LowerLimit" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Limits - Lower Limit -->
@@ -833,7 +833,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="UpperLimit" oor:type="xs:short">
+ <prop oor:name="UpperLimit" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Limits - Upper Limit -->
@@ -856,7 +856,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="OperatorSize" oor:type="xs:short">
+ <prop oor:name="OperatorSize" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Operators - Excess size -->
@@ -879,7 +879,7 @@
</constraints>
<value>50</value>
</prop>
- <prop oor:name="OperatorSpace" oor:type="xs:short">
+ <prop oor:name="OperatorSpace" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Operators - Spacing -->
@@ -902,7 +902,7 @@
</constraints>
<value>20</value>
</prop>
- <prop oor:name="Numerator" oor:type="xs:short">
+ <prop oor:name="Numerator" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Fractions - Numerator -->
@@ -925,7 +925,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="Denominator" oor:type="xs:short">
+ <prop oor:name="Denominator" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Fractions - Denominator -->
@@ -948,7 +948,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="Fraction" oor:type="xs:short">
+ <prop oor:name="Fraction" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Fraction Bars - Excess length -->
@@ -971,7 +971,7 @@
</constraints>
<value>10</value>
</prop>
- <prop oor:name="StrokeWidth" oor:type="xs:short">
+ <prop oor:name="StrokeWidth" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Fraction Bars - Weight -->
@@ -994,7 +994,7 @@
</constraints>
<value>5</value>
</prop>
- <prop oor:name="BracketSize" oor:type="xs:short">
+ <prop oor:name="BracketSize" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Brackets - Excess size (left/right) -->
@@ -1017,7 +1017,7 @@
</constraints>
<value>5</value>
</prop>
- <prop oor:name="BracketSpace" oor:type="xs:short">
+ <prop oor:name="BracketSpace" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Brackets - Spacing -->
@@ -1040,7 +1040,7 @@
</constraints>
<value>5</value>
</prop>
- <prop oor:name="NormalBracketSize" oor:type="xs:short">
+ <prop oor:name="NormalBracketSize" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Brackets - Excess size -->
@@ -1063,7 +1063,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="MatrixRow" oor:type="xs:short">
+ <prop oor:name="MatrixRow" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Matrixes - Line Spacing -->
@@ -1086,7 +1086,7 @@
</constraints>
<value>3</value>
</prop>
- <prop oor:name="MatrixColumn" oor:type="xs:short">
+ <prop oor:name="MatrixColumn" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Matrixes - Column Spacing -->
@@ -1109,7 +1109,7 @@
</constraints>
<value>30</value>
</prop>
- <prop oor:name="OrnamentSize" oor:type="xs:short">
+ <prop oor:name="OrnamentSize" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Symbols - Primary height -->
@@ -1132,7 +1132,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="OrnamentSpace" oor:type="xs:short">
+ <prop oor:name="OrnamentSpace" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Symbols - Minimum distance -->
@@ -1155,7 +1155,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="LeftSpace" oor:type="xs:short">
+ <prop oor:name="LeftSpace" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Borders - Left -->
@@ -1178,7 +1178,7 @@
</constraints>
<value>100</value>
</prop>
- <prop oor:name="RightSpace" oor:type="xs:short">
+ <prop oor:name="RightSpace" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Borders - Right -->
@@ -1201,7 +1201,7 @@
</constraints>
<value>100</value>
</prop>
- <prop oor:name="TopSpace" oor:type="xs:short">
+ <prop oor:name="TopSpace" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Borders - Top -->
@@ -1224,7 +1224,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="BottomSpace" oor:type="xs:short">
+ <prop oor:name="BottomSpace" oor:type="xs:short" oor:nillable="false">
<!-- OldPath: Math/StandardFormat -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Format - Spacing - Category - Borders - Bottom -->
diff --git a/officecfg/registry/schema/org/openoffice/Office/OOoImprovement/Settings.xcs b/officecfg/registry/schema/org/openoffice/Office/OOoImprovement/Settings.xcs
index a4339ccef463..e4464545949c 100644
--- a/officecfg/registry/schema/org/openoffice/Office/OOoImprovement/Settings.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/OOoImprovement/Settings.xcs
@@ -9,7 +9,7 @@
<info>
<desc>invitations to usage tracking etc.</desc>
</info>
- <prop oor:name="OfficeStartCounterdown" oor:type="xs:int">
+ <prop oor:name="OfficeStartCounterdown" oor:type="xs:int" oor:nillable="false">
<info>
<desc>the number of starts that will be skipped before the user will get invited to the
OpenOffice.org Improvement Program. If this is zero the user will get asked.
@@ -17,26 +17,26 @@
</info>
<value>1</value>
</prop>
- <prop oor:name="InvitationAccepted" oor:type="xs:boolean">
+ <prop oor:name="InvitationAccepted" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>true, if the user accepted the invitation.</desc>
</info>
<value>false</value>
</prop>
- <prop oor:name="ShowedInvitation" oor:type="xs:boolean">
+ <prop oor:name="ShowedInvitation" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>true, if the user was already invited.</desc>
</info>
<value>false</value>
</prop>
- <prop oor:name="DeliveredPrebundled" oor:type="xs:boolean">
+ <prop oor:name="DeliveredPrebundled" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>true, if the extension is prebundled - is set by an onFirstRunInitialization job.
(currently not implemented)</desc>
</info>
<value>false</value>
</prop>
- <prop oor:name="HelpUrl" oor:type="xs:string">
+ <prop oor:name="HelpUrl" oor:type="xs:string" oor:nillable="false">
<info>
<desc>the url where additional information can be found.</desc>
</info>
@@ -47,19 +47,19 @@
<info>
<desc>counts of recorded events, uploaded reports etc.</desc>
</info>
- <prop oor:name="UploadedReports" oor:type="xs:int">
+ <prop oor:name="UploadedReports" oor:type="xs:int" oor:nillable="false">
<info>
<desc>the number of reports uploaded.</desc>
</info>
<value>0</value>
</prop>
- <prop oor:name="LoggedEvents" oor:type="xs:int">
+ <prop oor:name="LoggedEvents" oor:type="xs:int" oor:nillable="false">
<info>
<desc>the number of events in zipped or already uploaded report.</desc>
</info>
<value>0</value>
</prop>
- <prop oor:name="FailedAttempts" oor:type="xs:int">
+ <prop oor:name="FailedAttempts" oor:type="xs:int" oor:nillable="false">
<info>
<desc>the number of failed upload tries.</desc>
</info>
@@ -70,13 +70,13 @@
<info>
<desc>settings on destination for uploading reports</desc>
</info>
- <prop oor:name="SoapUrl" oor:type="xs:string">
+ <prop oor:name="SoapUrl" oor:type="xs:string" oor:nillable="false">
<info>
<desc>the url where reports get send to.</desc>
</info>
<value>http://report.libreoffice.org:80/soap/servlet/rpcrouter</value>
</prop>
- <prop oor:name="SoapIdAdditions" oor:type="xs:string">
+ <prop oor:name="SoapIdAdditions" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Additions to the SoapId for automated testing
DO NOT SET THIS VALUE UNLESS YOU KNOW WHAT YOU ARE DOING!
@@ -84,7 +84,7 @@
</info>
<value></value>
</prop>
- <prop oor:name="ReporterEmail" oor:type="xs:string">
+ <prop oor:name="ReporterEmail" oor:type="xs:string" oor:nillable="false">
<info>
<desc>The Emailaddress to fill out in the reportmail.xml file.
DO NOT SET THIS VALUE UNLESS YOU KNOW WHAT YOU ARE DOING!
diff --git a/officecfg/registry/schema/org/openoffice/Office/OptionsDialog.xcs b/officecfg/registry/schema/org/openoffice/Office/OptionsDialog.xcs
index f1c4cab212bc..aa1f998251d5 100644
--- a/officecfg/registry/schema/org/openoffice/Office/OptionsDialog.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/OptionsDialog.xcs
@@ -125,7 +125,7 @@
accept input.</desc>
</info>
</prop>
- <prop oor:name="AllModules" oor:type="xs:boolean">
+ <prop oor:name="AllModules" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>If true then this Node shall be displayed independent of the
Module for which the options dialog is displayed - that is, always.
@@ -139,7 +139,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="GroupId" oor:type="xs:string">
+ <prop oor:name="GroupId" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Identifies a group of Node|s. All nodes (the tree view elements)
which refer to the same group are displayed next to each other. If
@@ -155,7 +155,7 @@
</info>
<value></value>
</prop>
- <prop oor:name="GroupIndex" oor:type="xs:int">
+ <prop oor:name="GroupIndex" oor:type="xs:int" oor:nillable="false">
<info>
<desc>The index of the Node within the group. The index starts with
null. If this property is set then property GroupId must also have
@@ -211,7 +211,7 @@
provides for saving and reading the respective values.</desc>
</info>
</prop>
- <prop oor:name="GroupId" oor:type="xs:string">
+ <prop oor:name="GroupId" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Identifies a group of Leaf|s. All Leaf|s which have the same
GroupId form a group and the corresponding entries in the tree view
@@ -230,7 +230,7 @@
</info>
<value></value>
</prop>
- <prop oor:name="GroupIndex" oor:type="xs:int">
+ <prop oor:name="GroupIndex" oor:type="xs:int" oor:nillable="false">
<info>
<desc>The index of the Leaf within the group. The index starts with
null. If this property is set then GroupId must also have
@@ -250,7 +250,7 @@
index determines the position of the node (the tree view element) in
the options dialog for a particular Module.</desc>
</info>
- <prop oor:name="Index" oor:type="xs:int">
+ <prop oor:name="Index" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Determines the position of the node in the options dialog.
The index starts with null. That is, the corresponding node
diff --git a/officecfg/registry/schema/org/openoffice/Office/Paths.xcs b/officecfg/registry/schema/org/openoffice/Office/Paths.xcs
index fe9620cf8140..90811bbcb139 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Paths.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Paths.xcs
@@ -50,7 +50,7 @@
<info>
<desc>Bind a list of path values to a "path name" e.g. "Template".</desc>
</info>
- <prop oor:name="IsSinglePath" oor:type="xs:boolean">
+ <prop oor:name="IsSinglePath" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Mark a NamedPath as SinglePath (false=MultiPath). Only the property WritePath is used for such single pathes then.</desc>
</info>
diff --git a/officecfg/registry/schema/org/openoffice/Office/Recovery.xcs b/officecfg/registry/schema/org/openoffice/Office/Recovery.xcs
index e08bf3839924..d1c4a0e2e4e3 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Recovery.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Recovery.xcs
@@ -88,7 +88,7 @@
<author>MAV</author>
<desc>The session shutdown related information.</desc>
</info>
- <prop oor:name="DocumentStoreUIEnabled" oor:type="xs:boolean">
+ <prop oor:name="DocumentStoreUIEnabled" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>MAV</author>
<desc>Determines if the office is allowed to show request to store modified documents on session shutdown.</desc>
@@ -100,19 +100,19 @@
<info>
<desc> </desc>
</info>
- <prop oor:name="Enabled" oor:type="xs:boolean">
+ <prop oor:name="Enabled" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Determines if the recovery feature should be enabled or disabled</desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="Crashed" oor:type="xs:boolean">
+ <prop oor:name="Crashed" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc> </desc>
</info>
<value>false</value>
</prop>
- <prop oor:name="SessionData" oor:type="xs:boolean">
+ <prop oor:name="SessionData" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc> </desc>
</info>
@@ -123,7 +123,7 @@
<info>
<desc>Settings for the crash reporter.</desc>
</info>
- <prop oor:name="Enabled" oor:type="xs:boolean">
+ <prop oor:name="Enabled" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies if the crash reporter should be enabled or disabled.</desc>
</info>
@@ -134,25 +134,25 @@
<info>
<desc> </desc>
</info>
- <prop oor:name="Enabled" oor:type="xs:boolean">
+ <prop oor:name="Enabled" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc> </desc>
</info>
<value>true</value>
</prop>
- <prop oor:name="TimeIntervall" oor:type="xs:int">
+ <prop oor:name="TimeIntervall" oor:type="xs:int" oor:nillable="false">
<info>
<desc> </desc>
</info>
<value>15</value>
</prop>
- <prop oor:name="MinSpaceDocSave" oor:type="xs:int">
+ <prop oor:name="MinSpaceDocSave" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Define the minimum space in [MB], which must be available on disc to save backups for open documents. Note: values less then 1 will be ignored.</desc>
</info>
<value>5</value>
</prop>
- <prop oor:name="MinSpaceConfigSave" oor:type="xs:int">
+ <prop oor:name="MinSpaceConfigSave" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Define the minimum space in [MB], which must be available on disc to store the recovery configuration. Note: values less then 1 will be ignored.</desc>
</info>
diff --git a/officecfg/registry/schema/org/openoffice/Office/SFX.xcs b/officecfg/registry/schema/org/openoffice/Office/SFX.xcs
index 496381d36e6e..babe378382a2 100644
--- a/officecfg/registry/schema/org/openoffice/Office/SFX.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/SFX.xcs
@@ -35,7 +35,7 @@
<info>
<desc>Contains settings which specifies how the help in Office should work.</desc>
</info>
- <prop oor:name="HelpAgentStarterList" oor:type="xs:string" oor:localized="true">
+ <prop oor:name="HelpAgentStarterList" oor:type="xs:string" oor:localized="true" oor:nillable="false">
<!-- OldLocation: hlpagent.ini -->
<info>
<author>PB</author>
diff --git a/officecfg/registry/schema/org/openoffice/Office/TypeDetection.xcs b/officecfg/registry/schema/org/openoffice/Office/TypeDetection.xcs
index eabd4a80949e..6d4c86161daf 100644
--- a/officecfg/registry/schema/org/openoffice/Office/TypeDetection.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/TypeDetection.xcs
@@ -40,7 +40,7 @@
<desc>Displays a localized type on the user interface. Supports CJK by allowing you to assign it a value or language. Any UniCode characters is permitted.</desc>
</info>
</prop>
- <prop oor:name="Data" oor:type="xs:string">
+ <prop oor:name="Data" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Contains configuration items of the type. Items are separated by using &quot;,&quot;, list items are separated by&quot;;&quot;. Sequence of items: Preferred,MediaType,ClipboardFormat,URLPattern,Extensions,DocumentIconID.</desc>
</info>
@@ -51,7 +51,7 @@
<info>
<desc>Lists filters that can import or export content.</desc>
</info>
- <prop oor:name="Installed" oor:type="xs:boolean">
+ <prop oor:name="Installed" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Enables or disables filter with the setup utility.</desc>
</info>
@@ -134,13 +134,13 @@
<info>
<desc>Contains default objects that are used if no specialized service was registered.</desc>
</info>
- <prop oor:name="FrameLoader" oor:type="xs:string">
+ <prop oor:name="FrameLoader" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the default frame loader.</desc>
</info>
<value>com.sun.star.comp.office.FrameLoader</value>
</prop>
- <prop oor:name="ShowAlienFilterWarning" oor:type="xs:boolean">
+ <prop oor:name="ShowAlienFilterWarning" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>OS</author>
<desc>Displays a warning when a user tries to set a third-party filter as the default filter in &quot;Tools - Options&quot;.</desc>
diff --git a/officecfg/registry/schema/org/openoffice/Office/UI.xcs b/officecfg/registry/schema/org/openoffice/Office/UI.xcs
index 434ec5c717c7..f7b382ec1c50 100644
--- a/officecfg/registry/schema/org/openoffice/Office/UI.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/UI.xcs
@@ -67,7 +67,7 @@
<info>
<desc>Specifies the settings for the documents boundaries.</desc>
</info>
- <prop oor:name="IsVisible" oor:type="xs:boolean">
+ <prop oor:name="IsVisible" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the visibility of anchors (true = visible).</desc>
</info>
@@ -93,7 +93,7 @@
<info>
<desc>Specifies the settings for object boundaries.</desc>
</info>
- <prop oor:name="IsVisible" oor:type="xs:boolean">
+ <prop oor:name="IsVisible" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the visibility of object boundaries (true = visible).</desc>
</info>
@@ -109,7 +109,7 @@
<info>
<desc>Specifies the settings for table boundaries.</desc>
</info>
- <prop oor:name="IsVisible" oor:type="xs:boolean">
+ <prop oor:name="IsVisible" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the visibility of table boundaries (true = visible).</desc>
</info>
@@ -135,7 +135,7 @@
<info>
<desc>Specifies the settings for unvisited links.</desc>
</info>
- <prop oor:name="IsVisible" oor:type="xs:boolean">
+ <prop oor:name="IsVisible" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the visibility of unvisited links (true = visible).</desc>
</info>
@@ -151,7 +151,7 @@
<info>
<desc>Specifies the settings for visited links.</desc>
</info>
- <prop oor:name="IsVisible" oor:type="xs:boolean">
+ <prop oor:name="IsVisible" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the visibility of visited links (true = visible).</desc>
</info>
@@ -187,7 +187,7 @@
<info>
<desc>Specifies the settings for shadows.</desc>
</info>
- <prop oor:name="IsVisible" oor:type="xs:boolean">
+ <prop oor:name="IsVisible" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the visibility of shadows (true = visible).</desc>
</info>
@@ -213,7 +213,7 @@
<info>
<desc>Specifies the settings for field shadings in Writer.</desc>
</info>
- <prop oor:name="IsVisible" oor:type="xs:boolean">
+ <prop oor:name="IsVisible" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the visibility of field shadings (true = visible).</desc>
</info>
@@ -229,7 +229,7 @@
<info>
<desc>Specifies the settings for index and table shadings in Writer.</desc>
</info>
- <prop oor:name="IsVisible" oor:type="xs:boolean">
+ <prop oor:name="IsVisible" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the visibility of index and table shadings (true = visible).</desc>
</info>
@@ -245,7 +245,7 @@
<info>
<desc>Specifies the settings for the direct cursor in Writer.</desc>
</info>
- <prop oor:name="IsVisible" oor:type="xs:boolean">
+ <prop oor:name="IsVisible" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the visibility of direct cursor (true = visible).</desc>
</info>
@@ -271,7 +271,7 @@
<info>
<desc>Specifies the settings for section boundaries in Writer.</desc>
</info>
- <prop oor:name="IsVisible" oor:type="xs:boolean">
+ <prop oor:name="IsVisible" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the visibility of section boundaries (true = visible).</desc>
</info>
@@ -427,7 +427,7 @@
<info>
<desc>Specifies the settings used for the grid in Draw/Impress.</desc>
</info>
- <prop oor:name="IsVisible" oor:type="xs:boolean">
+ <prop oor:name="IsVisible" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies the visibility of the grid (true = visible).</desc>
</info>
@@ -591,7 +591,7 @@
<info>
<desc>Presents global classes to the user in a group of their own. A typical example for a global class is &quot;text documents&quot;, whereas &quot;StarWriter 4.0 / 5.0 documents&quot; is not a global class.</desc>
</info>
- <prop oor:name="Order" oor:type="oor:string-list">
+ <prop oor:name="Order" oor:type="oor:string-list" oor:nillable="false">
<info>
<desc>List specifying the order of the global filters within their group.</desc>
</info>
@@ -637,7 +637,7 @@
<author>FS</author>
<desc>Specifies various settings for the internal file/folder picker dialog.</desc>
</info>
- <prop oor:name="FillAsynchronously" oor:type="xs:boolean">
+ <prop oor:name="FillAsynchronously" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies whether the dialog should fill its view asynchronously. Asnychronous filling allows the user to cancel blocking operations, which may be usefull for instance for mounted, but dead NFS devices.</desc>
</info>
@@ -648,7 +648,7 @@
<desc>Specifies the timeouts to be used when the file view is to be filled asynchronously.
These settings are not evaluated if the FillAsynchronously property is false.</desc>
</info>
- <prop oor:name="Min" oor:type="xs:int">
+ <prop oor:name="Min" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the minimum timeout in milliseconds. When the file view is filled, the dialog will wait at least this time before the user is allowed to cancel the operation.</desc>
</info>
@@ -661,7 +661,7 @@ These settings are not evaluated if the FillAsynchronously property is false.</d
</constraints>
<value>1000</value>
</prop>
- <prop oor:name="Max" oor:type="xs:int">
+ <prop oor:name="Max" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the maximum timeout in milliseconds. When the file view is being filled, and its content could not be completely obtained within the time frame given here, the operation is cancelled automatically.</desc>
</info>
diff --git a/officecfg/registry/schema/org/openoffice/Office/UI/Commands.xcs b/officecfg/registry/schema/org/openoffice/Office/UI/Commands.xcs
index 71efdab1b636..a9890dafb241 100644
--- a/officecfg/registry/schema/org/openoffice/Office/UI/Commands.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/UI/Commands.xcs
@@ -45,7 +45,7 @@
<desc>A localized text that describes the identifier of a command in a structured menu. </desc>
</info>
</prop>
- <prop oor:name="Properties" oor:type="xs:int">
+ <prop oor:name="Properties" oor:type="xs:int" oor:nillable="false">
<info>
<desc>
Additional information about a single command.
diff --git a/officecfg/registry/schema/org/openoffice/Office/UI/Controller.xcs b/officecfg/registry/schema/org/openoffice/Office/UI/Controller.xcs
index 5d45bcce7ae1..c70a1752c6c1 100644
--- a/officecfg/registry/schema/org/openoffice/Office/UI/Controller.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/UI/Controller.xcs
@@ -50,7 +50,7 @@
<desc>Specifies the UNO service to use for the specified tuple Command and Module</desc>
</info>
</prop>
- <prop oor:name="Value" oor:type="xs:string">
+ <prop oor:name="Value" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies a controller specific value which is provided to every controller instance during initialization.</desc>
</info>
diff --git a/officecfg/registry/schema/org/openoffice/Office/UI/WindowState.xcs b/officecfg/registry/schema/org/openoffice/Office/UI/WindowState.xcs
index b56629aca2eb..c093e75cabf5 100644
--- a/officecfg/registry/schema/org/openoffice/Office/UI/WindowState.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/UI/WindowState.xcs
@@ -36,13 +36,13 @@
<info>
<desc>Provides a mapping between commands and their textual representation on the user interface.</desc>
</info>
- <prop oor:name="Locked" oor:type="xs:boolean">
+ <prop oor:name="Locked" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>A locked user interface element cannot be moved or undocked by the user. This property is only active when the user interface element is in a docked state.</desc>
</info>
<value>false</value>
</prop>
- <prop oor:name="Docked" oor:type="xs:boolean">
+ <prop oor:name="Docked" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies if the user interface element is currently docked.</desc>
</info>
@@ -53,13 +53,13 @@
<desc>Specifies if the user interface element is visible.</desc>
</info>
</prop>
- <prop oor:name="ContextSensitive" oor:type="xs:boolean">
+ <prop oor:name="ContextSensitive" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies if the user interface element is context sensitive. This controls if the Office shows the user interface element </desc>
</info>
<value>false</value>
</prop>
- <prop oor:name="HideFromToolbarMenu" oor:type="xs:boolean">
+ <prop oor:name="HideFromToolbarMenu" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies if a toolbar should not be shown inside the View - Toolbars menu.</desc>
</info>
@@ -95,14 +95,14 @@
<desc>Specifies the user interface element name. It is used for floating user interface elements to set the title and for the bubble help.</desc>
</info>
</prop>
- <prop oor:name="ImageURL" oor:type="xs:string">
+ <prop oor:name="ImageURL" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the URL of an image to associate with the user interface element. Any URL scheme supported by the com.sun.star.graphic.GraphicProvider service
is suitable here.</desc>
</info>
<value></value>
</prop>
- <prop oor:name="HelpURL" oor:type="xs:string">
+ <prop oor:name="HelpURL" oor:type="xs:string" oor:nillable="false">
<info>
<desc>
Specifies the help URL of the tool panel.
@@ -115,25 +115,25 @@
<desc>Specifies an internal state for the user interface element. Please don't change this value it describes an internal value.</desc>
</info>
</prop>
- <prop oor:name="Style" oor:type="xs:int">
+ <prop oor:name="Style" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the style of a toolbar. This property is only used by toolbar user interface elements. 0 = symbol buttons, 1 = text buttons, 2 = symbols+text buttons</desc>
</info>
<value>0</value>
</prop>
- <prop oor:name="NoClose" oor:type="xs:boolean">
+ <prop oor:name="NoClose" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies that a user interface element shouldn't have a closer. This property is only used by toolbars or floating window user interface elements.</desc>
</info>
<value>false</value>
</prop>
- <prop oor:name="SoftClose" oor:type="xs:boolean">
+ <prop oor:name="SoftClose" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies that a user interface element shouldn't be closed forever. This is usefull for context sensitive ui elements which must be visible whenever their context is active. This property is only used by toolbars or floating window user interface elements.</desc>
</info>
<value>false</value>
</prop>
- <prop oor:name="ContextActive" oor:type="xs:boolean">
+ <prop oor:name="ContextActive" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies if a context sensitive user interface element is currently bound to its context. This property can be used to disable context sensitivity without losing the information that a user interface element is normally context sensitive.</desc>
</info>
diff --git a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
index bacae25fccb8..39c1b87d67c2 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
@@ -367,7 +367,7 @@
<label>Data table or query name</label>
</info>
</prop>
- <prop oor:name="DataCommandType" oor:type="xs:short">
+ <prop oor:name="DataCommandType" oor:type="xs:short" oor:nillable="false">
<info>
<author>OS</author>
<desc>CommandType of the data source.</desc>
@@ -750,7 +750,7 @@
<info>
<desc>Contains the most recently opened documents.</desc>
</info>
- <prop oor:name="Paths" oor:type="oor:string-list">
+ <prop oor:name="Paths" oor:type="oor:string-list" oor:nillable="false">
<info>
<desc>Lists the file global templates loaded when importing writer documents.</desc>
</info>
@@ -761,7 +761,7 @@
<info>
<desc>Settings of the mail merge wizard.</desc>
</info>
- <prop oor:name="OutputToLetter" oor:type="xs:boolean">
+ <prop oor:name="OutputToLetter" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>OS</author>
<desc>Determines whether the document output is a letter, not an e-mail.</desc>
@@ -769,7 +769,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IncludeCountry" oor:type="xs:boolean">
+ <prop oor:name="IncludeCountry" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>OS</author>
<desc>Determines whether the country/region is included into the address block. If yes the ExcludeCountry property may never be included.</desc>
@@ -777,7 +777,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ExcludeCountry" oor:type="xs:string">
+ <prop oor:name="ExcludeCountry" oor:type="xs:string" oor:nillable="false">
<info>
<author>OS</author>
<desc>If the property IncludeCountry is true it all countries/regions are included into the address block except for this country or region.</desc>
@@ -793,7 +793,7 @@
<label>Saved documents</label>
</info>
</prop>
- <prop oor:name="AddressBlockSettings" oor:type="oor:string-list">
+ <prop oor:name="AddressBlockSettings" oor:type="oor:string-list" oor:nillable="false">
<info>
<author>OS</author>
<desc>Contains a list of settings for address blocks. It is a sequence of address column positions separated with breaks (\n) and spaces. The column positions start at 0 and after 9 follows a, b, c and they are equivalent to the following parts of an address: TITLE,FIRSTNAME,LASTNAME,COMPANY,ADDRESS_1,ADDRESS_2,CITY,REGION,ZIP,COUNTRY,PHONE_PRIVATE,PHONE_BUSINESS,E_MAIL</desc>
@@ -802,7 +802,7 @@
<value oor:separator=";">&lt;0&gt;\n&lt;1&gt; &lt;2&gt;\n&lt;4&gt;\n&lt;8&gt; &lt;6&gt;;&lt;0&gt;\n&lt;1&gt; &lt;2&gt;\n&lt;4&gt;\n&lt;8&gt; &lt;6&gt;\n&lt;9&gt;;&lt;3&gt;\n&lt;1&gt; &lt;2&gt;\n&lt;4&gt;\n&lt;8&gt; &lt;6&gt;;&lt;3&gt;\n&lt;1&gt; &lt;2&gt;\n&lt;4&gt;\n&lt;8&gt; &lt;6&gt;\n&lt;9&gt;</value>
</prop>
- <prop oor:name="IsAddressBlock" oor:type="xs:boolean">
+ <prop oor:name="IsAddressBlock" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>OS</author>
<desc>Determines whether the document should have an address block.</desc>
@@ -810,7 +810,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="CurrentAddressBlock" oor:type="xs:int">
+ <prop oor:name="CurrentAddressBlock" oor:type="xs:int" oor:nillable="false">
<info>
<author>OS</author>
<desc>Determines the currently used address block.</desc>
@@ -818,7 +818,7 @@
</info>
<value>0</value>
</prop>
- <prop oor:name="IsHideEmptyParagraphs" oor:type="xs:boolean">
+ <prop oor:name="IsHideEmptyParagraphs" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>OS</author>
<desc>Determines whether address block lines should be hidden if there's no content.</desc>
@@ -826,7 +826,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="IsGreetingLine" oor:type="xs:boolean">
+ <prop oor:name="IsGreetingLine" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>OS</author>
<desc>Determines whether the document should have a greeting line.</desc>
@@ -834,7 +834,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsEMailGreetingLine" oor:type="xs:boolean">
+ <prop oor:name="IsEMailGreetingLine" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>OS</author>
<desc>Determines whether an e-mail should have a greeting line.</desc>
@@ -842,7 +842,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsIndividualGreetingLine" oor:type="xs:boolean">
+ <prop oor:name="IsIndividualGreetingLine" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>OS</author>
<desc>Determines whether an individual greeting line is used instead of a neutral one.</desc>
@@ -850,7 +850,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsEMailIndividualGreetingLine" oor:type="xs:boolean">
+ <prop oor:name="IsEMailIndividualGreetingLine" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>OS</author>
<desc>Determines whether in an e-mail an individual greeting line is used instead of a neutral one.</desc>
@@ -1055,7 +1055,7 @@
<info>
<desc>Contains settings for the visibility of various elements.</desc>
</info>
- <prop oor:name="GraphicObject" oor:type="xs:boolean">
+ <prop oor:name="GraphicObject" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Contents/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Contents - [Section] Display -->
@@ -1066,7 +1066,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Table" oor:type="xs:boolean">
+ <prop oor:name="Table" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Contents/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Contents - [Section] Display -->
@@ -1077,7 +1077,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="DrawingControl" oor:type="xs:boolean">
+ <prop oor:name="DrawingControl" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Contents/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Contents - [Section] Display -->
@@ -1088,7 +1088,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="FieldCode" oor:type="xs:boolean">
+ <prop oor:name="FieldCode" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Contents/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Contents - [Section] Display -->
@@ -1099,7 +1099,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Note" oor:type="xs:boolean">
+ <prop oor:name="Note" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Contents/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Contents - [Section] Display -->
@@ -1110,7 +1110,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="PreventTips" oor:type="xs:boolean">
+ <prop oor:name="PreventTips" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: Not accessible via user interface -->
<info>
<author>OS</author>
@@ -1124,7 +1124,7 @@
<info>
<desc>Contains settings for the visibility of various non-printing characters.</desc>
</info>
- <prop oor:name="MetaCharacters" oor:type="xs:boolean">
+ <prop oor:name="MetaCharacters" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: View - Nonprinting Characters -->
<info>
<author>OS</author>
@@ -1133,7 +1133,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ParagraphEnd" oor:type="xs:boolean">
+ <prop oor:name="ParagraphEnd" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Contents/Nonprinting_characters -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document Contents - [Section] Nonprinting Characters -->
@@ -1144,7 +1144,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="OptionalHyphen" oor:type="xs:boolean">
+ <prop oor:name="OptionalHyphen" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Contents/Nonprinting_characters -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document Contents - [Section] Nonprinting Characters -->
@@ -1155,7 +1155,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Space" oor:type="xs:boolean">
+ <prop oor:name="Space" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Contents/Nonprinting_characters -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document Contents - [Section] Nonprinting Characters -->
@@ -1166,7 +1166,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ProtectedSpace" oor:type="xs:boolean">
+ <prop oor:name="ProtectedSpace" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Contents/Nonprinting_characters -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document Contents - [Section] Nonprinting Characters -->
@@ -1177,7 +1177,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Tab" oor:type="xs:boolean">
+ <prop oor:name="Tab" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Contents/Nonprinting_characters -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document Contents - [Section] Nonprinting Characters -->
@@ -1188,7 +1188,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Break" oor:type="xs:boolean">
+ <prop oor:name="Break" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Contents/Nonprinting_characters -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document Contents - [Section] Nonprinting Characters -->
@@ -1199,7 +1199,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="HiddenText" oor:type="xs:boolean">
+ <prop oor:name="HiddenText" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Contents/Nonprinting_characters -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document Contents - [Section] Nonprinting Characters -->
@@ -1210,7 +1210,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="HiddenParagraph" oor:type="xs:boolean">
+ <prop oor:name="HiddenParagraph" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Contents/Nonprinting_characters -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document Contents - [Section] Nonprinting Characters -->
@@ -1221,7 +1221,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="HiddenCharacter" oor:type="xs:boolean">
+ <prop oor:name="HiddenCharacter" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: Tools - Options - Text document Formatting aids - [Section] Display of -->
<info>
<author>OS</author>
@@ -1235,7 +1235,7 @@
<info>
<desc>Contains settings for the automatic update of some elements.</desc>
</info>
- <prop oor:name="Link" oor:type="xs:int">
+ <prop oor:name="Link" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Other/Update -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Other - [Section] Update links -->
@@ -1263,7 +1263,7 @@
</constraints>
<value>1</value>
</prop>
- <prop oor:name="Field" oor:type="xs:boolean">
+ <prop oor:name="Field" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Other/Update -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Other - [Section] Fields and charts -->
@@ -1274,7 +1274,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Chart" oor:type="xs:boolean">
+ <prop oor:name="Chart" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Other/Update -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Other - [Section] Fields and charts -->
@@ -1295,7 +1295,7 @@
<info>
<desc>Contains settings for guiding lines or points (for example when selecting/moving an object or frame).</desc>
</info>
- <prop oor:name="Guide" oor:type="xs:boolean">
+ <prop oor:name="Guide" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Layout/Lines -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Layout - [Section] Lines -->
@@ -1306,7 +1306,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="SimpleControlPoint" oor:type="xs:boolean">
+ <prop oor:name="SimpleControlPoint" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Layout/Lines -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Layout - [Section] Lines -->
@@ -1317,7 +1317,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="LargeControlPoint" oor:type="xs:boolean">
+ <prop oor:name="LargeControlPoint" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Layout/Lines -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Layout - [Section] Lines -->
@@ -1333,7 +1333,7 @@
<info>
<desc>Contains various window settings such as scrollbars, rules, etc.</desc>
</info>
- <prop oor:name="HorizontalScroll" oor:type="xs:boolean">
+ <prop oor:name="HorizontalScroll" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Layout/Window -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Layout - [Section] Window -->
@@ -1344,7 +1344,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="VerticalScroll" oor:type="xs:boolean">
+ <prop oor:name="VerticalScroll" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Layout/Window -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Layout - [Section] Window -->
@@ -1355,7 +1355,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ShowRulers" oor:type="xs:boolean">
+ <prop oor:name="ShowRulers" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: Tools - Options - Text document - View - [Section] View -->
<info>
<author>OS</author>
@@ -1364,7 +1364,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="HorizontalRuler" oor:type="xs:boolean">
+ <prop oor:name="HorizontalRuler" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Layout/Window -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Layout - [Section] Window -->
@@ -1431,7 +1431,7 @@
</enumeration>
</constraints>
</prop>
- <prop oor:name="VerticalRuler" oor:type="xs:boolean">
+ <prop oor:name="VerticalRuler" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Layout/Window -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Layout - [Section] Window -->
@@ -1442,7 +1442,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="IsVerticalRulerRight" oor:type="xs:boolean">
+ <prop oor:name="IsVerticalRulerRight" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: Tools - Options - Text document - Layout - [Section] Window -->
<info>
<author>OS</author>
@@ -1507,7 +1507,7 @@
</enumeration>
</constraints>
</prop>
- <prop oor:name="SmoothScroll" oor:type="xs:boolean">
+ <prop oor:name="SmoothScroll" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Layout/Window -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Layout - [Section] Window -->
@@ -1523,7 +1523,7 @@
<info>
<desc>Contains miscellaneous settings.</desc>
</info>
- <prop oor:name="IsAlignMathObjectsToBaseline" oor:type="xs:boolean">
+ <prop oor:name="IsAlignMathObjectsToBaseline" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: none yet -->
<info>
<author>TL</author>
@@ -1589,7 +1589,7 @@
</enumeration>
</constraints>
</prop>
- <prop oor:name="TabStop" oor:type="xs:int">
+ <prop oor:name="TabStop" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Layout -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Layout - [Section] Tab stops -->
@@ -1601,7 +1601,7 @@
</info>
<value>1250</value>
</prop>
- <prop oor:name="IsSquaredPageMode" oor:type="xs:boolean">
+ <prop oor:name="IsSquaredPageMode" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specified which kind of paper mode is used in the whole document </desc>
<label>Use squared paper mode</label>
@@ -1609,7 +1609,7 @@
<value>true</value>
</prop>
<!-- added for apply char unit 2006-12-1 -->
- <prop oor:name="ApplyCharUnit" oor:type="xs:boolean">
+ <prop oor:name="ApplyCharUnit" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Layout -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Layout - [Section] Apply char unit -->
@@ -1625,7 +1625,7 @@
<info>
<desc>Contains zoom settings.</desc>
</info>
- <prop oor:name="Type" oor:type="xs:int">
+ <prop oor:name="Type" oor:type="xs:int" oor:nillable="false">
<!-- UIHints: (Status Bar) -->
<info>
<author>OS</author>
@@ -1651,7 +1651,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="Value" oor:type="xs:int">
+ <prop oor:name="Value" oor:type="xs:int" oor:nillable="false">
<!-- UIHints: (Status Bar) -->
<info>
<author>OS</author>
@@ -1665,7 +1665,7 @@
<info>
<desc>Contains view layout settings.</desc>
</info>
- <prop oor:name="Columns" oor:type="xs:int">
+ <prop oor:name="Columns" oor:type="xs:int" oor:nillable="false">
<!-- UIHints: (Status Bar) -->
<info>
<author>FME</author>
@@ -1674,7 +1674,7 @@
</info>
<value>0</value>
</prop>
- <prop oor:name="BookMode" oor:type="xs:boolean">
+ <prop oor:name="BookMode" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: (Status Bar) -->
<info>
<author>FME</author>
@@ -1693,7 +1693,7 @@
<info>
<desc>Contains options for the grid.</desc>
</info>
- <prop oor:name="SnapToGrid" oor:type="xs:boolean">
+ <prop oor:name="SnapToGrid" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Grid/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document Grid - [Section] Options -->
@@ -1704,7 +1704,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="VisibleGrid" oor:type="xs:boolean">
+ <prop oor:name="VisibleGrid" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Grid/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document Grid - [Section] Options -->
@@ -1715,7 +1715,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Synchronize" oor:type="xs:boolean">
+ <prop oor:name="Synchronize" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Grid/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document Grid - [Section] Options -->
@@ -1731,7 +1731,7 @@
<info>
<desc>Contains settings for specifying the grid resolution.</desc>
</info>
- <prop oor:name="XAxis" oor:type="xs:int">
+ <prop oor:name="XAxis" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Grid/Resolution -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Grid - [Section] Grid -->
@@ -1742,7 +1742,7 @@
</info>
<value>1000</value>
</prop>
- <prop oor:name="YAxis" oor:type="xs:int">
+ <prop oor:name="YAxis" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Grid/Resolution -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Grid - [Section] Grid -->
@@ -1758,7 +1758,7 @@
<info>
<desc>Contains settings for specifying the subdivision of the grid.</desc>
</info>
- <prop oor:name="XAxis" oor:type="xs:int">
+ <prop oor:name="XAxis" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Grid/Subdivision -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Grid - [Section] Grid -->
@@ -1769,7 +1769,7 @@
</info>
<value>1</value>
</prop>
- <prop oor:name="YAxis" oor:type="xs:int">
+ <prop oor:name="YAxis" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Grid/Subdivision -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Grid - [Section] Grid -->
@@ -1876,7 +1876,7 @@
<label>IndexHeight</label>
</info>
</prop>
- <prop oor:name="Document" oor:type="xs:boolean">
+ <prop oor:name="Document" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Default_Fonts -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document Default Fonts -->
@@ -1972,7 +1972,7 @@
<label>IndexHeight</label>
</info>
</prop>
- <prop oor:name="Document" oor:type="xs:boolean">
+ <prop oor:name="Document" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: Tools - Options - Text document Default Fonts (Asian)-->
<info>
<author>OS</author>
@@ -2066,7 +2066,7 @@
<label>IndexHeight</label>
</info>
</prop>
- <prop oor:name="Document" oor:type="xs:boolean">
+ <prop oor:name="Document" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: Tools - Options - Text document Default Fonts (CTL)-->
<info>
<author>OS</author>
@@ -2084,7 +2084,7 @@
<info>
<desc>Contains settings specifying which content types are printed.</desc>
</info>
- <prop oor:name="Graphic" oor:type="xs:boolean">
+ <prop oor:name="Graphic" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Print/Contents -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Print - [Section] Contents -->
@@ -2095,7 +2095,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Table" oor:type="xs:boolean">
+ <prop oor:name="Table" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Print/Contents -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Print - [Section] Contents -->
@@ -2106,7 +2106,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Drawing" oor:type="xs:boolean">
+ <prop oor:name="Drawing" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Print/Contents -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Print - [Section] Contents -->
@@ -2117,7 +2117,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Control" oor:type="xs:boolean">
+ <prop oor:name="Control" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Print/Contents -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Print - [Section] Contents -->
@@ -2128,7 +2128,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Background" oor:type="xs:boolean">
+ <prop oor:name="Background" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Print/Contents -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Print - [Section] Contents -->
@@ -2139,7 +2139,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="PrintBlack" oor:type="xs:boolean">
+ <prop oor:name="PrintBlack" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Print/Contents -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Print - [Section] Contents -->
@@ -2150,7 +2150,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="PrintHiddenText" oor:type="xs:boolean">
+ <prop oor:name="PrintHiddenText" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: Tools - Option - Text-Document - Print - [Section] Contents -->
<info>
<author>OS</author>
@@ -2159,7 +2159,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="PrintPlaceholders" oor:type="xs:boolean">
+ <prop oor:name="PrintPlaceholders" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: Tools - Option - Text-Document - Print - [Section] Contents -->
<info>
<author>OS</author>
@@ -2168,7 +2168,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Note" oor:type="xs:int">
+ <prop oor:name="Note" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Print - [Section] Notes -->
@@ -2205,7 +2205,7 @@
<info>
<desc>Specifies which pages are printed or how pages are printed.</desc>
</info>
- <prop oor:name="LeftPage" oor:type="xs:boolean">
+ <prop oor:name="LeftPage" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Print/Pages -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Print - [Section] Pages -->
@@ -2216,7 +2216,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="RightPage" oor:type="xs:boolean">
+ <prop oor:name="RightPage" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Print/Pages -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Print - [Section] Pages -->
@@ -2227,7 +2227,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Reversed" oor:type="xs:boolean">
+ <prop oor:name="Reversed" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Print/Pages -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Print - [Section] Pages -->
@@ -2238,7 +2238,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Brochure" oor:type="xs:boolean">
+ <prop oor:name="Brochure" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Print/Pages -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Print - [Section] Pages -->
@@ -2249,7 +2249,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="BrochureRightToLeft" oor:type="xs:boolean">
+ <prop oor:name="BrochureRightToLeft" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Print/Pages -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Print - [Section] Pages -->
@@ -2265,7 +2265,7 @@
<info>
<desc>Contains other output settings.</desc>
</info>
- <prop oor:name="SinglePrintJob" oor:type="xs:boolean">
+ <prop oor:name="SinglePrintJob" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Print/Output -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Print - [Section] Output -->
@@ -2276,7 +2276,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Fax" oor:type="xs:string">
+ <prop oor:name="Fax" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Writer/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document Print - [Section] Fax -->
@@ -2293,7 +2293,7 @@
<info>
<desc>Contains settings for printers with multiple paper trays.</desc>
</info>
- <prop oor:name="FromPrinterSetup" oor:type="xs:boolean">
+ <prop oor:name="FromPrinterSetup" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Print/Papertray -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Print - [Section] Paper tray -->
@@ -2305,7 +2305,7 @@
<value>false</value>
</prop>
</group>
- <prop oor:name="EmptyPages" oor:type="xs:boolean">
+ <prop oor:name="EmptyPages" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: Tools - Options - Text document - Print - Other - Print automatically inserted blank pages -->
<info>
<author>FME</author>
@@ -2324,7 +2324,7 @@
<info>
<desc>Contains settings used when shifting table rows/columns.</desc>
</info>
- <prop oor:name="Row" oor:type="xs:int">
+ <prop oor:name="Row" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Table/Shift -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Table - [Section] Shift -->
@@ -2336,7 +2336,7 @@
</info>
<value>500</value>
</prop>
- <prop oor:name="Column" oor:type="xs:int">
+ <prop oor:name="Column" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Table/Shift -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Table - [Section] Shift -->
@@ -2353,7 +2353,7 @@
<info>
<desc>Contains settings used when inserting table rows/columns.</desc>
</info>
- <prop oor:name="Row" oor:type="xs:int">
+ <prop oor:name="Row" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Table/Insert -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Table - [Section] Insert -->
@@ -2365,7 +2365,7 @@
</info>
<value>500</value>
</prop>
- <prop oor:name="Column" oor:type="xs:int">
+ <prop oor:name="Column" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Table/Insert -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Table - [Section] Insert -->
@@ -2382,7 +2382,7 @@
<info>
<desc>Contains settings specifying the effect to the table when modifying rows/columns.</desc>
</info>
- <prop oor:name="Effect" oor:type="xs:int">
+ <prop oor:name="Effect" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Table -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Table - [Section] Effect -->
@@ -2414,7 +2414,7 @@
<info>
<desc>Contains settings used when inputting text or data in tables.</desc>
</info>
- <prop oor:name="NumberRecognition" oor:type="xs:boolean">
+ <prop oor:name="NumberRecognition" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Insert/IntoTables -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Insert - [Section] Insert into tables -->
@@ -2425,7 +2425,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="NumberFormatRecognition" oor:type="xs:boolean">
+ <prop oor:name="NumberFormatRecognition" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Insert/IntoTables -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Insert - [Section] Insert into tables -->
@@ -2436,7 +2436,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Alignment" oor:type="xs:boolean">
+ <prop oor:name="Alignment" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Insert/IntoTables -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Insert - [Section] Insert into tables -->
@@ -2457,7 +2457,7 @@
<info>
<desc>Contains settings for the Direct Cursor.</desc>
</info>
- <prop oor:name="UseDirectCursor" oor:type="xs:boolean">
+ <prop oor:name="UseDirectCursor" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Cursor/DirectCursor -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Cursor - [Section] Direct Cursor -->
@@ -2468,7 +2468,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Insert" oor:type="xs:int">
+ <prop oor:name="Insert" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Cursor/DirectCursor -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Cursor - [Section] Direct Cursor -->
@@ -2506,7 +2506,7 @@
<info>
<desc>Contains miscellaneous options.</desc>
</info>
- <prop oor:name="ProtectedArea" oor:type="xs:boolean">
+ <prop oor:name="ProtectedArea" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Cursor/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Cursor - [Section] Options -->
@@ -2531,7 +2531,7 @@
<info>
<desc>Contains settings for new inserted text.</desc>
</info>
- <prop oor:name="Attribute" oor:type="xs:int">
+ <prop oor:name="Attribute" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Changes/Text display/Insert -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Changes - [Section] Text display -->
@@ -2593,7 +2593,7 @@
</constraints>
<value>3</value>
</prop>
- <prop oor:name="Color" oor:type="xs:int">
+ <prop oor:name="Color" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Changes/Text display/Insert -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Changes - [Section] Text display -->
@@ -2609,7 +2609,7 @@
<info>
<desc>Contains settings for displaying changes when text is deleted.</desc>
</info>
- <prop oor:name="Attribute" oor:type="xs:int">
+ <prop oor:name="Attribute" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Changes/Text display/Delete -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Changes - [Section] Text display -->
@@ -2666,7 +2666,7 @@
</constraints>
<value>3</value>
</prop>
- <prop oor:name="Color" oor:type="xs:int">
+ <prop oor:name="Color" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Changes/Text display/Delete -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Changes - [Section] Text display -->
@@ -2682,7 +2682,7 @@
<info>
<desc>Contains settings for displaying modified text attributes.</desc>
</info>
- <prop oor:name="Attribute" oor:type="xs:int">
+ <prop oor:name="Attribute" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Changes/Text display/Changed_Attribute -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Changes - [Section] Text display -->
@@ -2744,7 +2744,7 @@
</constraints>
<value>1</value>
</prop>
- <prop oor:name="Color" oor:type="xs:int">
+ <prop oor:name="Color" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Changes/Text display/Changed_Attribute -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Changes - [Section] Text display -->
@@ -2761,7 +2761,7 @@
<info>
<desc>Contains settings for defining how lines with changed text are displayed.</desc>
</info>
- <prop oor:name="Mark" oor:type="xs:int">
+ <prop oor:name="Mark" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Changes/Lines_changed -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Changes - [Section] Lines changed -->
@@ -2798,7 +2798,7 @@
</constraints>
<value>3</value>
</prop>
- <prop oor:name="Color" oor:type="xs:int">
+ <prop oor:name="Color" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Changes//Lines_changed -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Changes - [Section] Lines changed -->
@@ -2858,7 +2858,7 @@
<label>Caption order: Numbering first</label>
</info>
</prop>
- <prop oor:name="Automatic" oor:type="xs:boolean">
+ <prop oor:name="Automatic" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies how tables, graphics, frames and Office documents, which have been inserted as OLE objects, are labeled</desc>
<label>Automatic</label>
@@ -2874,7 +2874,7 @@
<info>
<desc>Specifies the settings for inserting captions for tables.</desc>
</info>
- <prop oor:name="Enable" oor:type="xs:boolean">
+ <prop oor:name="Enable" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Determines if the caption settings are valid for a table in a text document.</desc>
<label>Writer Table</label>
@@ -2891,7 +2891,7 @@
<label>Category</label>
</info>
</prop>
- <prop oor:name="Numbering" oor:type="xs:int">
+ <prop oor:name="Numbering" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the numbering of the caption field.</desc>
<label>Numbering</label>
@@ -2935,7 +2935,7 @@
</constraints>
<value>4</value>
</prop>
- <prop oor:name="NumberingSeparator" oor:type="xs:string" oor:localized="true">
+ <prop oor:name="NumberingSeparator" oor:type="xs:string" oor:localized="true" oor:nillable="false">
<info>
<desc>In case the order of the caption is set to 'Numbering first' then this property contains the separator between the number and the category.</desc>
<label>Numbering separator</label>
@@ -2949,7 +2949,7 @@
</info>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="Position" oor:type="xs:int">
+ <prop oor:name="Position" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the position of the caption field.</desc>
<label>Position</label>
@@ -2968,7 +2968,7 @@
</constraints>
<value>1</value>
</prop>
- <prop oor:name="Level" oor:type="xs:int">
+ <prop oor:name="Level" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the headings or chapter levels where the numbering starts in the document</desc>
<label>Level</label>
@@ -2987,7 +2987,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="Delimiter" oor:type="xs:string">
+ <prop oor:name="Delimiter" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the character that appears directly after the number of the heading or chapter level.</desc>
<label>Separator</label>
@@ -3007,7 +3007,7 @@
<info>
<desc>Specifies the settings for inserting captions for frames.</desc>
</info>
- <prop oor:name="Enable" oor:type="xs:boolean">
+ <prop oor:name="Enable" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Determines if the caption settings are valid for a frame in a text document.</desc>
<label>Writer Frame</label>
@@ -3024,7 +3024,7 @@
<label>Category</label>
</info>
</prop>
- <prop oor:name="Numbering" oor:type="xs:int">
+ <prop oor:name="Numbering" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the numbering of the caption field.</desc>
<label>Numbering</label>
@@ -3068,7 +3068,7 @@
</constraints>
<value>4</value>
</prop>
- <prop oor:name="NumberingSeparator" oor:type="xs:string" oor:localized="true">
+ <prop oor:name="NumberingSeparator" oor:type="xs:string" oor:localized="true" oor:nillable="false">
<info>
<desc>In case the order of the caption is set to 'Numbering first' then this property contains the separator between the number and the category.</desc>
<label>Numbering separator</label>
@@ -3081,7 +3081,7 @@
<label>CaptionText</label>
</info>
</prop>
- <prop oor:name="Position" oor:type="xs:int">
+ <prop oor:name="Position" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the position of the caption field.</desc>
<label>Position</label>
@@ -3100,7 +3100,7 @@
</constraints>
<value>1</value>
</prop>
- <prop oor:name="Level" oor:type="xs:int">
+ <prop oor:name="Level" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the headings or chapter levels where the numbering starts in the document.</desc>
<label>Level</label>
@@ -3119,7 +3119,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="Delimiter" oor:type="xs:string">
+ <prop oor:name="Delimiter" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the character that appears directly after the number of the heading or chapter level.</desc>
<label>Separator</label>
@@ -3139,7 +3139,7 @@
<info>
<desc>Settings for insertion of captions for graphics.</desc>
</info>
- <prop oor:name="Enable" oor:type="xs:boolean">
+ <prop oor:name="Enable" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Determines if the caption settings are valid for a graphic in a text document.</desc>
<label>Writer Graphic</label>
@@ -3156,7 +3156,7 @@
<label>Category</label>
</info>
</prop>
- <prop oor:name="Numbering" oor:type="xs:int">
+ <prop oor:name="Numbering" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the numbering of the caption field.</desc>
<label>Numbering</label>
@@ -3200,7 +3200,7 @@
</constraints>
<value>4</value>
</prop>
- <prop oor:name="NumberingSeparator" oor:type="xs:string" oor:localized="true">
+ <prop oor:name="NumberingSeparator" oor:type="xs:string" oor:localized="true" oor:nillable="false">
<info>
<desc>In case the order of the caption is set to 'Numbering first' then this property contains the separator between the number and the category.</desc>
<label>Numbering separator</label>
@@ -3213,7 +3213,7 @@
<label>CaptionText</label>
</info>
</prop>
- <prop oor:name="Level" oor:type="xs:int">
+ <prop oor:name="Level" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the headings or chapter levels where the numbering starts in the document.</desc>
<label>Level</label>
@@ -3232,14 +3232,14 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="Delimiter" oor:type="xs:string">
+ <prop oor:name="Delimiter" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the character that appears directly after the number of the heading or chapter level.</desc>
<label>Separator</label>
</info>
<value>.</value>
</prop>
- <prop oor:name="Position" oor:type="xs:int">
+ <prop oor:name="Position" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the position of the caption field.</desc>
<label>Position</label>
@@ -3282,7 +3282,7 @@
<info>
<desc>Specifies the settings for inserting captions for Calc documents.</desc>
</info>
- <prop oor:name="Enable" oor:type="xs:boolean">
+ <prop oor:name="Enable" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Determines if the caption settings are valid for a Spreadsheet object.</desc>
<label>Spreadsheet</label>
@@ -3299,7 +3299,7 @@
<label>Category</label>
</info>
</prop>
- <prop oor:name="Numbering" oor:type="xs:int">
+ <prop oor:name="Numbering" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the numbering of the caption field.</desc>
<label>Numbering</label>
@@ -3343,7 +3343,7 @@
</constraints>
<value>4</value>
</prop>
- <prop oor:name="NumberingSeparator" oor:type="xs:string" oor:localized="true">
+ <prop oor:name="NumberingSeparator" oor:type="xs:string" oor:localized="true" oor:nillable="false">
<info>
<desc>In case the order of the caption is set to 'Numbering first' then this property contains the separator between the number and the category.</desc>
<label>Numbering separator</label>
@@ -3356,7 +3356,7 @@
<label>CaptionText</label>
</info>
</prop>
- <prop oor:name="Position" oor:type="xs:int">
+ <prop oor:name="Position" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the position of the caption field.</desc>
<label>Position</label>
@@ -3375,7 +3375,7 @@
</constraints>
<value>1</value>
</prop>
- <prop oor:name="Level" oor:type="xs:int">
+ <prop oor:name="Level" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the headings or chapter levels where the numbering starts in the document.</desc>
<label>Level</label>
@@ -3394,7 +3394,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="Delimiter" oor:type="xs:string">
+ <prop oor:name="Delimiter" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the character that appears directly after the number of the heading or chapter level.</desc>
<label>Separator</label>
@@ -3420,7 +3420,7 @@
<info>
<desc>Specifies the settings for inserting captions for Draw documents.</desc>
</info>
- <prop oor:name="Enable" oor:type="xs:boolean">
+ <prop oor:name="Enable" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Determines if the caption settings are valid for a Drawing object.</desc>
<label>Drawing</label>
@@ -3437,7 +3437,7 @@
<label>Category</label>
</info>
</prop>
- <prop oor:name="Numbering" oor:type="xs:int">
+ <prop oor:name="Numbering" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the numbering of the caption field.</desc>
<label>Numbering</label>
@@ -3481,7 +3481,7 @@
</constraints>
<value>4</value>
</prop>
- <prop oor:name="NumberingSeparator" oor:type="xs:string" oor:localized="true">
+ <prop oor:name="NumberingSeparator" oor:type="xs:string" oor:localized="true" oor:nillable="false">
<info>
<desc>In case the order of the caption is set to 'Numbering first' then this property contains the separator between the number and the category.</desc>
<label>Numbering separator</label>
@@ -3494,7 +3494,7 @@
<label>CaptionText</label>
</info>
</prop>
- <prop oor:name="Position" oor:type="xs:int">
+ <prop oor:name="Position" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the position of the caption field.</desc>
<label>Position</label>
@@ -3513,7 +3513,7 @@
</constraints>
<value>1</value>
</prop>
- <prop oor:name="Level" oor:type="xs:int">
+ <prop oor:name="Level" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the headings or chapter levels where the numbering starts in the document.</desc>
<label>Level</label>
@@ -3532,7 +3532,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="Delimiter" oor:type="xs:string">
+ <prop oor:name="Delimiter" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the character that appears directly after the number of the heading or chapter level.</desc>
<label>Separator</label>
@@ -3558,7 +3558,7 @@
<info>
<desc>Specifies the settings for inserting captions for Chart documents.</desc>
</info>
- <prop oor:name="Enable" oor:type="xs:boolean">
+ <prop oor:name="Enable" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Determines if the caption settings are valid for a Chart object.</desc>
<label>Chart</label>
@@ -3575,7 +3575,7 @@
<label>Category</label>
</info>
</prop>
- <prop oor:name="Numbering" oor:type="xs:int">
+ <prop oor:name="Numbering" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the numbering of the caption field.</desc>
<label>Numbering</label>
@@ -3619,7 +3619,7 @@
</constraints>
<value>4</value>
</prop>
- <prop oor:name="NumberingSeparator" oor:type="xs:string" oor:localized="true">
+ <prop oor:name="NumberingSeparator" oor:type="xs:string" oor:localized="true" oor:nillable="false">
<info>
<desc>In case the order of the caption is set to 'Numbering first' then this property contains the separator between the number and the category.</desc>
<label>Numbering separator</label>
@@ -3632,7 +3632,7 @@
<label>CaptionText</label>
</info>
</prop>
- <prop oor:name="Position" oor:type="xs:int">
+ <prop oor:name="Position" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the position of the caption field.</desc>
<label>Position</label>
@@ -3651,7 +3651,7 @@
</constraints>
<value>1</value>
</prop>
- <prop oor:name="Level" oor:type="xs:int">
+ <prop oor:name="Level" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the headings or chapter levels where the numbering starts in the document.</desc>
<label>Level</label>
@@ -3670,7 +3670,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="Delimiter" oor:type="xs:string">
+ <prop oor:name="Delimiter" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the character that appears directly after the number of the heading or chapter level.</desc>
<label>Separator</label>
@@ -3696,7 +3696,7 @@
<info>
<desc>Specifies the settings for inserting captions for Image documents.</desc>
</info>
- <prop oor:name="Enable" oor:type="xs:boolean">
+ <prop oor:name="Enable" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Determines if the caption settings are valid for an Image object.</desc>
<label>Image</label>
@@ -3713,7 +3713,7 @@
<label>Category</label>
</info>
</prop>
- <prop oor:name="Numbering" oor:type="xs:int">
+ <prop oor:name="Numbering" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the numbering of the caption field.</desc>
<label>Numbering</label>
@@ -3757,7 +3757,7 @@
</constraints>
<value>4</value>
</prop>
- <prop oor:name="NumberingSeparator" oor:type="xs:string" oor:localized="true">
+ <prop oor:name="NumberingSeparator" oor:type="xs:string" oor:localized="true" oor:nillable="false">
<info>
<desc>In case the order of the caption is set to 'Numbering first' then this property contains the separator between the number and the category.</desc>
<label>Numbering separator</label>
@@ -3770,7 +3770,7 @@
<label>CaptionText</label>
</info>
</prop>
- <prop oor:name="Position" oor:type="xs:int">
+ <prop oor:name="Position" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the position of the caption field.</desc>
<label>Position</label>
@@ -3789,7 +3789,7 @@
</constraints>
<value>1</value>
</prop>
- <prop oor:name="Level" oor:type="xs:int">
+ <prop oor:name="Level" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the feadings or chapter levels where the numbering starts in the document.</desc>
<label>Level</label>
@@ -3808,7 +3808,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="Delimiter" oor:type="xs:string">
+ <prop oor:name="Delimiter" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the character that appears directly after the number of the heading or chapter level.</desc>
<label>Separator</label>
@@ -3834,7 +3834,7 @@
<info>
<desc>Specifies the settings for inserting captions for formula documents.</desc>
</info>
- <prop oor:name="Enable" oor:type="xs:boolean">
+ <prop oor:name="Enable" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Determines if the caption settings are valid for a Formula object.</desc>
<label>Formula</label>
@@ -3851,7 +3851,7 @@
<label>Category</label>
</info>
</prop>
- <prop oor:name="Numbering" oor:type="xs:int">
+ <prop oor:name="Numbering" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the numbering of the caption field.</desc>
<label>Numbering</label>
@@ -3895,7 +3895,7 @@
</constraints>
<value>4</value>
</prop>
- <prop oor:name="NumberingSeparator" oor:type="xs:string" oor:localized="true">
+ <prop oor:name="NumberingSeparator" oor:type="xs:string" oor:localized="true" oor:nillable="false">
<info>
<desc>In case the order of the caption is set to 'Numbering first' then this property contains the separator between the number and the category.</desc>
<label>Numbering separator</label>
@@ -3908,7 +3908,7 @@
<label>CaptionText</label>
</info>
</prop>
- <prop oor:name="Position" oor:type="xs:int">
+ <prop oor:name="Position" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the position of the caption field.</desc>
<label>Position</label>
@@ -3927,7 +3927,7 @@
</constraints>
<value>1</value>
</prop>
- <prop oor:name="Level" oor:type="xs:int">
+ <prop oor:name="Level" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the headings or chapter levels where the numbering starts in the document.</desc>
<label>Level</label>
@@ -3946,7 +3946,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="Delimiter" oor:type="xs:string">
+ <prop oor:name="Delimiter" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the character that appears directly after the number of the heading or chapter level.</desc>
<label>Separator</label>
@@ -3972,7 +3972,7 @@
<info>
<desc>Specifies the settings for inserting captions for Impress objects.</desc>
</info>
- <prop oor:name="Enable" oor:type="xs:boolean">
+ <prop oor:name="Enable" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Determines if the caption settings are valid for a Presentation object.</desc>
<label>Presentation</label>
@@ -3989,7 +3989,7 @@
<label>Category</label>
</info>
</prop>
- <prop oor:name="Numbering" oor:type="xs:int">
+ <prop oor:name="Numbering" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the numbering of the caption field.</desc>
<label>Numbering</label>
@@ -4033,7 +4033,7 @@
</constraints>
<value>4</value>
</prop>
- <prop oor:name="NumberingSeparator" oor:type="xs:string" oor:localized="true">
+ <prop oor:name="NumberingSeparator" oor:type="xs:string" oor:localized="true" oor:nillable="false">
<info>
<desc>In case the order of the caption is set to 'Numbering first' then this property contains the separator between the number and the category.</desc>
<label>Numbering separator</label>
@@ -4046,7 +4046,7 @@
<label>CaptionText</label>
</info>
</prop>
- <prop oor:name="Position" oor:type="xs:int">
+ <prop oor:name="Position" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the position of the caption field.</desc>
<label>Position</label>
@@ -4065,7 +4065,7 @@
</constraints>
<value>1</value>
</prop>
- <prop oor:name="Level" oor:type="xs:int">
+ <prop oor:name="Level" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the headings or chapter levels where the numbering starts in the document.</desc>
<label>Level</label>
@@ -4084,7 +4084,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="Delimiter" oor:type="xs:string">
+ <prop oor:name="Delimiter" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the character that appears directly after the number of the heading or chapter level.</desc>
<label>Separator</label>
@@ -4110,7 +4110,7 @@
<info>
<desc>Specifies the settings for inserting captions for other OLE objects.</desc>
</info>
- <prop oor:name="Enable" oor:type="xs:boolean">
+ <prop oor:name="Enable" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Determines if the caption settings are valid for further OLE objects.</desc>
<label>Further OLE objects</label>
@@ -4127,7 +4127,7 @@
<label>Category</label>
</info>
</prop>
- <prop oor:name="Numbering" oor:type="xs:int">
+ <prop oor:name="Numbering" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the numbering of the caption field.</desc>
<label>Numbering</label>
@@ -4171,7 +4171,7 @@
</constraints>
<value>4</value>
</prop>
- <prop oor:name="NumberingSeparator" oor:type="xs:string" oor:localized="true">
+ <prop oor:name="NumberingSeparator" oor:type="xs:string" oor:localized="true" oor:nillable="false">
<info>
<desc>In case the order of the caption is set to 'Numbering first' then this property contains the separator between the number and the category.</desc>
<label>Numbering separator</label>
@@ -4184,7 +4184,7 @@
<label>CaptionText</label>
</info>
</prop>
- <prop oor:name="Position" oor:type="xs:int">
+ <prop oor:name="Position" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the position of the caption field.</desc>
<label>Position</label>
@@ -4203,7 +4203,7 @@
</constraints>
<value>1</value>
</prop>
- <prop oor:name="Level" oor:type="xs:int">
+ <prop oor:name="Level" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the headings or chapter levels where the numbering starts in the document</desc>
<label>Level</label>
@@ -4222,7 +4222,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="Delimiter" oor:type="xs:string">
+ <prop oor:name="Delimiter" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the character that appears directly after the number of the heading or chapter level.</desc>
<label>Separator</label>
@@ -4253,28 +4253,28 @@
<author>OS</author>
<desc>Specifies the default settings for tables to be inserted.</desc>
</info>
- <prop oor:name="Header" oor:type="xs:boolean">
+ <prop oor:name="Header" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies if the table has a header.</desc>
<label>Header</label>
</info>
<value>false</value>
</prop>
- <prop oor:name="RepeatHeader" oor:type="xs:boolean">
+ <prop oor:name="RepeatHeader" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies if the header in the new page is adopted when inserting a page break. This option is only available if Header = True.</desc>
<label>Repeat header</label>
</info>
<value>false</value>
</prop>
- <prop oor:name="Split" oor:type="xs:boolean">
+ <prop oor:name="Split" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies if tables can be split with a page break or not.</desc>
<label>Don&apos;t split</label>
</info>
<value>true</value>
</prop>
- <prop oor:name="Border" oor:type="xs:boolean">
+ <prop oor:name="Border" oor:type="xs:boolean" oor:nillable="false">
<info>
<desc>Specifies if table cells have a border by default.</desc>
<label>Border</label>
@@ -4291,7 +4291,7 @@
<info>
<desc>Contains settings for MS Word compatibility.</desc>
</info>
- <prop oor:name="AddBetween" oor:type="xs:boolean">
+ <prop oor:name="AddBetween" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Other/Compatibility -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Other - [Section] Compatibility -->
@@ -4302,7 +4302,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="AddToStart" oor:type="xs:boolean">
+ <prop oor:name="AddToStart" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Other/Compatibility -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Other - [Section] Compatibility -->
@@ -4323,7 +4323,7 @@
<info>
<desc>Specifies settings for &apos;Auto Text&apos;.</desc>
</info>
- <prop oor:name="FileLinks" oor:type="xs:boolean">
+ <prop oor:name="FileLinks" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Dialog/AutoText -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Edit AutoText Save Links relative -->
@@ -4334,7 +4334,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="InternetLinks" oor:type="xs:boolean">
+ <prop oor:name="InternetLinks" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Dialog/AutoText -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Edit AutoText Save Links relative -->
@@ -4345,7 +4345,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ShowPreview" oor:type="xs:boolean">
+ <prop oor:name="ShowPreview" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Dialog/AutoText -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Edit AutoText Show preview -->
@@ -4356,7 +4356,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ShowToolTip" oor:type="xs:boolean">
+ <prop oor:name="ShowToolTip" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Dialog/AutoText -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Edit AutoText display remainder ... -->
@@ -4367,7 +4367,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="SearchInAllCategories" oor:type="xs:boolean">
+ <prop oor:name="SearchInAllCategories" oor:type="xs:boolean" oor:nillable="false">
<!-- #b6633427# -->
<info>
<author>OS</author>
@@ -4385,7 +4385,7 @@
<info>
<desc>Specifies options for &apos;Auto Correct/Auto Format&apos;.</desc>
</info>
- <prop oor:name="UseReplacementTable" oor:type="xs:boolean">
+ <prop oor:name="UseReplacementTable" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options - Use replacement table -->
@@ -4396,7 +4396,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="TwoCapitalsAtStart" oor:type="xs:boolean">
+ <prop oor:name="TwoCapitalsAtStart" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options - Correct TWo INitial Capitals -->
@@ -4407,7 +4407,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="CapitalAtStartSentence" oor:type="xs:boolean">
+ <prop oor:name="CapitalAtStartSentence" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options - Capitalize first letter of every sentence -->
@@ -4418,7 +4418,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ChangeUnderlineWeight" oor:type="xs:boolean">
+ <prop oor:name="ChangeUnderlineWeight" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options - Automatic *bold* and _underline_ -->
@@ -4429,7 +4429,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="SetInetAttribute" oor:type="xs:boolean">
+ <prop oor:name="SetInetAttribute" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options - URL regocnition -->
@@ -4440,7 +4440,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ChangeOrdinalNumber" oor:type="xs:boolean">
+ <prop oor:name="ChangeOrdinalNumber" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options - Replace 1st... -->
@@ -4451,7 +4451,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ChangeDash" oor:type="xs:boolean">
+ <prop oor:name="ChangeDash" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options - Replace dashes -->
@@ -4462,7 +4462,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="AddNonBreakingSpace" oor:type="xs:boolean">
+ <prop oor:name="AddNonBreakingSpace" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options - Add non-breaking space -->
@@ -4473,7 +4473,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="DelEmptyParagraphs" oor:type="xs:boolean">
+ <prop oor:name="DelEmptyParagraphs" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options Remove blank paragraphs -->
@@ -4484,7 +4484,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ReplaceUserStyle" oor:type="xs:boolean">
+ <prop oor:name="ReplaceUserStyle" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options Replace custom styles -->
@@ -4495,7 +4495,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="CombineParagraphs" oor:type="xs:boolean">
+ <prop oor:name="CombineParagraphs" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options Combine single line paragraphs if length greater -->
@@ -4506,7 +4506,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="CombineValue" oor:type="xs:int">
+ <prop oor:name="CombineValue" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options Combine single line paragraphs if length greater... / Edit/Combine/Minimum size-->
@@ -4517,7 +4517,7 @@
</info>
<value>50</value>
</prop>
- <prop oor:name="DelSpacesAtStartEnd" oor:type="xs:boolean">
+ <prop oor:name="DelSpacesAtStartEnd" oor:type="xs:boolean" oor:nillable="false">
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect Options Delete Blanks and Tabs at paragraphbegin and -end -->
<info>
@@ -4527,7 +4527,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="DelSpacesBetween" oor:type="xs:boolean">
+ <prop oor:name="DelSpacesBetween" oor:type="xs:boolean" oor:nillable="false">
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect Options Delete Blanks and Tabs between Lineend and -begin -->
<info>
@@ -4541,7 +4541,7 @@
<info>
<desc>Specifies the settings for the automatic replacement of enumeration characters (dash, plus, and so on) into bullets.</desc>
</info>
- <prop oor:name="Enable" oor:type="xs:boolean">
+ <prop oor:name="Enable" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options Replace bullets with -->
@@ -4556,7 +4556,7 @@
<info>
<desc>Specifies the character to be used.</desc>
</info>
- <prop oor:name="Char" oor:type="xs:int">
+ <prop oor:name="Char" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options Replace bullets with -->
@@ -4566,7 +4566,7 @@
</info>
<value>8226</value>
</prop>
- <prop oor:name="Font" oor:type="xs:string">
+ <prop oor:name="Font" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options Replace bullets with -->
@@ -4576,7 +4576,7 @@
</info>
<value>StarSymbol</value>
</prop>
- <prop oor:name="FontFamily" oor:type="xs:int">
+ <prop oor:name="FontFamily" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options Replace bullets with -->
@@ -4587,7 +4587,7 @@
</info>
<value>0</value>
</prop>
- <prop oor:name="FontCharset" oor:type="xs:int">
+ <prop oor:name="FontCharset" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options Replace bullets with -->
@@ -4598,7 +4598,7 @@
</info>
<value>10</value>
</prop>
- <prop oor:name="FontPitch" oor:type="xs:int">
+ <prop oor:name="FontPitch" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options Replace bullets with -->
@@ -4616,7 +4616,7 @@
<info>
<desc>Contains settings than can be applied while typing text.</desc>
</info>
- <prop oor:name="Enable" oor:type="xs:boolean">
+ <prop oor:name="Enable" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: AutoCorrect/Options/All -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options - AutoFormat while typing -->
@@ -4627,7 +4627,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ChangeDash" oor:type="xs:boolean">
+ <prop oor:name="ChangeDash" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options - Replace dashes -->
@@ -4638,7 +4638,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ChangeToBorders" oor:type="xs:boolean">
+ <prop oor:name="ChangeToBorders" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/ByInput -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options Apply border -->
@@ -4649,7 +4649,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ChangeToTable" oor:type="xs:boolean">
+ <prop oor:name="ChangeToTable" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/ByInput -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options Create table -->
@@ -4660,7 +4660,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ReplaceStyle" oor:type="xs:boolean">
+ <prop oor:name="ReplaceStyle" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/ByInput -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options Apply styles -->
@@ -4671,7 +4671,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="DelSpacesAtStartEnd" oor:type="xs:boolean">
+ <prop oor:name="DelSpacesAtStartEnd" oor:type="xs:boolean" oor:nillable="false">
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect Options Delete Blanks and Tabs at paragraphbegin and -end -->
<info>
@@ -4681,7 +4681,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="DelSpacesBetween" oor:type="xs:boolean">
+ <prop oor:name="DelSpacesBetween" oor:type="xs:boolean" oor:nillable="false">
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect Options Delete Blanks and Tabs between Lineend and -begin -->
<info>
@@ -4695,7 +4695,7 @@
<info>
<desc>Contains settings for automatic numbering.</desc>
</info>
- <prop oor:name="Enable" oor:type="xs:boolean">
+ <prop oor:name="Enable" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/ByInput -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options Apply numbering-->
@@ -4710,7 +4710,7 @@
<info>
<desc>Defines the character to be used.</desc>
</info>
- <prop oor:name="Char" oor:type="xs:int">
+ <prop oor:name="Char" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options Apply numbering-->
@@ -4720,7 +4720,7 @@
</info>
<value>8226</value>
</prop>
- <prop oor:name="Font" oor:type="xs:string">
+ <prop oor:name="Font" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options Apply Numbering-->
@@ -4730,7 +4730,7 @@
</info>
<value>StarSymbol</value>
</prop>
- <prop oor:name="FontFamily" oor:type="xs:int">
+ <prop oor:name="FontFamily" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options Apply Numbering-->
@@ -4741,7 +4741,7 @@
</info>
<value>0</value>
</prop>
- <prop oor:name="FontCharset" oor:type="xs:int">
+ <prop oor:name="FontCharset" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options Apply Numbering-->
@@ -4752,7 +4752,7 @@
</info>
<value>10</value>
</prop>
- <prop oor:name="FontPitch" oor:type="xs:int">
+ <prop oor:name="FontPitch" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/AutoFormat/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat Options Apply Numbering-->
@@ -4771,7 +4771,7 @@
<info>
<desc>Contains settings relevant for the word completion (&apos;Auto Completion&apos;).</desc>
</info>
- <prop oor:name="Enable" oor:type="xs:boolean">
+ <prop oor:name="Enable" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/AutoComplete/Words -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat WordCompletion Show suggestions -->
@@ -4782,7 +4782,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="MinWordLen" oor:type="xs:int">
+ <prop oor:name="MinWordLen" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/AutoComplete/Words -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat WordCompletion min. word length -->
@@ -4793,7 +4793,7 @@
</info>
<value>10</value>
</prop>
- <prop oor:name="MaxListLen" oor:type="xs:int">
+ <prop oor:name="MaxListLen" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/AutoComplete/Words -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat WordCompletion max. entries -->
@@ -4804,7 +4804,7 @@
</info>
<value>500</value>
</prop>
- <prop oor:name="CollectWords" oor:type="xs:boolean">
+ <prop oor:name="CollectWords" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/AutoComplete/Words -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat WordCompletion Collect suggestions -->
@@ -4815,7 +4815,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="EndlessList" oor:type="xs:boolean">
+ <prop oor:name="EndlessList" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/AutoComplete/Words -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: no UI available anymore -->
@@ -4826,7 +4826,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="AppendBlank" oor:type="xs:boolean">
+ <prop oor:name="AppendBlank" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/AutoComplete/Words -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat WordCompletion Append blanc -->
@@ -4837,7 +4837,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ShowAsTip" oor:type="xs:boolean">
+ <prop oor:name="ShowAsTip" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/AutoComplete/Words -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat WordCompletion Show as tip -->
@@ -4848,7 +4848,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="AcceptKey" oor:type="xs:int">
+ <prop oor:name="AcceptKey" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/AutoComplete/Words -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools AutoCorrect/AutoFormat WordCompletion Accept with -->
@@ -4881,7 +4881,7 @@
</constraints>
<value>1280</value>
</prop>
- <prop oor:name="KeepList" oor:type="xs:boolean">
+ <prop oor:name="KeepList" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: Tools AutoCorrect/AutoFormat WordCompletion When closing a document, save the list for later use ... -->
<info>
<author>OS</author>
@@ -4900,7 +4900,7 @@
<info>
<desc>Contains settings for the inscription of the labels text field.</desc>
</info>
- <prop oor:name="UseAddress" oor:type="xs:boolean">
+ <prop oor:name="UseAddress" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Labels/Labels -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New Labels Labels -->
@@ -4911,7 +4911,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Address" oor:type="xs:string">
+ <prop oor:name="Address" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Labels/Labels -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New Labels Labels -->
@@ -4923,7 +4923,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="Database" oor:type="xs:string">
+ <prop oor:name="Database" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Labels/Labels -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New Labels Labels -->
@@ -4940,7 +4940,7 @@
<info>
<desc>Contains settings for the media type used for the label.</desc>
</info>
- <prop oor:name="Continous" oor:type="xs:boolean">
+ <prop oor:name="Continous" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Labels/Labels -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New Labels Labels -->
@@ -4951,7 +4951,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Brand" oor:type="xs:string">
+ <prop oor:name="Brand" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Labels/Labels -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New Labels Labels -->
@@ -4963,7 +4963,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="Type" oor:type="xs:string">
+ <prop oor:name="Type" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Labels/Labels -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New Labels Labels -->
@@ -4980,7 +4980,7 @@
<info>
<desc>Contains settings for the label format.</desc>
</info>
- <prop oor:name="Column" oor:type="xs:int">
+ <prop oor:name="Column" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Labels/Format -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New Labels Format -->
@@ -4991,7 +4991,7 @@
</info>
<value>1</value>
</prop>
- <prop oor:name="Row" oor:type="xs:int">
+ <prop oor:name="Row" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Labels/Format -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New Labels Format -->
@@ -5002,7 +5002,7 @@
</info>
<value>1</value>
</prop>
- <prop oor:name="HorizontalDistance" oor:type="xs:int">
+ <prop oor:name="HorizontalDistance" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Labels/Format -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New Labels Format -->
@@ -5013,7 +5013,7 @@
</info>
<value>10000</value>
</prop>
- <prop oor:name="VerticalDistance" oor:type="xs:int">
+ <prop oor:name="VerticalDistance" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Labels/Format -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New Labels Format -->
@@ -5024,7 +5024,7 @@
</info>
<value>10000</value>
</prop>
- <prop oor:name="Width" oor:type="xs:int">
+ <prop oor:name="Width" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Labels/Format -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New Labels Format -->
@@ -5035,7 +5035,7 @@
</info>
<value>10000</value>
</prop>
- <prop oor:name="Height" oor:type="xs:int">
+ <prop oor:name="Height" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Labels/Format -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New Labels Format -->
@@ -5046,7 +5046,7 @@
</info>
<value>10000</value>
</prop>
- <prop oor:name="LeftMargin" oor:type="xs:int">
+ <prop oor:name="LeftMargin" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Labels/Format -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New Labels Format -->
@@ -5057,7 +5057,7 @@
</info>
<value>0</value>
</prop>
- <prop oor:name="TopMargin" oor:type="xs:int">
+ <prop oor:name="TopMargin" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Labels/Format -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New Labels Format -->
@@ -5073,7 +5073,7 @@
<info>
<desc>Contains miscellaneous options for labels.</desc>
</info>
- <prop oor:name="Synchronize" oor:type="xs:boolean">
+ <prop oor:name="Synchronize" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Labels/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New Labels Options -->
@@ -5084,7 +5084,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Page" oor:type="xs:boolean">
+ <prop oor:name="Page" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Labels/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New Labels Options -->
@@ -5095,7 +5095,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Column" oor:type="xs:int">
+ <prop oor:name="Column" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Labels/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New Labels Options -->
@@ -5106,7 +5106,7 @@
</info>
<value>1</value>
</prop>
- <prop oor:name="Row" oor:type="xs:int">
+ <prop oor:name="Row" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Labels/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New Labels Options -->
@@ -5127,7 +5127,7 @@
<info>
<desc>Contains settings for the media type used.</desc>
</info>
- <prop oor:name="Continous" oor:type="xs:boolean">
+ <prop oor:name="Continous" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Dialog/BusinessCards/Medium -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New BusinessCards Medium -->
@@ -5138,7 +5138,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Brand" oor:type="xs:string">
+ <prop oor:name="Brand" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Writer/Dialog/BusinessCards/Medium -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New BusinessCards Medium -->
@@ -5150,7 +5150,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="Type" oor:type="xs:string">
+ <prop oor:name="Type" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Writer/Dialog/BusinessCards/Medium -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New BusinessCards Medium -->
@@ -5167,7 +5167,7 @@
<info>
<desc>Contains settings for the page format.</desc>
</info>
- <prop oor:name="Column" oor:type="xs:int">
+ <prop oor:name="Column" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/BusinessCards/Format -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New BusinessCards Format -->
@@ -5178,7 +5178,7 @@
</info>
<value>1</value>
</prop>
- <prop oor:name="Row" oor:type="xs:int">
+ <prop oor:name="Row" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/BusinessCards/Format -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New BusinessCards Format -->
@@ -5189,7 +5189,7 @@
</info>
<value>1</value>
</prop>
- <prop oor:name="HorizontalDistance" oor:type="xs:int">
+ <prop oor:name="HorizontalDistance" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/BusinessCards/Format -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New BusinessCards Format -->
@@ -5200,7 +5200,7 @@
</info>
<value>10000</value>
</prop>
- <prop oor:name="VerticalDistance" oor:type="xs:int">
+ <prop oor:name="VerticalDistance" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/BusinessCards/Format -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New BusinessCards Format -->
@@ -5211,7 +5211,7 @@
</info>
<value>10000</value>
</prop>
- <prop oor:name="Width" oor:type="xs:int">
+ <prop oor:name="Width" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/BusinessCards/Format -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New BusinessCards Format -->
@@ -5222,7 +5222,7 @@
</info>
<value>10000</value>
</prop>
- <prop oor:name="Height" oor:type="xs:int">
+ <prop oor:name="Height" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/BusinessCards/Format -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New BusinessCards Format -->
@@ -5233,7 +5233,7 @@
</info>
<value>10000</value>
</prop>
- <prop oor:name="LeftMargin" oor:type="xs:int">
+ <prop oor:name="LeftMargin" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/BusinessCards/Format -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New BusinessCards Format -->
@@ -5244,7 +5244,7 @@
</info>
<value>0</value>
</prop>
- <prop oor:name="TopMargin" oor:type="xs:int">
+ <prop oor:name="TopMargin" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/BusinessCards/Format -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New BusinessCards Format -->
@@ -5260,7 +5260,7 @@
<info>
<desc>Contains miscellaneous settings.</desc>
</info>
- <prop oor:name="Synchronize" oor:type="xs:boolean">
+ <prop oor:name="Synchronize" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Dialog/BusinessCards/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New BusinessCards Options -->
@@ -5271,7 +5271,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Page" oor:type="xs:boolean">
+ <prop oor:name="Page" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Dialog/BusinessCards/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New BusinessCards Options -->
@@ -5282,7 +5282,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Column" oor:type="xs:int">
+ <prop oor:name="Column" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/BusinessCards/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New BusinessCards Options -->
@@ -5293,7 +5293,7 @@
</info>
<value>1</value>
</prop>
- <prop oor:name="Row" oor:type="xs:int">
+ <prop oor:name="Row" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/BusinessCards/Options -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: File New BusinessCards Options -->
@@ -5673,31 +5673,31 @@
<author>OS</author>
<desc>Specifies which type of object bars are visible.</desc>
</info>
- <prop oor:name="Graphic" oor:type="xs:int">
+ <prop oor:name="Graphic" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies whether the Graphic Object Bar or the Text Object Bar is visible when a graphic is selected.</desc>
</info>
<value>-1</value>
</prop>
- <prop oor:name="Table" oor:type="xs:int">
+ <prop oor:name="Table" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies whether the Table Object Bar or the Text Object Bar is the visible when a table is selected.</desc>
</info>
<value>-1</value>
</prop>
- <prop oor:name="NumberedList" oor:type="xs:int">
+ <prop oor:name="NumberedList" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies whether the Numbering Object Bar or the Text Object Bar is visible when a numbering/list paragraph is selected.</desc>
</info>
<value>-1</value>
</prop>
- <prop oor:name="NumberedList_InTable" oor:type="xs:int">
+ <prop oor:name="NumberedList_InTable" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies whether the Numbering Object Bar, the Table Object Bar or the Text Object Bar is visible when a numbering/list selection is made in a table.</desc>
</info>
<value>-1</value>
</prop>
- <prop oor:name="BezierObject" oor:type="xs:int">
+ <prop oor:name="BezierObject" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies whether the Bezier Object Bar or the Draw Object Bar is visible toolbar when a Bezier object is selected in edit mode.</desc>
</info>
@@ -5709,7 +5709,7 @@
<info>
<desc>Contains settings for comments</desc>
</info>
- <prop oor:name="ShowAnkor" oor:type="xs:boolean">
+ <prop oor:name="ShowAnkor" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>mod</author>
<desc>configures if comment anchor should be shown or hidden when display is off</desc>
@@ -5722,7 +5722,7 @@
<info>
<desc>Contains settings for the Navigator.</desc>
</info>
- <prop oor:name="ShowListBox" oor:type="xs:boolean">
+ <prop oor:name="ShowListBox" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/PIs/Navigator -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Navigator -->
@@ -5733,7 +5733,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="GlobalDocMode" oor:type="xs:boolean">
+ <prop oor:name="GlobalDocMode" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/PIs/Navigator -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Navigator -->
@@ -5744,7 +5744,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="RootType" oor:type="xs:int">
+ <prop oor:name="RootType" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/PIs/Navigator -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Navigator -->
@@ -5755,7 +5755,7 @@
</info>
<value>-1</value>
</prop>
- <prop oor:name="SelectedPosition" oor:type="xs:int">
+ <prop oor:name="SelectedPosition" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/PIs/Navigator -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Navigator -->
@@ -5765,7 +5765,7 @@
</info>
<value>0</value>
</prop>
- <prop oor:name="OutlineLevel" oor:type="xs:int">
+ <prop oor:name="OutlineLevel" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/PIs/Navigator -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Navigator -->
@@ -5788,7 +5788,7 @@
</constraints>
<value>10</value>
</prop>
- <prop oor:name="InsertMode" oor:type="xs:int">
+ <prop oor:name="InsertMode" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/PIs/Navigator -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Navigator -->
@@ -5816,7 +5816,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="ActiveBlock" oor:type="xs:int">
+ <prop oor:name="ActiveBlock" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/PIs/Navigator -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Navigator -->
@@ -5835,7 +5835,7 @@
<info>
<desc>Contains inscription settings.</desc>
</info>
- <prop oor:name="Addressee" oor:type="xs:string">
+ <prop oor:name="Addressee" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Envelope/Envelope -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Insert Envolpe Envelope -->
@@ -5857,7 +5857,7 @@
<label>Sender</label>
</info>
</prop>
- <prop oor:name="UseSender" oor:type="xs:boolean">
+ <prop oor:name="UseSender" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Envelope/Envelope -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Insert Envolpe Envelope -->
@@ -5868,7 +5868,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Database" oor:type="xs:string">
+ <prop oor:name="Database" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Envelope/Envelope -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Insert Envolpe Envelope -->
@@ -5885,7 +5885,7 @@
<info>
<desc>Contains format settings.</desc>
</info>
- <prop oor:name="AddresseeFromLeft" oor:type="xs:int">
+ <prop oor:name="AddresseeFromLeft" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Envelope/Format -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Insert Envolpe Format // old twips: 6463 / 2-->
@@ -5896,7 +5896,7 @@
</info>
<value>5700</value>
</prop>
- <prop oor:name="AddresseeFromTop" oor:type="xs:int">
+ <prop oor:name="AddresseeFromTop" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Envelope/Format -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Insert Envolpe Format // old twips: 6463 / 2-->
@@ -5907,7 +5907,7 @@
</info>
<value>5700</value>
</prop>
- <prop oor:name="SenderFromLeft" oor:type="xs:int">
+ <prop oor:name="SenderFromLeft" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Envelope/Format -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Insert Envolpe Format -->
@@ -5918,7 +5918,7 @@
</info>
<value>1000</value>
</prop>
- <prop oor:name="SenderFromTop" oor:type="xs:int">
+ <prop oor:name="SenderFromTop" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Envelope/Format -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Insert Envolpe Format -->
@@ -5929,7 +5929,7 @@
</info>
<value>1000</value>
</prop>
- <prop oor:name="Width" oor:type="xs:int">
+ <prop oor:name="Width" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Envelope/Format -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Insert Envolpe Format -->
@@ -5940,7 +5940,7 @@
</info>
<value>11400</value>
</prop>
- <prop oor:name="Height" oor:type="xs:int">
+ <prop oor:name="Height" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Envelope/Format -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Insert Envolpe Format -->
@@ -5956,7 +5956,7 @@
<info>
<desc>Contains settings for printing.</desc>
</info>
- <prop oor:name="Alignment" oor:type="xs:int">
+ <prop oor:name="Alignment" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Envelope/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Insert Envolpe Printer -->
@@ -5999,7 +5999,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="FromAbove" oor:type="xs:boolean">
+ <prop oor:name="FromAbove" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Envelope/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Insert Envolpe Printer -->
@@ -6010,7 +6010,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Right" oor:type="xs:int">
+ <prop oor:name="Right" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Envelope/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Insert Envolpe Printer -->
@@ -6021,7 +6021,7 @@
</info>
<value>0</value>
</prop>
- <prop oor:name="Down" oor:type="xs:int">
+ <prop oor:name="Down" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: Writer/Dialog/Envelope/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Insert Envolpe Printer -->
@@ -6060,7 +6060,7 @@
<info>
<desc>Contains settings for importing VBA Basic.</desc>
</info>
- <prop oor:name="Load" oor:type="xs:boolean">
+ <prop oor:name="Load" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Filter/MS_Office/Basic/Word -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - Filter Settings Microsoft Office [Section] Microsoft Word 97/2000 -->
@@ -6071,7 +6071,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Executable" oor:type="xs:boolean">
+ <prop oor:name="Executable" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>pflin</author>
<desc>Indicates whether VBA macros are imported without comments to be executable.</desc>
@@ -6079,7 +6079,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Save" oor:type="xs:boolean">
+ <prop oor:name="Save" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Filter/MS_Office/Basic/Word -->
<!-- OldLocation: soffice.cfg -->
<!-- UIHints: Tools Options - Filter Settings Microsoft Office [Section] Microsoft Word 97/2000 -->
@@ -6101,7 +6101,7 @@
<info>
<desc>Contains settings for graphics used for bullets.</desc>
</info>
- <prop oor:name="KeepRatio" oor:type="xs:boolean">
+ <prop oor:name="KeepRatio" oor:type="xs:boolean" oor:nillable="false">
<!--OldLocation: Soffice.cfg -->
<!--UIHints: Numbering/Bullets dialog - Customize - Graphics - Keep Ratio-->
<info>
@@ -6301,7 +6301,7 @@
<info>
<desc>Contains word number settings.</desc>
</info>
- <prop oor:name="Delimiter" oor:type="xs:string">
+ <prop oor:name="Delimiter" oor:type="xs:string" oor:nillable="false">
<!--OldLocation: Soffice.cfg -->
<!--UIHints: File - Properties - Statistics - Word number - Separator-->
<info>
@@ -6316,7 +6316,7 @@
<info>
<desc>Contains settings for indices.</desc>
</info>
- <prop oor:name="ShowPreview" oor:type="xs:boolean">
+ <prop oor:name="ShowPreview" oor:type="xs:boolean" oor:nillable="false">
<!-- OldLocation: Soffice.cfg -->
<!--UIHints: Insert - Indexes - Show preview -->
<info>
@@ -6335,7 +6335,7 @@
<info>
<desc>Specifies the settings for form letter output to printer.</desc>
</info>
- <prop oor:name="SinglePrintJobs" oor:type="xs:boolean">
+ <prop oor:name="SinglePrintJobs" oor:type="xs:boolean" oor:nillable="false">
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Form letter - Printer output - Single print jobs-->
<info>
@@ -6344,7 +6344,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="AskForMerge" oor:type="xs:boolean">
+ <prop oor:name="AskForMerge" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>OS</author>
<desc>Determines whether printing a document that contains database fields triggers a 'do you want to call mailmerge' query</desc>
@@ -6391,7 +6391,7 @@
<info>
<desc>Specifies the settings for outputting a form letter to a file.</desc>
</info>
- <prop oor:name="Path" oor:type="xs:string">
+ <prop oor:name="Path" oor:type="xs:string" oor:nillable="false">
<!-- OldLocation: Soffice.cfg -->
<!--UIHints: Form letter - File output - Path-->
<info>
@@ -6432,7 +6432,7 @@
<info>
<desc>Contains miscellaneous settings.</desc>
</info>
- <prop oor:name="GraphicToGalleryAsLink" oor:type="xs:boolean">
+ <prop oor:name="GraphicToGalleryAsLink" oor:type="xs:boolean" oor:nillable="false">
<!-- OldLocation: Soffice.cfg -->
<!--UIHints: context menu of readonly loaded documents-->
<info>
@@ -6451,25 +6451,25 @@
<info>
<desc>Contains settings for the Excel/Lotus filter.</desc>
</info>
- <prop oor:name="MinRow" oor:type="xs:long">
+ <prop oor:name="MinRow" oor:type="xs:long" oor:nillable="false">
<info>
<desc>Specifies the minimum number of rows that can be imported.</desc>
</info>
<value>0</value>
</prop>
- <prop oor:name="MaxRow" oor:type="xs:long">
+ <prop oor:name="MaxRow" oor:type="xs:long" oor:nillable="false">
<info>
<desc>Specifies the maximum number of rows that can be imported.</desc>
</info>
<value>0</value>
</prop>
- <prop oor:name="MinCol" oor:type="xs:long">
+ <prop oor:name="MinCol" oor:type="xs:long" oor:nillable="false">
<info>
<desc>Specifies the minimum number of columns that can be imported.</desc>
</info>
<value>0</value>
</prop>
- <prop oor:name="MaxCol" oor:type="xs:long">
+ <prop oor:name="MaxCol" oor:type="xs:long" oor:nillable="false">
<info>
<desc>Specifies the maximum number of columns that can be imported.</desc>
</info>
@@ -6480,19 +6480,19 @@
<info>
<desc>Contains settings for the Word4Word filter.</desc>
</info>
- <prop oor:name="W4WHD" oor:type="xs:long">
+ <prop oor:name="W4WHD" oor:type="xs:long" oor:nillable="false">
<info>
<desc>Specifies the minimum height for the header. If this flag is not set, a default height of 5 mm is applied.</desc>
</info>
<value>0</value>
</prop>
- <prop oor:name="W4WFT" oor:type="xs:long">
+ <prop oor:name="W4WFT" oor:type="xs:long" oor:nillable="false">
<info>
<desc>Specifies the minimum height of the footer. If this flag is not set, a default height of 5 mm is applied.</desc>
</info>
<value>0</value>
</prop>
- <prop oor:name="W4W000" oor:type="xs:long">
+ <prop oor:name="W4W000" oor:type="xs:long" oor:nillable="false">
<info>
<desc>Specifies a Word for Word filter flag entry. If W4W000 is set, the flag is valid for all W4W filters that are not specified in detail. To specify a filter, replace &quot;000&quot; with the corresponding filter ID.</desc>
</info>
@@ -6580,7 +6580,7 @@
<info>
<desc>Contains settings for the WinWord filter.</desc>
</info>
- <prop oor:name="WW1F" oor:type="xs:long">
+ <prop oor:name="WW1F" oor:type="xs:long" oor:nillable="false">
<info>
<desc>Specifies the flags for controlling the import of WinWord 1.0 documents.</desc>
</info>
@@ -6608,7 +6608,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="WW" oor:type="xs:long">
+ <prop oor:name="WW" oor:type="xs:long" oor:nillable="false">
<info>
<desc>Specifies the flags for importing WinWord documents.</desc>
</info>
@@ -6736,7 +6736,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="WW8" oor:type="xs:long">
+ <prop oor:name="WW8" oor:type="xs:long" oor:nillable="false">
<info>
<desc>Specifies the flags for importing WinWord 8 documents.</desc>
</info>
@@ -6759,7 +6759,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="WWF" oor:type="xs:long">
+ <prop oor:name="WWF" oor:type="xs:long" oor:nillable="false">
<info>
<desc>Specifies the flags for controlling the import of fields in WW6 documents. The key WWF stands for &quot;WinWord Field&quot;.</desc>
</info>
@@ -6817,61 +6817,61 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="WWFA0" oor:type="xs:long">
+ <prop oor:name="WWFA0" oor:type="xs:long" oor:nillable="false">
<info>
<desc>Enables the tagging of fields for every field type. Controls the field types 0 to 31.</desc>
</info>
<value>0</value>
</prop>
- <prop oor:name="WWFA1" oor:type="xs:long">
+ <prop oor:name="WWFA1" oor:type="xs:long" oor:nillable="false">
<info>
<desc>Enables the tagging of fields for every field type.Controls the field types 32 to 63.</desc>
</info>
<value>0</value>
</prop>
- <prop oor:name="WWFA2" oor:type="xs:long">
+ <prop oor:name="WWFA2" oor:type="xs:long" oor:nillable="false">
<info>
<desc>Enables the tagging of fields for every field type.Controls the field types 64 to 95.</desc>
</info>
<value>0</value>
</prop>
- <prop oor:name="WWFB0" oor:type="xs:long">
+ <prop oor:name="WWFB0" oor:type="xs:long" oor:nillable="false">
<info>
<desc>Disables the tagging of fields for every field type. Useful for fields that cannot be imported completely, for example, nested fields.Controls the field types 0 to 31.</desc>
</info>
<value>0</value>
</prop>
- <prop oor:name="WWFB1" oor:type="xs:long">
+ <prop oor:name="WWFB1" oor:type="xs:long" oor:nillable="false">
<info>
<desc>Disables the tagging of fields for every field type. Useful for fields that cannot be imported completely, for example, nested fields. Controls the field types 32 to 63.</desc>
</info>
<value>0</value>
</prop>
- <prop oor:name="WWFB2" oor:type="xs:long">
+ <prop oor:name="WWFB2" oor:type="xs:long" oor:nillable="false">
<info>
<desc>Disables the tagging of fields for every field type. Useful for fields that cannot be imported completely, for example, nested fields. Controls the field types 64 to 95.</desc>
</info>
<value>0</value>
</prop>
- <prop oor:name="WWFLX" oor:type="xs:long">
+ <prop oor:name="WWFLX" oor:type="xs:long" oor:nillable="false">
<info>
<desc>Specifies the X offset for text frames [UNIT=1/100 mm].</desc>
</info>
<value>0</value>
</prop>
- <prop oor:name="WWFLY" oor:type="xs:long">
+ <prop oor:name="WWFLY" oor:type="xs:long" oor:nillable="false">
<info>
<desc>Specifies the Y offset for text frames [UNIT=1/100 mm].</desc>
</info>
<value>0</value>
</prop>
- <prop oor:name="WWFT" oor:type="xs:long">
+ <prop oor:name="WWFT" oor:type="xs:long" oor:nillable="false">
<info>
<desc>Specifies the distance between the footnote and the main text [UNIT=1/100 mm].</desc>
</info>
<value>0</value>
</prop>
- <prop oor:name="WWWR" oor:type="xs:long">
+ <prop oor:name="WWWR" oor:type="xs:long" oor:nillable="false">
<info>
<desc>Specifies several flags for exporting (for debugging).</desc>
</info>
@@ -6899,7 +6899,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="RegardHindiDigits" oor:type="xs:long">
+ <prop oor:name="RegardHindiDigits" oor:type="xs:long" oor:nillable="false">
<info>
<desc>If true yields to digits marked as CTL script to be imported as Hindi digits.</desc>
</info>
@@ -6910,7 +6910,7 @@
<info>
<desc>Contains settings for the Writer filter.</desc>
</info>
- <prop oor:name="SW3Imp" oor:type="xs:long">
+ <prop oor:name="SW3Imp" oor:type="xs:long" oor:nillable="false">
<info>
<desc>Specifies the flags for the Writer filter.</desc>
</info>
diff --git a/officecfg/registry/schema/org/openoffice/Office/WriterWeb.xcs b/officecfg/registry/schema/org/openoffice/Office/WriterWeb.xcs
index 4d6fd70f2211..79f581a42928 100644
--- a/officecfg/registry/schema/org/openoffice/Office/WriterWeb.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/WriterWeb.xcs
@@ -40,7 +40,7 @@
<info>
<desc>Contains settings for the visibility of various elements.</desc>
</info>
- <prop oor:name="GraphicObject" oor:type="xs:boolean">
+ <prop oor:name="GraphicObject" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Content/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Contents - [Section] Display -->
@@ -51,7 +51,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Table" oor:type="xs:boolean">
+ <prop oor:name="Table" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Content/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Contents - [Section] Display -->
@@ -62,7 +62,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="DrawingControl" oor:type="xs:boolean">
+ <prop oor:name="DrawingControl" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Content/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Contents - [Section] Display -->
@@ -73,7 +73,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="FieldCode" oor:type="xs:boolean">
+ <prop oor:name="FieldCode" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Content/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Contents - [Section] Display -->
@@ -84,7 +84,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Note" oor:type="xs:boolean">
+ <prop oor:name="Note" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Content/Display -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Contents - [Section] Display -->
@@ -95,7 +95,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="PreventTips" oor:type="xs:boolean">
+ <prop oor:name="PreventTips" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: Not accessible via user interface -->
<info>
<author>OS</author>
@@ -109,7 +109,7 @@
<info>
<desc>Contains settings for the visibility of various non-printing characters.</desc>
</info>
- <prop oor:name="MetaCharacters" oor:type="xs:boolean">
+ <prop oor:name="MetaCharacters" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: View - Nonprinting Characters -->
<info>
<author>OS</author>
@@ -118,7 +118,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="ParagraphEnd" oor:type="xs:boolean">
+ <prop oor:name="ParagraphEnd" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Content/Nonprinting_characters -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Contents [Section] Nonprinting characters -->
@@ -129,7 +129,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="OptionalHyphen" oor:type="xs:boolean">
+ <prop oor:name="OptionalHyphen" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Content/Nonprinting_characters -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Contents [Section] Nonprinting characters -->
@@ -140,7 +140,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Space" oor:type="xs:boolean">
+ <prop oor:name="Space" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Content/Nonprinting_characters -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Contents [Section] Nonprinting characters -->
@@ -151,7 +151,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ProtectedSpace" oor:type="xs:boolean">
+ <prop oor:name="ProtectedSpace" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Content/Nonprinting_characters -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Contents [Section] Nonprinting characters -->
@@ -162,7 +162,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Break" oor:type="xs:boolean">
+ <prop oor:name="Break" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Content/Nonprinting_characters -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Contents [Section] Nonprinting characters -->
@@ -178,7 +178,7 @@
<info>
<desc>Contains settings for highlighting contents.</desc>
</info>
- <prop oor:name="Field" oor:type="xs:boolean">
+ <prop oor:name="Field" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Content/Highlighting -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Contents - [Section] Highlighting -->
@@ -199,7 +199,7 @@
<info>
<desc>Contains settings for guiding lines or points (for example when selecting/moving an object or frame).</desc>
</info>
- <prop oor:name="Guide" oor:type="xs:boolean">
+ <prop oor:name="Guide" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Layout/Lines -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document - Layout - [Section] Lines -->
@@ -210,7 +210,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="SimpleControlPoint" oor:type="xs:boolean">
+ <prop oor:name="SimpleControlPoint" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Layout/Lines -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document - Layout - [Section] Lines -->
@@ -221,7 +221,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="LargeControlPoint" oor:type="xs:boolean">
+ <prop oor:name="LargeControlPoint" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Layout/Lines -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document - Layout - [Section] Lines -->
@@ -237,7 +237,7 @@
<info>
<desc>Contains various settings for the window, such as scrollbars, rules, etc.</desc>
</info>
- <prop oor:name="HorizontalScroll" oor:type="xs:boolean">
+ <prop oor:name="HorizontalScroll" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Layout/Window -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document - Layout - [Section] Window -->
@@ -248,7 +248,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="VerticalScroll" oor:type="xs:boolean">
+ <prop oor:name="VerticalScroll" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Layout/Window -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document - Layout - [Section] Window -->
@@ -259,7 +259,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="ShowRulers" oor:type="xs:boolean">
+ <prop oor:name="ShowRulers" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: Tools - Options - Text document - View - [Section] View -->
<info>
<author>OS</author>
@@ -268,7 +268,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="HorizontalRuler" oor:type="xs:boolean">
+ <prop oor:name="HorizontalRuler" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Layout/Window -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document - Layout - [Section] Window -->
@@ -335,7 +335,7 @@
</enumeration>
</constraints>
</prop>
- <prop oor:name="VerticalRuler" oor:type="xs:boolean">
+ <prop oor:name="VerticalRuler" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Layout/Window -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document - Layout - [Section] Window -->
@@ -402,7 +402,7 @@
</enumeration>
</constraints>
</prop>
- <prop oor:name="SmoothScroll" oor:type="xs:boolean">
+ <prop oor:name="SmoothScroll" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Layout/Window -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document - Layout - [Section] Window -->
@@ -418,7 +418,7 @@
<info>
<desc>Contains miscellaneous settings.</desc>
</info>
- <prop oor:name="IsAlignMathObjectsToBaseline" oor:type="xs:boolean">
+ <prop oor:name="IsAlignMathObjectsToBaseline" oor:type="xs:boolean" oor:nillable="false">
<!-- UIHints: none yet -->
<info>
<author>TL</author>
@@ -489,7 +489,7 @@
<info>
<desc>Contains zoom specific settings.</desc>
</info>
- <prop oor:name="Type" oor:type="xs:int">
+ <prop oor:name="Type" oor:type="xs:int" oor:nillable="false">
<!-- UIHints: (Status Bar) -->
<info>
<author>OS</author>
@@ -515,7 +515,7 @@
</constraints>
<value>0</value>
</prop>
- <prop oor:name="Value" oor:type="xs:int">
+ <prop oor:name="Value" oor:type="xs:int" oor:nillable="false">
<!-- UIHints: (Status Bar) -->
<info>
<author>OS</author>
@@ -534,7 +534,7 @@
<info>
<desc>Contains options for the grid.</desc>
</info>
- <prop oor:name="SnapToGrid" oor:type="xs:boolean">
+ <prop oor:name="SnapToGrid" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Grid/Option -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Grid - [Section] Option -->
@@ -545,7 +545,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="VisibleGrid" oor:type="xs:boolean">
+ <prop oor:name="VisibleGrid" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Grid/Option -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Grid - [Section] Option -->
@@ -556,7 +556,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Synchronize" oor:type="xs:boolean">
+ <prop oor:name="Synchronize" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Grid/Option -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Grid - [Section] Option -->
@@ -572,7 +572,7 @@
<info>
<desc>Contains settings for specifying the grid resolution.</desc>
</info>
- <prop oor:name="XAxis" oor:type="xs:int">
+ <prop oor:name="XAxis" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: HTML_Editor/Grid/Resolution -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document - Grid - [Section] Grid -->
@@ -583,7 +583,7 @@
</info>
<value>1000</value>
</prop>
- <prop oor:name="YAxis" oor:type="xs:int">
+ <prop oor:name="YAxis" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: HTML_Editor/Grid/Resolution -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document - Grid - [Section] Grid -->
@@ -599,7 +599,7 @@
<info>
<desc>Contains settings for subdividing of the grid.</desc>
</info>
- <prop oor:name="XAxis" oor:type="xs:int">
+ <prop oor:name="XAxis" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: HTML_Editor/Grid/Subdivision -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document - Grid - [Section] Grid -->
@@ -610,7 +610,7 @@
</info>
<value>1</value>
</prop>
- <prop oor:name="YAxis" oor:type="xs:int">
+ <prop oor:name="YAxis" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: HTML_Editor/Grid/Subdivision -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document - Grid - [Section] Grid -->
@@ -631,7 +631,7 @@
<info>
<desc>Contains settings for specifying which content types are printed.</desc>
</info>
- <prop oor:name="Graphic" oor:type="xs:boolean">
+ <prop oor:name="Graphic" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Print/Contents -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document - Print - [Section] Contents -->
@@ -642,7 +642,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Table" oor:type="xs:boolean">
+ <prop oor:name="Table" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Print/Contents -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document - Print - [Section] Contents -->
@@ -653,7 +653,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Control" oor:type="xs:boolean">
+ <prop oor:name="Control" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Print/Contents -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document - Print - [Section] Contents -->
@@ -664,7 +664,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Background" oor:type="xs:boolean">
+ <prop oor:name="Background" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Print/Contents -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document - Print - [Section] Contents -->
@@ -675,7 +675,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="PrintBlack" oor:type="xs:boolean">
+ <prop oor:name="PrintBlack" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Print/Contents -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document - Print - [Section] Contents -->
@@ -686,7 +686,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Note" oor:type="xs:int">
+ <prop oor:name="Note" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: HTML_Editor/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Print - [Section] Notes -->
@@ -723,7 +723,7 @@
<info>
<desc>Specifies which pages are printed and how they are printed.</desc>
</info>
- <prop oor:name="Reversed" oor:type="xs:boolean">
+ <prop oor:name="Reversed" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Print/Pages -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Print - [Section] Pages -->
@@ -734,7 +734,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Brochure" oor:type="xs:boolean">
+ <prop oor:name="Brochure" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Print/Pages -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Print - [Section] Pages -->
@@ -745,7 +745,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="BrochureRightToLeft" oor:type="xs:boolean">
+ <prop oor:name="BrochureRightToLeft" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: Writer/Print/Pages -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Print - [Section] Pages -->
@@ -761,7 +761,7 @@
<info>
<desc>Contains output-specific settings.</desc>
</info>
- <prop oor:name="SinglePrintJob" oor:type="xs:boolean">
+ <prop oor:name="SinglePrintJob" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Print/Output -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document - Print - [Section] Output -->
@@ -772,7 +772,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Fax" oor:type="xs:string">
+ <prop oor:name="Fax" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: HTML_Editor/Print -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Print - [Section] Fax -->
@@ -789,7 +789,7 @@
<info>
<desc>Contains settings for printers with multiple paper trays.</desc>
</info>
- <prop oor:name="FromPrinterSetup" oor:type="xs:boolean">
+ <prop oor:name="FromPrinterSetup" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Papertray -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document - Print - [Section] Paper tray -->
@@ -810,7 +810,7 @@
<info>
<desc>Contains settings used when shifting table rows/columns.</desc>
</info>
- <prop oor:name="Row" oor:type="xs:int">
+ <prop oor:name="Row" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: HTML_Editor/Table/Shift -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Table - [Section] Shift -->
@@ -822,7 +822,7 @@
</info>
<value>500</value>
</prop>
- <prop oor:name="Column" oor:type="xs:int">
+ <prop oor:name="Column" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: HTML_Editor/Table/Shift -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Table - [Section] Shift -->
@@ -839,7 +839,7 @@
<info>
<desc>Contains settings used when inserting table rows/columns.</desc>
</info>
- <prop oor:name="Row" oor:type="xs:int">
+ <prop oor:name="Row" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: HTML_Editor/Table/Insert -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Table - [Section] Insert -->
@@ -851,7 +851,7 @@
</info>
<value>500</value>
</prop>
- <prop oor:name="Column" oor:type="xs:int">
+ <prop oor:name="Column" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: HTML_Editor/Table/Insert -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Table - [Section] Insert -->
@@ -868,7 +868,7 @@
<info>
<desc>Contains settings specifying the effect that modifying rows/columns has on a table.</desc>
</info>
- <prop oor:name="Effect" oor:type="xs:int">
+ <prop oor:name="Effect" oor:type="xs:int" oor:nillable="false">
<!-- OldPath: HTML_Editor/Table -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document - Table [Section] Effect -->
@@ -900,7 +900,7 @@
<info>
<desc>Contains settings used when inputting text or data in tables.</desc>
</info>
- <prop oor:name="NumberRecognition" oor:type="xs:boolean">
+ <prop oor:name="NumberRecognition" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Insert/IntoTables -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Insert - [Section] Insert into tables -->
@@ -911,7 +911,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="NumberFormatRecognition" oor:type="xs:boolean">
+ <prop oor:name="NumberFormatRecognition" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Insert/IntoTables -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Insert - [Section] Insert into tables -->
@@ -922,7 +922,7 @@
</info>
<value>true</value>
</prop>
- <prop oor:name="Alignment" oor:type="xs:boolean">
+ <prop oor:name="Alignment" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Insert/IntoTables -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Insert - [Section] Insert into tables -->
@@ -943,7 +943,7 @@
<info>
<desc>Specifies the default settings for inserting tables.</desc>
</info>
- <prop oor:name="Header" oor:type="xs:boolean">
+ <prop oor:name="Header" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Insert/Tables -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Insert - [Section] Tables -->
@@ -954,7 +954,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="RepeatHeader" oor:type="xs:boolean">
+ <prop oor:name="RepeatHeader" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Insert/Tables -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Insert - [Section] Tables -->
@@ -965,7 +965,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="Border" oor:type="xs:boolean">
+ <prop oor:name="Border" oor:type="xs:boolean" oor:nillable="false">
<!-- OldPath: HTML_Editor/Insert/Tables -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Option - HTML-Document Insert - [Section] Tables -->
@@ -990,31 +990,31 @@
<author>OS/OS</author>
<desc>Specifies the type of object bar that is visible.</desc>
</info>
- <prop oor:name="Graphic" oor:type="xs:int">
+ <prop oor:name="Graphic" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies whether the Graphic Object Bar or the Text Object Bar/Web is the visible toolbar when a graphic is selected.</desc>
</info>
<value>-1</value>
</prop>
- <prop oor:name="Table" oor:type="xs:int">
+ <prop oor:name="Table" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies whether the Table Object Bar or the Text Object Bar/Web is visible toolbar when a table is selected.</desc>
</info>
<value>-1</value>
</prop>
- <prop oor:name="NumberedList" oor:type="xs:int">
+ <prop oor:name="NumberedList" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies whether the Numbering Object Bar or the Text Object Bar/Web is visible toolbar when text formatted with numbering/list is selected.</desc>
</info>
<value>-1</value>
</prop>
- <prop oor:name="NumberedList_InTable" oor:type="xs:int">
+ <prop oor:name="NumberedList_InTable" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies whether the Numbering Object Bar, the Table Object Bar or the Text Object Bar/Web is visible toolbar when text formatted with numbering/list is selected in a table.</desc>
</info>
<value>-1</value>
</prop>
- <prop oor:name="BezierObject" oor:type="xs:int">
+ <prop oor:name="BezierObject" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies whether the Bezier Object Bar or the Draw Object Bar is the visible toolbar with a Bezier object in edit mode.</desc>
</info>
@@ -1041,7 +1041,7 @@
<info>
<desc>Contains settings for gallery items that can be added to the document.</desc>
</info>
- <prop oor:name="AddGraphic" oor:type="xs:boolean">
+ <prop oor:name="AddGraphic" oor:type="xs:boolean" oor:nillable="false">
<!--OldLocation: Soffice.cfg -->
<!--UIHints: HTML document in readonly mode - context menu of a graphic - Add Graphics - As Link / Copy-->
<info>
diff --git a/officecfg/registry/schema/org/openoffice/Setup.xcs b/officecfg/registry/schema/org/openoffice/Setup.xcs
index f6ac667d6c89..53ace015933e 100644
--- a/officecfg/registry/schema/org/openoffice/Setup.xcs
+++ b/officecfg/registry/schema/org/openoffice/Setup.xcs
@@ -88,13 +88,13 @@
<info>
<desc>Describes migration steps specific for certain version(s)</desc>
</info>
- <prop oor:name="VersionIdentifiers" oor:type="oor:string-list">
+ <prop oor:name="VersionIdentifiers" oor:type="oor:string-list" oor:nillable="false">
<info>
<desc>version identifiers, that are supported for migration</desc>
</info>
<value/>
</prop>
- <prop oor:name="Priority" oor:type="xs:int">
+ <prop oor:name="Priority" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Contains the priority value to specify which migration should be prefered. Higher values are prefered.</desc>
</info>
@@ -173,14 +173,14 @@
<desc>Specifies the URL for opening an empty document in the factory.</desc>
</info>
</prop>
- <prop oor:name="ooSetupFactoryIcon" oor:type="xs:int">
+ <prop oor:name="ooSetupFactoryIcon" oor:type="xs:int" oor:nillable="false">
<!-- UIHints: setup -->
<info>
<desc>Specifies the ID of the icon for the factory</desc>
</info>
<value>0</value>
</prop>
- <prop oor:name="ooSetupFactoryStyleFilter" oor:type="xs:int">
+ <prop oor:name="ooSetupFactoryStyleFilter" oor:type="xs:int" oor:nillable="false">
<!-- UIHints: setup -->
<info>
<desc>Specifies the ID of the style filter (Stylist) for the factory</desc>
@@ -232,49 +232,49 @@
<desc>Contains common product and version information</desc>
</info>
<!--The default must be written by the setup.-->
- <prop oor:name="ooName" oor:type="xs:string">
+ <prop oor:name="ooName" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the name of a product.</desc>
</info>
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="ooXMLFileFormatVersion" oor:type="xs:string">
+ <prop oor:name="ooXMLFileFormatVersion" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the version of the SO 6/7 or OOo 1.0 xml file formats.</desc>
</info>
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="ooXMLFileFormatName" oor:type="xs:string">
+ <prop oor:name="ooXMLFileFormatName" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the name of the SO6/7 or OOo1.0 xml file formats.</desc>
</info>
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="ooSetupVersion" oor:type="xs:string">
+ <prop oor:name="ooSetupVersion" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the version number of the product that appears on the user interface.</desc>
</info>
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="ooSetupVersionAboutBox" oor:type="xs:string">
+ <prop oor:name="ooSetupVersionAboutBox" oor:type="xs:string" oor:nillable="false">
<info>
<author>PB</author>
<desc>Specifies the complete (major.minor.micro) version number of the product that appears only on the about box.</desc>
</info>
<value/>
</prop>
- <prop oor:name="ooSetupVersionAboutBoxSuffix" oor:type="xs:string">
+ <prop oor:name="ooSetupVersionAboutBoxSuffix" oor:type="xs:string" oor:nillable="false">
<info>
<author>PMLADEK</author>
<desc>Specifies the version suffix (beta1, rc2) of the product that appears only on the about box.</desc>
</info>
<value/>
</prop>
- <prop oor:name="ooVendor" oor:type="xs:string">
+ <prop oor:name="ooVendor" oor:type="xs:string" oor:nillable="false">
<info>
<author>IHI</author>
<desc>Specifies the vendor who build the product.</desc>
@@ -282,14 +282,14 @@
<value/>
</prop>
- <prop oor:name="ooSetupExtension" oor:type="xs:string">
+ <prop oor:name="ooSetupExtension" oor:type="xs:string" oor:nillable="false">
<info>
<desc>Specifies the version number that appears on the user interface.</desc>
</info>
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="ooOpenSourceContext" oor:type="xs:int">
+ <prop oor:name="ooOpenSourceContext" oor:type="xs:int" oor:nillable="false">
<info>
<desc>Specifies the context of the product. A value greater than 0 is specifying an OpenSource context.</desc>
</info>
@@ -301,7 +301,7 @@
<info>
<desc>Specifies the installation location, locales and the available factories for creating documents.</desc>
</info>
- <prop oor:name="ooSetupInstallPath" oor:type="xs:string">
+ <prop oor:name="ooSetupInstallPath" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Service User/[username] -->
<!-- OldLocation: userdb.ini -->
<info>
@@ -312,7 +312,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="ooSetupInstallURL" oor:type="xs:string">
+ <prop oor:name="ooSetupInstallURL" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Service User/[username] -->
<!-- OldLocation: userdb.ini -->
<info>
@@ -358,7 +358,7 @@
<desc>Specifies whether the splash screen is displayed during startup.</desc>
</info>
</prop>
- <prop oor:name="ooSetupConnectionURL" oor:type="xs:string">
+ <prop oor:name="ooSetupConnectionURL" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: Common-->
<!-- OldLocation: soffice.ini -->
<info>
@@ -374,14 +374,14 @@
<desc>The xsd:datetime (YYYY-MM-DDTHH:MM:SS) on which the user has accepted the license. If the current installation has a license that is newer then this date, the license has to be accepted again.</desc>
</info>
</prop>
- <prop oor:name="FirstStartWizardCompleted" oor:type="xs:boolean">
+ <prop oor:name="FirstStartWizardCompleted" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>LO</author>
<desc>is set to true, when the FirstStartWizard has been completed</desc>
</info>
<value>false</value>
</prop>
- <prop oor:name="MigrationCompleted" oor:type="xs:boolean">
+ <prop oor:name="MigrationCompleted" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>LO</author>
<desc>This should be set to true, as soon as settings from
@@ -390,7 +390,7 @@
</info>
<value>false</value>
</prop>
- <prop oor:name="LastCompatibilityCheckID" oor:type="xs:string">
+ <prop oor:name="LastCompatibilityCheckID" oor:type="xs:string" oor:nillable="false">
<info>
<author>DV</author>
<desc>The build ID of the office. On startup the office will compare this ID with the current build id to decide if the extensions dependencies need to be checked.</desc>
@@ -403,7 +403,7 @@
<desc>Contains all of the document factories that were installed during setup.</desc>
</info>
</set>
- <prop oor:name="OfficeRestartInProgress" oor:type="xs:boolean">
+ <prop oor:name="OfficeRestartInProgress" oor:type="xs:boolean" oor:nillable="false">
<info>
<author>MAV</author>
<desc>The entry specifies that we are in restart process</desc>
@@ -417,7 +417,7 @@
<desc>Specifies the installation locales.</desc>
</info>
<!--The default must be written by the setup.-->
- <prop oor:name="ooLocale" oor:type="xs:string">
+ <prop oor:name="ooLocale" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: User/Language -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - Other -->
@@ -430,7 +430,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="ooSetupSystemLocale" oor:type="xs:string">
+ <prop oor:name="ooSetupSystemLocale" oor:type="xs:string" oor:nillable="false">
<!-- UIHints: Tools - Options - Language Settings - Languages - Language of - Locale setting -->
<info>
<author>ER</author>
@@ -439,7 +439,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="ooSetupCurrency" oor:type="xs:string">
+ <prop oor:name="ooSetupCurrency" oor:type="xs:string" oor:nillable="false">
<!-- UIHints: Tools - Options - Language Settings - Languages - Language of - Default currency -->
<info>
<author>ER</author>
diff --git a/officecfg/registry/schema/org/openoffice/System.xcs b/officecfg/registry/schema/org/openoffice/System.xcs
index 4d432659d5f8..e78f3153ab79 100644
--- a/officecfg/registry/schema/org/openoffice/System.xcs
+++ b/officecfg/registry/schema/org/openoffice/System.xcs
@@ -37,21 +37,21 @@
<author>OBR</author>
<desc>Contains localization settings</desc>
</info>
- <prop oor:name="Locale" oor:type="xs:string">
+ <prop oor:name="Locale" oor:type="xs:string" oor:nillable="false">
<info>
<author>OBR</author>
<desc>Contains the user's desktop locale setting if available.</desc>
</info>
<value/>
</prop>
- <prop oor:name="UILocale" oor:type="xs:string">
+ <prop oor:name="UILocale" oor:type="xs:string" oor:nillable="false">
<info>
<author>OBR</author>
<desc>Contains the user's desktop UI language setting if available.</desc>
</info>
<value/>
</prop>
- <prop oor:name="SystemLocale" oor:type="xs:string">
+ <prop oor:name="SystemLocale" oor:type="xs:string" oor:nillable="false">
<info>
<author>OBR</author>
<desc>Contains the system's default locale setting if available.</desc>
diff --git a/officecfg/registry/schema/org/openoffice/TypeDetection/Filter.xcs b/officecfg/registry/schema/org/openoffice/TypeDetection/Filter.xcs
index c92f93f79d6e..f87846f00c99 100644
--- a/officecfg/registry/schema/org/openoffice/TypeDetection/Filter.xcs
+++ b/officecfg/registry/schema/org/openoffice/TypeDetection/Filter.xcs
@@ -34,35 +34,35 @@
<templates>
<group oor:name="Filter">
<info><desc>Lists filters that can import or export content.</desc></info>
- <prop oor:name="FileFormatVersion" oor:type="xs:int">
+ <prop oor:name="FileFormatVersion" oor:type="xs:int" oor:nillable="false">
<info><desc>An unique ID, which is used internal to differ between file formats of same type.</desc></info>
<value>0</value>
</prop>
- <prop oor:name="Type" oor:type="xs:string">
+ <prop oor:name="Type" oor:type="xs:string" oor:nillable="false">
<info><desc>Supported content type of this filter. Must be an internal type name.</desc></info>
<value/>
</prop>
- <prop oor:name="DocumentService" oor:type="xs:string">
+ <prop oor:name="DocumentService" oor:type="xs:string" oor:nillable="false">
<info><desc>The uno service name of the supported office document type.</desc></info>
<value/>
</prop>
- <prop oor:name="UIComponent" oor:type="xs:string">
+ <prop oor:name="UIComponent" oor:type="xs:string" oor:nillable="false">
<info><desc>The uno implementation name a dialog, which is used to ask an user for special filter parameter (e.g. for csv).</desc></info>
<value/>
</prop>
- <prop oor:name="UserData" oor:type="oor:string-list">
+ <prop oor:name="UserData" oor:type="oor:string-list" oor:nillable="false">
<info><desc>Filter specific data.</desc></info>
<value/>
</prop>
- <prop oor:name="FilterService" oor:type="xs:string">
+ <prop oor:name="FilterService" oor:type="xs:string" oor:nillable="false">
<info><desc>The uno implementation name of the filter service.</desc></info>
<value/>
</prop>
- <prop oor:name="TemplateName" oor:type="xs:string">
+ <prop oor:name="TemplateName" oor:type="xs:string" oor:nillable="false">
<info><desc>Name of a corresponding template, which is merged together with the style seets of the loaded document.</desc></info>
<value/>
</prop>
- <prop oor:name="Flags" oor:type="oor:string-list">
+ <prop oor:name="Flags" oor:type="oor:string-list" oor:nillable="false">
<info><desc>Specify the filter in some further properties (e.g. import/export/..).</desc></info>
<value/>
</prop>
diff --git a/officecfg/registry/schema/org/openoffice/TypeDetection/Misc.xcs b/officecfg/registry/schema/org/openoffice/TypeDetection/Misc.xcs
index 62e3bd508f3d..dcd09ef9d92e 100644
--- a/officecfg/registry/schema/org/openoffice/TypeDetection/Misc.xcs
+++ b/officecfg/registry/schema/org/openoffice/TypeDetection/Misc.xcs
@@ -34,14 +34,14 @@
<templates>
<group oor:name="FrameLoader">
<info><desc>Can load a type as visible component into a com.sun.star.frame.Frame.</desc></info>
- <prop oor:name="Types" oor:type="oor:string-list">
+ <prop oor:name="Types" oor:type="oor:string-list" oor:nillable="false">
<info><desc>List of internal type names, which can be interpreted by this loader implementation.</desc></info>
<value/>
</prop>
</group>
<group oor:name="ContentHandler">
<info><desc>Can load a type as non visible component, e.g. sounds.</desc></info>
- <prop oor:name="Types" oor:type="oor:string-list">
+ <prop oor:name="Types" oor:type="oor:string-list" oor:nillable="false">
<info><desc>List of internal type names, which can be interpreted by this handler implementation.</desc></info>
<value/>
</prop>
@@ -56,11 +56,11 @@
</set>
<group oor:name="Defaults">
<info><desc>Contains default objects that are used if no specialized service was registered or values which specify special behaviour of type/filter environment.</desc></info>
- <prop oor:name="DefaultFrameLoader" oor:type="xs:string">
+ <prop oor:name="DefaultFrameLoader" oor:type="xs:string" oor:nillable="false">
<info><desc>Specify a generic frame loader, which can use filter services for loading documents into frames.</desc></info>
<value>com.sun.star.comp.office.FrameLoader</value>
</prop>
- <prop oor:name="ShowAlienFilterWarning" oor:type="xs:boolean">
+ <prop oor:name="ShowAlienFilterWarning" oor:type="xs:boolean" oor:nillable="false">
<info><author>OS</author><desc>Displays a warning when a user tries to set a third-party filter as the default filter in &quot;Tools - Options&quot;.</desc></info>
<value>true</value>
</prop>
diff --git a/officecfg/registry/schema/org/openoffice/TypeDetection/Types.xcs b/officecfg/registry/schema/org/openoffice/TypeDetection/Types.xcs
index 43e6693fc153..05372bf0f366 100644
--- a/officecfg/registry/schema/org/openoffice/TypeDetection/Types.xcs
+++ b/officecfg/registry/schema/org/openoffice/TypeDetection/Types.xcs
@@ -34,42 +34,42 @@
<templates>
<group oor:name="Type">
<info><desc>Lists the types that represent common content formats in Office.</desc></info>
- <prop oor:name="UIOrder" oor:type="xs:int">
+ <prop oor:name="UIOrder" oor:type="xs:int" oor:nillable="false">
<info><desc>Used to sort types inside dialogs. Only values &gt;0 are recognized. Types with an order value &lt;1 will be sorted alphabeticly.</desc></info>
<value>0</value>
</prop>
- <prop oor:name="URLPattern" oor:type="oor:string-list">
+ <prop oor:name="URLPattern" oor:type="oor:string-list" oor:nillable="false">
<info><desc>List of URL pattern (with simple wildcards */?) which match to this type.</desc></info>
<value/>
</prop>
- <prop oor:name="Extensions" oor:type="oor:string-list">
+ <prop oor:name="Extensions" oor:type="oor:string-list" oor:nillable="false">
<info><desc>List of file extensions, which match to this type.</desc></info>
<value/>
</prop>
- <prop oor:name="DocumentIconID" oor:type="xs:int">
+ <prop oor:name="DocumentIconID" oor:type="xs:int" oor:nillable="false">
<info><desc>Global ID of an icon, which represent this tye at the UI.</desc></info>
<value>0</value>
</prop>
- <prop oor:name="MediaType" oor:type="xs:string">
+ <prop oor:name="MediaType" oor:type="xs:string" oor:nillable="false">
<info><desc>Corresponding mime type.</desc></info>
<value/>
</prop>
- <prop oor:name="Preferred" oor:type="xs:boolean">
+ <prop oor:name="Preferred" oor:type="xs:boolean" oor:nillable="false">
<info><desc>In case of ambigoues registrations (e.g. for extensions doc/txt) it specify the prefererred type.</desc></info>
<value>false</value>
</prop>
- <prop oor:name="PreferredFilter" oor:type="xs:string">
+ <prop oor:name="PreferredFilter" oor:type="xs:string" oor:nillable="false">
<info><desc>An optimization! Points directly to the preferred filter for this type. No search across all filters is neccessary ...</desc></info>
<value/>
</prop>
<prop oor:name="UIName" oor:localized="true" oor:type="xs:string">
<info><desc>Localized name of this type for showing it at the UI.</desc></info>
</prop>
- <prop oor:name="ClipboardFormat" oor:type="xs:string">
+ <prop oor:name="ClipboardFormat" oor:type="xs:string" oor:nillable="false">
<info><desc>Unique identifier, which can be searched inside the stream to detect this format.</desc></info>
<value/>
</prop>
- <prop oor:name="DetectService" oor:type="xs:string">
+ <prop oor:name="DetectService" oor:type="xs:string" oor:nillable="false">
<info><desc>An optimization! Points directly to the deep detection service, which can verify a flat detection.</desc></info>
<value/>
</prop>
diff --git a/officecfg/registry/schema/org/openoffice/TypeDetection/UISort.xcs b/officecfg/registry/schema/org/openoffice/TypeDetection/UISort.xcs
index a39002b3100d..a4097e90bc01 100644
--- a/officecfg/registry/schema/org/openoffice/TypeDetection/UISort.xcs
+++ b/officecfg/registry/schema/org/openoffice/TypeDetection/UISort.xcs
@@ -36,7 +36,7 @@
<info>
<desc>Knows an ordered list of filters related to an office module.</desc>
</info>
- <prop oor:name="SortedFilterList" oor:type="oor:string-list">
+ <prop oor:name="SortedFilterList" oor:type="oor:string-list" oor:nillable="false">
<info>
<desc>Its a sorted list of internal filter names. All filters which are not listed here are appended alphabeticly at the end of this list</desc>
</info>
diff --git a/officecfg/registry/schema/org/openoffice/UserProfile.xcs b/officecfg/registry/schema/org/openoffice/UserProfile.xcs
index 1ff7c0aa05ce..38075608cebd 100644
--- a/officecfg/registry/schema/org/openoffice/UserProfile.xcs
+++ b/officecfg/registry/schema/org/openoffice/UserProfile.xcs
@@ -35,7 +35,7 @@
<info>
<desc>Contains user-related information, such as name and address.</desc>
</info>
- <prop oor:name="o" oor:type="xs:string">
+ <prop oor:name="o" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: User -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - User Data -->
@@ -46,7 +46,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="givenname" oor:type="xs:string">
+ <prop oor:name="givenname" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: User -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - User Data -->
@@ -57,7 +57,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="sn" oor:type="xs:string">
+ <prop oor:name="sn" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: User -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - User Data -->
@@ -68,7 +68,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="initials" oor:type="xs:string">
+ <prop oor:name="initials" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: User -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - User Data -->
@@ -79,7 +79,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="street" oor:type="xs:string">
+ <prop oor:name="street" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: User -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - User Data -->
@@ -90,7 +90,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="l" oor:type="xs:string">
+ <prop oor:name="l" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: User -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - User Data -->
@@ -101,7 +101,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="st" oor:type="xs:string">
+ <prop oor:name="st" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: User -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - User Data -->
@@ -112,7 +112,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="postalcode" oor:type="xs:string">
+ <prop oor:name="postalcode" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: User -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - User Data -->
@@ -123,7 +123,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="c" oor:type="xs:string">
+ <prop oor:name="c" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: User -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - User Data -->
@@ -134,7 +134,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="title" oor:type="xs:string">
+ <prop oor:name="title" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: User -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - User Data -->
@@ -145,7 +145,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="position" oor:type="xs:string">
+ <prop oor:name="position" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: User -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - User Data -->
@@ -156,7 +156,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="homephone" oor:type="xs:string">
+ <prop oor:name="homephone" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: User -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - User Data -->
@@ -167,7 +167,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="telephonenumber" oor:type="xs:string">
+ <prop oor:name="telephonenumber" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: User -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - User Data -->
@@ -178,7 +178,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="facsimiletelephonenumber" oor:type="xs:string">
+ <prop oor:name="facsimiletelephonenumber" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: User -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - User Data -->
@@ -189,7 +189,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="mail" oor:type="xs:string">
+ <prop oor:name="mail" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: User -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - User Data -->
@@ -200,7 +200,7 @@
<value/>
<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
</prop>
- <prop oor:name="UserGroup" oor:type="xs:string">
+ <prop oor:name="UserGroup" oor:type="xs:string" oor:nillable="false">
<!-- OldPath: User -->
<!-- OldLocation: soffice.ini -->
<!-- UIHints: Tools - Options - General - User Data -->
@@ -210,7 +210,7 @@
</info>
<value>UserGroup</value>
</prop>
- <prop oor:name="fathersname" oor:type="xs:string">
+ <prop oor:name="fathersname" oor:type="xs:string" oor:nillable="false">
<!-- UIHints: Tools - Options - General - User Data -->
<info>
<author>rail</author>
@@ -218,7 +218,7 @@
</info>
<value/>
</prop>
- <prop oor:name="apartment" oor:type="xs:string">
+ <prop oor:name="apartment" oor:type="xs:string" oor:nillable="false">
<!-- UIHints: Tools - Options - General - User Data -->
<info>
<author>pb</author>