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-schema SYSTEM "../../../../component-schema.dtd">
25<oor:component-schema oor:name="CalcAddIns" oor:package="org.openoffice.Office" xml:lang="en-US" xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
26	<info>
27		<author>NN</author>
28		<desc>Contains add-in function configuration.</desc>
29	</info>
30	<templates>
31		<group oor:name="AddInParameter" >
32			<info><desc>Describes one parameter.</desc></info>
33			<prop oor:name="DisplayName" oor:type="xs:string" oor:localized="true">
34				<info><desc>Specifies the user-visible name of the parameter.</desc></info>
35			</prop>
36			<prop oor:name="Description" oor:type="xs:string" oor:localized="true">
37				<info><desc>Specifies a description of the parameter.</desc></info>
38			</prop>
39		</group>
40		<group oor:name="AddInFunction">
41			<info><desc>Describes one function.</desc></info>
42			<prop oor:name="DisplayName" oor:type="xs:string" oor:localized="true">
43				<info><desc>Specifies the user-visible name of the function.</desc></info>
44			</prop>
45			<prop oor:name="Description" oor:type="xs:string" oor:localized="true">
46				<info><desc>Specifies a description of the function.</desc></info>
47			</prop>
48			<prop oor:name="Category" oor:type="xs:string">
49				<info><desc>Specifies the programmatic name of the category the function belongs to.</desc></info>
50			</prop>
51			<prop oor:name="CategoryDisplayName" oor:type="xs:string" oor:localized="true">
52				<info><desc>Specifies the user-visible name of the category the function belongs to.</desc></info>
53			</prop>
54			<prop oor:name="CompatibilityName" oor:type="xs:string" oor:localized="true">
55				<info><desc>Specifies a localized function name for exchange with other applications.</desc></info>
56			</prop>
57			<set oor:name="Parameters" oor:node-type="AddInParameter">
58				<info><desc>Specifies the function's parameters.</desc></info>
59			</set>
60		</group>
61		<group oor:name="AddIn">
62			<info><desc>Describes one add-in component.</desc></info>
63			<set oor:name="AddInFunctions" oor:node-type="AddInFunction">
64				<info><desc>Specifies the component's functions.</desc></info>
65			</set>
66		</group>
67	</templates>
68	<component>
69		<set oor:name="AddInInfo" oor:node-type="AddIn">
70			<info><desc>Specifies the installed add-in components.</desc></info>
71		</set>
72	</component>
73</oor:component-schema>
74