blob: 10c4632a91de829bb4db2d497657c9efb4dcd54b (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<!ELEMENT oor:component-data ((prop|node)*)>
<!ATTLIST oor:component-data
oor:name NMTOKEN #REQUIRED
oor:package NMTOKEN #REQUIRED
oor:finalized (true | false) #IMPLIED
oor:op (modify | replace | fuse | remove | reset) #IMPLIED
xmlns:oor CDATA #FIXED "http://openoffice.org/2001/registry"
xmlns:install CDATA #FIXED "http://openoffice.org/2004/installation"
xmlns:xs CDATA #FIXED "http://www.w3.org/2001/XMLSchema"
xmlns:xsi CDATA #FIXED "http://www.w3.org/2001/XMLSchema-instance"
>
<!ELEMENT node ((prop|node)*)>
<!ATTLIST node
oor:name CDATA #REQUIRED
oor:component CDATA #IMPLIED
oor:finalized (true | false) #IMPLIED
oor:mandatory (true | false) #IMPLIED
oor:op (modify | replace | fuse | remove | reset) #IMPLIED
oor:node-type NMTOKEN #IMPLIED
install:module NMTOKEN #IMPLIED
>
<!ELEMENT prop (value*)>
<!ATTLIST prop
oor:name CDATA #REQUIRED
oor:op (modify | replace | fuse | remove | reset) #IMPLIED
oor:finalized CDATA #IMPLIED
oor:type (xs:boolean | xs:short | xs:int | xs:long | xs:double | xs:string | xs:hexBinary | oor:boolean-list | oor:short-list | oor:int-list | oor:long-list | oor:double-list | oor:string-list | oor:hexBinary-list) #IMPLIED
install:module NMTOKEN #IMPLIED
>
<!ELEMENT value (#PCDATA)>
<!ATTLIST value
xsi:nil (true | false) #IMPLIED
oor:separator CDATA #IMPLIED
xml:lang CDATA #IMPLIED
install:module NMTOKEN #IMPLIED
>
|