xref: /AOO41X/main/officecfg/registry/schema/org/openoffice/Office/Histories.xcs (revision 83137a03adbb58b5b3bdafefefa1e93de35e0011)
1<?xml version='1.0' encoding='UTF-8'?>
2<!--***********************************************************
3 *
4 * Licensed to the Apache Software Foundation (ASF) under one
5 * or more contributor license agreements.  See the NOTICE file
6 * distributed with this work for additional information
7 * regarding copyright ownership.  The ASF licenses this file
8 * to you under the Apache License, Version 2.0 (the
9 * "License"); you may not use this file except in compliance
10 * with the License.  You may obtain a copy of the License at
11 *
12 *   http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing,
15 * software distributed under the License is distributed on an
16 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 * KIND, either express or implied.  See the License for the
18 * specific language governing permissions and limitations
19 * under the License.
20 *
21 ***********************************************************-->
22
23
24<!DOCTYPE oor:component-data SYSTEM "../../../../component-update.dtd">
25<oor:component-schema oor:package="org.openoffice.Office"
26                      oor:name="Histories"
27                      xml:lang="en-US"
28                      xmlns:oor="http://openoffice.org/2001/registry"
29                      xmlns:xs="http://www.w3.org/2001/XMLSchema"
30                      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
31
32    <info>
33        <desc>Contains Picklist, URL-History and Help-Bookmarks data.</desc>
34    </info>
35
36    <templates>
37
38        <group oor:name="HistoryItem">
39            <info>
40                <desc>Describe an history item in it's details. Use URL as node name.</desc>
41            </info>
42            <prop oor:name="Filter" oor:type="xs:string">
43                <info>
44                    <desc>Specifies the filter name that was chosen to load the document.</desc>
45                </info>
46            </prop>
47            <prop oor:name="Title" oor:type="xs:string">
48                <info>
49                    <desc>Indicates the title of the URL that is displayed on the user-interface.</desc>
50                </info>
51            </prop>
52            <prop oor:name="Password" oor:type="xs:string">
53                <info>
54                    <desc>Contains an encoded password used to open the document.</desc>
55                </info>
56            </prop>
57        </group>
58
59        <group oor:name="HistoryOrder">
60            <info>
61                <desc>Map an ordered number to all existing history items.</desc>
62            </info>
63            <prop oor:name="HistoryItemRef" oor:type="xs:string">
64                <info>
65                    <desc>Reference to an item of the orginal history list.</desc>
66                </info>
67            </prop>
68        </group>
69
70        <group oor:name="HistoryInfo">
71            <info>
72                <desc>Combines item and order list to a complete history description.</desc>
73            </info>
74            <set oor:name="ItemList" oor:node-type="HistoryItem">
75                <info>
76                    <desc>Contains all items identified by it's URL.</desc>
77                </info>
78            </set>
79            <set oor:name="OrderList" oor:node-type="HistoryOrder">
80                <info>
81                    <desc>Bring an order to all items of set ItemList.</desc>
82                </info>
83            </set>
84        </group>
85
86    </templates>
87
88    <component>
89
90        <set oor:name="Histories" oor:node-type="HistoryInfo">
91            <info>
92                <desc>Contains all histories of OOo. Can be extended easy to know any history you like.</desc>
93            </info>
94        </set>
95
96    </component>
97</oor:component-schema>
98
99