Bump version to 24.04.3.4
[LibreOffice.git] / officecfg / registry / component-update.dtd
blob0659e412305bae1a2415a86b25673d1ae9397a66
1 <!--
2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
17 -->
19 <!ELEMENT oor:component-data ((node | prop)*)>
20 <!ATTLIST oor:component-data
21 oor:package CDATA #REQUIRED
22 oor:name CDATA #REQUIRED
23 oor:op (modify | replace | fuse | remove) #IMPLIED
24 oor:finalized (false | true) #IMPLIED
25 xmlns:oor CDATA #FIXED "http://openoffice.org/2001/registry"
26 xmlns:xs CDATA #FIXED "http://www.w3.org/2001/XMLSchema"
27 xmlns:xsi CDATA #FIXED "http://www.w3.org/2001/XMLSchema-instance"
28 xmlns:install CDATA #FIXED "http://openoffice.org/2004/installation">
30 <!ELEMENT node ((node | prop)*)>
31 <!ATTLIST node
32 oor:name CDATA #REQUIRED
33 oor:op (modify | replace | fuse | remove) #IMPLIED
34 oor:finalized (true | false) #IMPLIED
35 oor:mandatory (true | false) #IMPLIED
36 oor:node-type CDATA #IMPLIED
37 oor:component CDATA #IMPLIED
38 install:module CDATA #IMPLIED>
40 <!ELEMENT prop (value*)>
41 <!ATTLIST prop
42 oor:name CDATA #REQUIRED
43 oor:op (modify | replace | fuse | remove) #IMPLIED
44 oor:finalized (true | false) #IMPLIED
45 oor:type
46 (oor:any | xs:boolean | xs:short | xs:int | xs:long | xs:double |
47 xs:string | xs:hexBinary | oor:boolean-list | oor:short-list |
48 oor:int-list | oor:long-list | oor:double-list | oor:string-list |
49 oor:hexBinary-list)
50 #IMPLIED
51 install:module CDATA #IMPLIED>
53 <!ELEMENT value (#PCDATA | it | unicode)*>
54 <!-- EMPTY if oor:op="remove", xsi:nil="true", or oor:external is used
55 #PCDATA if the property type is a non-list type other than xs:string
56 (#PCDATA | unicode)* if the property type is xs:string
57 #PCDATA or it* if the property type is a list type other than
58 oor:string-list
59 (#PCDATA | unicode)* or it* if the property type is
60 oor:string-list -->
61 <!ATTLIST value
62 xml:lang CDATA #IMPLIED
63 oor:op (fuse | remove) #IMPLIED
64 xsi:nil (true | false) #IMPLIED
65 oor:type
66 (xs:boolean | xs:short | xs:int | xs:long | xs:double | xs:string |
67 xs:hexBinary | oor:boolean-list | oor:short-list | oor:int-list |
68 oor:long-list | oor:double-list | oor:string-list | oor:hexBinary-list)
69 #IMPLIED
70 oor:separator CDATA #IMPLIED
71 oor:external CDATA #IMPLIED
72 install:module CDATA #IMPLIED>
73 <!-- xml:lang must only be used for localized properties; defaults to the
74 empty string
75 oor:op defaults to "fuse"; "remove" must only be used for localized
76 properties
77 xsi:nil defaults to "false"; "true" must only be used for nillable
78 properties
79 oor:type is relevant for localized properties of type oor:any with
80 different value types for different locales
81 oor:separator must only be used if the property type is a list type
82 and the element content is #PCDATA or (#PCDATA | unicode)* (and not
83 EMPTY or it*)
84 oor:external must only be used for non-localized properties and must
85 not be used together with xsi:nil="true" -->
87 <!ELEMENT it (#PCDATA | unicode)*>
88 <!-- #PCDATA if the property type is a list type other than
89 oor:string-list
90 (#PCDATA | unicode)* if the property type is oor:string-list -->
91 <!ATTLIST it>
93 <!ELEMENT unicode EMPTY>
94 <!ATTLIST unicode
95 oor:scalar NMTOKEN #REQUIRED>
96 <!-- must syntactically match xs:integer and have a value in {0, ..., 8,
97 11, 12, 14, ..., 31, 65534, 65535} -->
99 <!-- oor:items is an alternative root element to oor:component-data: -->
101 <!ELEMENT oor:items (item*)>
102 <!ATTLIST oor:items>
104 <!ELEMENT item ((node | prop | value)*)>
105 <!ATTLIST item
106 oor:path CDATA #REQUIRED>
107 <!-- the absolute path representation of a localized property or a group
108 or set node -->