diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
commit | ed5640d8b587fbcfed7dd7967f3de04b37a76f26 (patch) | |
tree | 7a5f7c6c9d02226d7471cb3cc8fbbf631b415303 /officecfg/registry/schema/org/openoffice/Office/Update.xcs | |
parent | Initial commit. (diff) | |
download | libreoffice-ed5640d8b587fbcfed7dd7967f3de04b37a76f26.tar.xz libreoffice-ed5640d8b587fbcfed7dd7967f3de04b37a76f26.zip |
Adding upstream version 4:7.4.7.upstream/4%7.4.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'officecfg/registry/schema/org/openoffice/Office/Update.xcs')
-rw-r--r-- | officecfg/registry/schema/org/openoffice/Office/Update.xcs | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/officecfg/registry/schema/org/openoffice/Office/Update.xcs b/officecfg/registry/schema/org/openoffice/Office/Update.xcs new file mode 100644 index 000000000..2260264b6 --- /dev/null +++ b/officecfg/registry/schema/org/openoffice/Office/Update.xcs @@ -0,0 +1,71 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + --> + +<!DOCTYPE oor:component-schema SYSTEM "../../../../component-schema.dtd"> +<oor:component-schema xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" oor:name="Update" oor:package="org.openoffice.Office" xml:lang="en-US"> + <info> + <desc>Contains settings for the Updater</desc> + </info> + <component> + <group oor:name="Update"> + <info> + <desc>All Settings for the Updater</desc> + </info> + <prop oor:name="Enabled" oor:type="xs:boolean" oor:nillable="false"> + <info> + <desc>Determines if the automatic Updater is enabled or disabled</desc> + </info> + <value>true</value> + </prop> + <prop oor:name="Mode" oor:type="xs:int" oor:nillable="false"> + <info> + <desc>Selects if the user should be asked about updates or not</desc> + </info> + <value>Some Value</value> + </prop> + <prop oor:name="LastUpdateTime" oor:type="xs:long" oor:nillable="false"> + <info> + <desc>The last time the update check ran</desc> + </info> + <value>0</value> + </prop> + <prop oor:name="URL" oor:type="xs:string" oor:nillable="false"> + <info> + <desc>The URL that is used for the update check</desc> + </info> + <value>http://vm195.documentfoundation.org/</value> + </prop> + <prop oor:name="UpdateChannel" oor:type="xs:string" oor:nillable="false"> + <info> + <desc>The update channel that is currently in use</desc> + </info> + <value>daily-master-gandalf</value> + </prop> + <prop oor:name="UpdateRunning" oor:type="xs:boolean" oor:nillable="false"> + <info> + <desc>Determines if we are currently in an update process. + Needs to be reset after the update has been applied</desc> + </info> + <value>false</value> + </prop> + <prop oor:name="OldBuildID" oor:type="xs:string" oor:nillable="false"> + <info> + <desc>The build ID of the build before the update</desc> + </info> + <value></value> + </prop> + <prop oor:name="SeeAlso" oor:type="xs:string" oor:nillable="false"> + <info> + <desc>The URL to open after a successful update.</desc> + </info> + <value></value> + </prop> + </group> + </component> +</oor:component-schema> |