blob: 2260264b6b2a27632007d5a85881d660c864a921 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
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>
|