summaryrefslogtreecommitdiff
path: root/officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs
blob: 670bf93c0127d63b1441c7d39b960e8a9c25a289 (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
<?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/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-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="DataAccess" oor:package="org.openoffice.Office" xml:lang="en-US"> <info>
		<author>OJ</author>
	</info>
	<import oor:component="org.openoffice.Office.Common"/>
	<uses oor:component="org.openoffice.Office.Common"/>
	<templates>
		<info>
			<author>OJ</author>
		</info>
		<group oor:name="DatabaseDocumentRegistration">
			<info>
				<desc>describes a single database document registration.</desc>
			</info>
			<prop oor:name="Name" oor:type="xs:string">
				<info>
					<desc>Specifies the name of the database.</desc>
				</info>
			</prop>
			<prop oor:name="Location" oor:type="xs:string">
				<info>
					<desc>Specifies the location of the database.</desc>
				</info>
			</prop>
		</group>
		<group oor:name="EmbeddedDatabaseSetting">
			<info>
				<desc>Describes a setting for an embedded database.</desc>
			</info>
			<prop oor:name="Value" oor:type="oor:any">
				<info>
                    <desc>Describes the value for an embedded database setting.</desc>
				</info>
			</prop>
		</group>
		<group oor:name="ReportEngineName">
			<info>
				<desc>Describes the report engine.</desc>
			</info>
			<prop oor:name="ServiceName" oor:type="xs:string">
				<info>
					<desc>Specifies the service name for the report engine.</desc>
				</info>
			</prop>
			<prop oor:name="UIName" oor:type="xs:string">
				<info>
					<desc>Specifies the product name of the report engine.</desc>
				</info>
			</prop>
		</group>
		<group oor:name="EmbeddedDatabaseName">
			<info>
				<desc>Describes the URL schema for an embedded database. They must start with sdbc:embedded:.</desc>
			</info>
			<prop oor:name="URL" oor:type="xs:string">
				<info>
					<desc>Specifies the URL for the embedded database.</desc>
				</info>
			</prop>
			<prop oor:name="UIName" oor:type="xs:string" oor:localized="true">
				<info>
					<desc>Specifies the name of the embedded database which will be displayed in the statusbar of the database application.</desc>
				</info>
			</prop>
			<set oor:name="EmbeddedDatabaseSettings" oor:node-type="EmbeddedDatabaseSetting">
				<info>
					<desc>Specifies the settings of an embedded database.</desc>
				</info>
			</set>
		</group>
		<group oor:name="DataSource">
			<info>
				<desc>Specifies the data source to be used for the bibliography.</desc>
			</info>
			<prop oor:name="DataSourceName" oor:type="xs:string">
				<info>
					<desc>Specifies the name of the registered data source.</desc>
				</info>
			</prop>
			<prop oor:name="Command" oor:type="xs:string">
				<info>
					<desc>Specifies the command to execute on the data source to retrieve the result set. This may be an SQL command or a table name or a query name.</desc>
				</info>
			</prop>
			<prop oor:name="CommandType" oor:type="xs:short">
				<info>
					<desc>Determines the exact meaning of Command. Valid values are: 0 - Command is a table name 1 - Command is a query name 2 - Command is an SQL command.</desc>
				</info>
			</prop>
			<set oor:name="Fields" oor:node-type="FieldAssignment">
				<info>
					<desc>Specifies the column name mapping between the programatic column name and the logical column name.</desc>
				</info>
			</set>
		</group>
		<group oor:name="FieldAssignment">
			<info>
				<desc>Specifies the mapping between the desired (logical) column titles and the real column titles of the data source.</desc>
			</info>
			<prop oor:name="ProgrammaticFieldName" oor:type="xs:string">
				<info>
					<desc>Specifies the desired (logical) column name.</desc>
				</info>
			</prop>
			<prop oor:name="AssignedFieldName" oor:type="xs:string">
				<info>
					<desc>Specifies the real column name used in the data source.</desc>
				</info>
			</prop>
		</group>
		<group oor:name="DriverPooling">
			<info>
				<desc>Specifies the connection pooling of used database drivers.</desc>
			</info>
			<prop oor:name="DriverName" oor:type="xs:string">
				<info>
					<desc>Specifies the name of the database drivers.</desc>
				</info>
			</prop>
			<prop oor:name="Enable" oor:type="xs:boolean">
				<info>
					<desc>Specifies if the pooling for this driver should be enabled.</desc>
				</info>
			</prop>
			<prop oor:name="Timeout" oor:type="xs:int">
				<info>
					<desc>Specifies the time after a connection will be released.</desc>
				</info>
			</prop>
		</group>
        <group oor:name="DriverClassPath">
          <info>
            <desc>Specifies the path or jar to the Java driver class.</desc>
          </info>
          <prop oor:name="Path" oor:type="xs:string">
            <info>
              <desc>Specifies the class path where the JDBC driver class can be found.</desc>
            </info>
          </prop>
        </group>
		<group oor:name="UserDefinedDriver">
			<info>
				<desc>Specifies the user defined database drivers which should appear in the data source administration dialog.</desc>
			</info>
			<prop oor:name="DriverPageDisplayName" oor:type="xs:string">
				<info>
					<desc>Specifies the display name of the database driver page.</desc>
				</info>
			</prop>
			<prop oor:name="DriverTypeDisplayName" oor:type="xs:string">
				<info>
					<desc>Specifies the display name of the database driver.</desc>
				</info>
			</prop>
			<prop oor:name="DriverDsnPrefix" oor:type="xs:string">
				<info>
					<desc>Specifies the prefix of the URL of the database driver.</desc>
				</info>
			</prop>
			<prop oor:name="Extension" oor:type="xs:string" oor:nillable="false">
                <info><desc>The file extension, which match to this type. Only set when it is file based driver</desc></info>
				<value/>
            </prop>
		</group>
	</templates>
	<component>
		<info>
			<author>OJ</author>
		</info>
        <group oor:name="Policies">
            <info>
                <desc>Defines different policies for working with OpenOffice.org Base.</desc>
            </info>
            <group oor:name="Features">
                <info>
                    <desc>controls availability of certain database access related features in the OpenOffice.org applications.</desc>
                </info>
                <group oor:name="Base">
                    <info>
                        <desc>controls availability of features within OpenOffice.org Base.</desc>
                    </info>
                    <prop oor:name="CreateLocalDatabase" oor:type="xs:boolean" oor:nillable="false">
                        <info>
                            <desc>Specifies that the user is able to create new local database documents in the "Create Database" wizard.</desc>
                        </info>
                        <value>true</value>
                    </prop>
                </group>
                <group oor:name="Writer">
                    <info>
                        <desc>Specifies which data-access related features are available in OpenOffice.org Writer.</desc>
                    </info>
                    <prop oor:name="DatabaseFields" oor:type="xs:boolean" oor:nillable="false">
                        <info>
                            <desc>Specifies that the Database tab page should be available in the fields dialog.</desc>
                        </info>
                        <value>true</value>
                    </prop>
                </group>
                <group oor:name="Common">
                    <info>
                        <desc>Specifies which data-access related features, usually existent in all applications, are available.</desc>
                    </info>
                    <prop oor:name="EditDatabaseFromDataSourceView" oor:type="xs:boolean" oor:nillable="false">
                        <info>
                            <desc>Specifies that the data source view (also known as data source browser) should offer the "Edit database file" context menu entry.</desc>
                        </info>
                        <value>true</value>
                    </prop>
                </group>
            </group>
        </group>
        <group oor:name="ReportEngines">
			<info>
				<desc>Specifies the default report engine which should be used.</desc>
			</info>
			<prop oor:name="DefaultReportEngine" oor:type="xs:string">
				<info>
					<desc>Specifies the name of the report engine to use.</desc>
				</info>
			</prop>
			<set oor:name="ReportEngineNames" oor:node-type="ReportEngineName">
				<info>
					<desc>Specifies all report engine names which are registered.</desc>
				</info>
			</set>
		</group>
		<group oor:name="EmbeddedDatabases">
			<info>
				<desc>Specifies the default embedded database which should be used.</desc>
			</info>
			<prop oor:name="DefaultEmbeddedDatabase" oor:type="xs:string">
				<info>
					<desc>Specifies the name of the embedded database to use.</desc>
				</info>
			</prop>
			<set oor:name="EmbeddedDatabaseNames" oor:node-type="EmbeddedDatabaseName">
				<info>
					<desc>Specifies all embedded database names which are registered.</desc>
				</info>
			</set>
		</group>
		<group oor:name="DriverManager">
			<info>
				<desc>Specifies additional information about the database drivers.</desc>
			</info>
			<prop oor:name="DriverPrecedence" oor:type="oor:string-list" oor:nillable="false">
				<info>
					<desc>Specifies order of database drivers in which they should be asked if the accept the connection string.</desc>
				</info>
				<value oor:separator=";">com.sun.star.comp.sdbc.ODBCDriver;com.sun.star.comp.sdbc.JDBCDriver</value>
			</prop>
		</group>
		<group oor:name="ConnectionPool">
			<info>
				<desc>Specifies all information which is needed for the global connection pool.</desc>
			</info>
			<prop oor:name="EnablePooling" oor:type="xs:boolean" oor:nillable="false">
				<info>
					<desc>Specifies if the global connection pool is enabled.</desc>
				</info>
				<value>false</value>
			</prop>
			<set oor:name="DriverSettings" oor:node-type="DriverPooling">
				<info>
					<desc>Specifies the connection pooling of used database drivers.</desc>
				</info>
			</set>
		</group>

        <group oor:name="JDBC">
          <info>
            <desc>Specifies all information which is needed for the connections established using JDBC.</desc>
          </info>
          <set oor:name="DriverClassPaths" oor:node-type="DriverClassPath">
            <info>
              <desc>Specifies the class paths where to find JDBC database drivers. The node name specifies the name
                    of the JDBC driver which is to be loaded.</desc>
            </info>
          </set>
        </group>

		<set oor:name="RegisteredNames" oor:node-type="DatabaseDocumentRegistration">
			<info>
				<desc>Specifies the database documents registered within OpenOffice.org, for quick access by a programmatic name.</desc>
			</info>
		</set>

		<set oor:name="UserDefinedDriverSettings" oor:node-type="UserDefinedDriver">
			<info>
				<desc>Contains a list of descriptions for user defined drivers.</desc>
			</info>
		</set>

		<group oor:name="AddressBook">
			<info>
				<desc>Specifies the data source that can be used as an AddressBook.</desc>
			</info>
			<prop oor:name="DataSourceName" oor:type="xs:string" oor:nillable="false">
				<info>
					<desc>Specifies the name of the registered data source.</desc>
				</info>
				<value/>
				<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
			</prop>
			<prop oor:name="Command" oor:type="xs:string" oor:nillable="false">
				<info>
					<desc>Specifies the command to execute on the data source to retrieve the result set. This may be an SQL command or a table name or a query name.</desc>
				</info>
				<value/>
				<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
			</prop>
			<prop oor:name="CommandType" oor:type="xs:short">
				<info>
					<desc>Determines the exact meaning of Command. Valid values are: 0 - Command is a table name 1 - Command is a query name 2 - Command is an SQL command.</desc>
				</info>
			</prop>
			<prop oor:name="AutoPilotCompleted" oor:type="xs:boolean" oor:nillable="false">
				<info>
					<desc>Specifies if the auto pilot is completed.</desc>
				</info>
				<value>false</value>
			</prop>
			<set oor:name="Fields" oor:node-type="FieldAssignment">
				<info>
					<desc>Specifies the column name mapping between the programatic column name and the logical column name.</desc>
				</info>
			</set>
		</group>

		<group oor:name="Bibliography">
			<info>
				<author>OS</author>
				<desc>Specifies settings of the bibliography component</desc>
			</info>
			<prop oor:name="BeamerHeight" oor:type="xs:int">
				<info>
					<desc>Specifies the height of the database beamer</desc>
				</info>
			</prop>
			<prop oor:name="ViewHeight" oor:type="xs:int">
				<info>
					<desc>Specifies the height of the view window</desc>
				</info>
			</prop>
			<prop oor:name="QueryText" oor:type="xs:string" oor:nillable="false">
				<info>
					<desc>Specifies the search text for filtering</desc>
				</info>
				<value/>
				<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
			</prop>
			<prop oor:name="QueryField" oor:type="xs:string" oor:nillable="false">
				<info>
					<desc>Specifies the search field for filtering</desc>
				</info>
				<value/>
				<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
			</prop>
			<prop oor:name="ShowColumnAssignmentWarning" oor:type="xs:boolean" oor:nillable="false">
				<info>
					<desc>Determines whether a non-assigned column results in a warning box.</desc>
				</info>
				<value>true</value>
			</prop>
			<node-ref oor:name="CurrentDataSource" oor:node-type="DataSource">
				<!-- OldPath: Bibliography/BibliographyCurrent-->
				<!-- OldLocation: Soffice.ini-->
				<info>
					<author>OS</author>
					<desc>Determines the current data source for the bibliography.</desc>
				</info>
			</node-ref>
			<set oor:name="DataSourceHistory" oor:node-type="DataSource">
				<!--OldPath: Bibliography/Bibliography-->
				<!--OldLocation: Soffice.ini-->
				<info>
					<author>OS</author>
					<desc>Specifies the data source that can be used as a bibliography.</desc>
				</info>
			</set>
		</group>

		<group oor:name="DriverSettings">
			<info>
				<desc>Specifies the driver settings that are used.</desc>
			</info>

			<group oor:name="com.sun.star.comp.sdbc.MozabDriver">
				<info>
					<desc>Specifies the driver settings for the mozilla database driver.</desc>
				</info>
				<group oor:name="MozillaPreferences">
					<info>
						<desc>Specifies the mozilla preferences.</desc>
					</info>
					<prop oor:name="ProfileName" oor:type="xs:string" oor:nillable="false">
						<info>
							<desc>Specifies the mozilla profile name.</desc>
						</info>
						<value/>
						<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
					</prop>
					<prop oor:name="PabDescription" oor:type="xs:string" oor:localized="true" oor:nillable="false">
						<info>
							<desc>Describes the name of the table which the Mozilla Personal Address Book is mapped to</desc>
						</info>
						<value/>
					</prop>
					<prop oor:name="HisDescription" oor:type="xs:string" oor:localized="true" oor:nillable="false">
						<info>
							<desc>Describes the name of the table which the Mozilla Collected Addresses is mapped to</desc>
						</info>
						<value/>
					</prop>
				</group>
				<group oor:name="ColumnAliases">
					<info>
						<desc>Specifies the column alias names used.</desc>
					</info>
					<prop oor:name="FirstName" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the first name.</desc>
						</info>
					</prop>
					<prop oor:name="LastName" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the last name.</desc>
						</info>
					</prop>
					<prop oor:name="DisplayName" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the display name.</desc>
						</info>
					</prop>
					<prop oor:name="NickName" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the nickname.</desc>
						</info>
					</prop>
					<prop oor:name="PrimaryEmail" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the primary email.</desc>
						</info>
					</prop>
					<prop oor:name="SecondEmail" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the first name.</desc>
						</info>
					</prop>
					<prop oor:name="PreferMailFormat" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the preferred mail format.</desc>
						</info>
					</prop>
					<prop oor:name="WorkPhone" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the phone at work.</desc>
						</info>
					</prop>
					<prop oor:name="HomePhone" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the phone at home.</desc>
						</info>
					</prop>
					<prop oor:name="FaxNumber" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the fax number.</desc>
						</info>
					</prop>
					<prop oor:name="PagerNumber" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the pager number.</desc>
						</info>
					</prop>
					<prop oor:name="CellularNumber" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the cellular number.</desc>
						</info>
					</prop>
					<prop oor:name="HomeAddress" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the home address.</desc>
						</info>
					</prop>
					<prop oor:name="HomeAddress2" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the 2nd home address.</desc>
						</info>
					</prop>
					<prop oor:name="HomeCity" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the home city.</desc>
						</info>
					</prop>
					<prop oor:name="HomeState" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the home state.</desc>
						</info>
					</prop>
					<prop oor:name="HomeZipCode" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the home ZIP code.</desc>
						</info>
					</prop>
					<prop oor:name="HomeCountry" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the home country.</desc>
						</info>
					</prop>
					<prop oor:name="WorkAddress" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the work address.</desc>
						</info>
					</prop>
					<prop oor:name="WorkAddress2" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the 2nd work address.</desc>
						</info>
					</prop>
					<prop oor:name="WorkCity" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the work city.</desc>
						</info>
					</prop>
					<prop oor:name="WorkState" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the work state.</desc>
						</info>
					</prop>
					<prop oor:name="WorkZipCode" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the work ZIP code.</desc>
						</info>
					</prop>
					<prop oor:name="WorkCountry" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the work country.</desc>
						</info>
					</prop>
					<prop oor:name="JobTitle" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the job title.</desc>
						</info>
					</prop>
					<prop oor:name="Department" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the department.</desc>
						</info>
					</prop>
					<prop oor:name="Company" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the company.</desc>
						</info>
					</prop>
					<prop oor:name="WebPage1" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the 1st webpage.</desc>
						</info>
					</prop>
					<prop oor:name="WebPage2" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the 2nd webpage.</desc>
						</info>
					</prop>
					<prop oor:name="BirthYear" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the birth year.</desc>
						</info>
					</prop>
					<prop oor:name="BirthMonth" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the birth month.</desc>
						</info>
					</prop>
					<prop oor:name="BirthDay" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the birth day.</desc>
						</info>
					</prop>
					<prop oor:name="Custom1" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the 1st custom field.</desc>
						</info>
					</prop>
					<prop oor:name="Custom2" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the 2nd custom field.</desc>
						</info>
					</prop>
					<prop oor:name="Custom3" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the 3rd custom field.</desc>
						</info>
					</prop>
					<prop oor:name="Custom4" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the 4th custom field.</desc>
						</info>
					</prop>
					<prop oor:name="Notes" oor:type="xs:string" oor:localized="true">
						<info>
							<desc>Specifies the notes.</desc>
						</info>
					</prop>
				</group>
			</group>

			<group oor:name="com.sun.star.comp.sdbc.evoab.OEvoabDriver">
				<info>
					<desc>Specifies the driver settings for the evolution database driver.</desc>
				</info>
				<group oor:name="EvolutionPreferences">
					<info>
						<desc>Specifies the evolution preferences.</desc>
					</info>
					<prop oor:name="FullPathExportingCommand" oor:type="xs:string" oor:nillable="false">
						<info>
							<desc>Specifies the evolution full path exporting command name.</desc>
						</info>
						<value/>
						<!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
					</prop>
				</group>
				<group oor:name="ColumnAliases">
					<info>
						<desc>Specifies the column alias names used.</desc>
					</info>
					<prop oor:name="FirstName" oor:type="xs:string">
						<info>
							<desc>Specifies the first name.</desc>
						</info>
					</prop>
					<prop oor:name="LastName" oor:type="xs:string">
						<info>
							<desc>Specifies the last name.</desc>
						</info>
					</prop>
					<prop oor:name="DisplayName" oor:type="xs:string">
						<info>
							<desc>Specifies the display name.</desc>
						</info>
					</prop>
					<prop oor:name="NickName" oor:type="xs:string">
						<info>
							<desc>Specifies the nickname.</desc>
						</info>
					</prop>
					<prop oor:name="PrimaryEmail" oor:type="xs:string">
						<info>
							<desc>Specifies the primary email.</desc>
						</info>
					</prop>
					<prop oor:name="SecondEmail" oor:type="xs:string">
						<info>
							<desc>Specifies the first name.</desc>
						</info>
					</prop>
					<prop oor:name="PreferMailFormat" oor:type="xs:string">
						<info>
							<desc>Specifies the perfered mail format.</desc>
						</info>
					</prop>
					<prop oor:name="WorkPhone" oor:type="xs:string">
						<info>
							<desc>Specifies the phone at work.</desc>
						</info>
					</prop>
					<prop oor:name="HomePhone" oor:type="xs:string">
						<info>
							<desc>Specifies the phone at home.</desc>
						</info>
					</prop>
					<prop oor:name="FaxNumber" oor:type="xs:string">
						<info>
							<desc>Specifies the fax number.</desc>
						</info>
					</prop>
					<prop oor:name="PagerNumber" oor:type="xs:string">
						<info>
							<desc>Specifies the pager number.</desc>
						</info>
					</prop>
					<prop oor:name="CellularNumber" oor:type="xs:string">
						<info>
							<desc>Specifies the cellular number.</desc>
						</info>
					</prop>
					<prop oor:name="HomeAddress" oor:type="xs:string">
						<info>
							<desc>Specifies the home address.</desc>
						</info>
					</prop>
					<prop oor:name="HomeAddress2" oor:type="xs:string">
						<info>
							<desc>Specifies the 2nd home address.</desc>
						</info>
					</prop>
					<prop oor:name="HomeCity" oor:type="xs:string">
						<info>
							<desc>Specifies the home city.</desc>
						</info>
					</prop>
					<prop oor:name="HomeState" oor:type="xs:string">
						<info>
							<desc>Specifies the home state.</desc>
						</info>
					</prop>
					<prop oor:name="HomeZipCode" oor:type="xs:string">
						<info>
							<desc>Specifies the home ZIP code.</desc>
						</info>
					</prop>
					<prop oor:name="HomeCountry" oor:type="xs:string">
						<info>
							<desc>Specifies the home country.</desc>
						</info>
					</prop>
					<prop oor:name="WorkAddress" oor:type="xs:string">
						<info>
							<desc>Specifies the work address.</desc>
						</info>
					</prop>
					<prop oor:name="WorkAddress2" oor:type="xs:string">
						<info>
							<desc>Specifies the 2nd work address.</desc>
						</info>
					</prop>
					<prop oor:name="WorkCity" oor:type="xs:string">
						<info>
							<desc>Specifies the work city.</desc>
						</info>
					</prop>
					<prop oor:name="WorkState" oor:type="xs:string">
						<info>
							<desc>Specifies the work state.</desc>
						</info>
					</prop>
					<prop oor:name="WorkZipCode" oor:type="xs:string">
						<info>
							<desc>Specifies the work ZIP code.</desc>
						</info>
					</prop>
					<prop oor:name="WorkCountry" oor:type="xs:string">
						<info>
							<desc>Specifies the work country.</desc>
						</info>
					</prop>
					<prop oor:name="JobTitle" oor:type="xs:string">
						<info>
							<desc>Specifies the job title.</desc>
						</info>
					</prop>
					<prop oor:name="Department" oor:type="xs:string">
						<info>
							<desc>Specifies the department.</desc>
						</info>
					</prop>
					<prop oor:name="Company" oor:type="xs:string">
						<info>
							<desc>Specifies the company.</desc>
						</info>
					</prop>
					<prop oor:name="WebPage1" oor:type="xs:string">
						<info>
							<desc>Specifies the 1st webpage.</desc>
						</info>
					</prop>
					<prop oor:name="WebPage2" oor:type="xs:string">
						<info>
							<desc>Specifies the 2nd webpage.</desc>
						</info>
					</prop>
					<prop oor:name="BirthYear" oor:type="xs:string">
						<info>
							<desc>Specifies the birth year.</desc>
						</info>
					</prop>
					<prop oor:name="BirthMonth" oor:type="xs:string">
						<info>
							<desc>Specifies the birth month.</desc>
						</info>
					</prop>
					<prop oor:name="BirthDay" oor:type="xs:string">
						<info>
							<desc>Specifies the birth day.</desc>
						</info>
					</prop>
					<prop oor:name="Notes" oor:type="xs:string">
						<info>
							<desc>Specifies the notes.</desc>
						</info>
					</prop>
				</group>
			</group>

            <group oor:name="com.sun.star.comp.sdbc.kab.Driver">
                <info>
                    <desc>Specifies the driver settings for the mozilla database driver.</desc>
                </info>
                <prop oor:name="DisableKDEMaximumVersionCheck" oor:type="xs:boolean" oor:nillable="false">
                    <info>
                        <desc>At runtime, the driver checks if the installed KDE version is too new to be supported.
                              In this case, it refuses creating connections. With the setting here, this check can
                              be disabled (which might do anything from simply work to crash).</desc>
                    </info>
                    <value>false</value>
                </prop>
            </group>

            <group oor:name="com.sun.star.sdbcx.comp.hsqldb.Driver">
                <info>
                    <desc>Specifies settings for the driver accessing HSQL databases embedded into OpenOffice.org
                          database documents (.odb)</desc>
                </info>
                <group oor:name="PermittedJavaMethods" oor:extensible="true">
                    <info>
                        <desc>HSQLDB features calling Java code directly from SQL statements. For security
                              reasons, this is restricted to classes from the org.hsqldb.Library package,
                              the java.lang.math package, plus any methods specified in this configuraton
                              setting. If a method specification ends with .*, then all methods
                              from the respectiv package are permitted.</desc>
                    </info>
                </group>
            </group>

        </group>

		<group oor:name="FormSearchOptions">
			<info>
				<desc>Specifies the options for searching in forms.</desc>
			</info>
			<prop oor:name="SearchType" oor:type="xs:string" oor:nillable="false">
				<info>
					<desc>Specifies the search type.</desc>
				</info>
				<constraints>
					<enumeration oor:value="text">
						<info>
							<desc>Search for text</desc>
						</info>
					</enumeration>
					<enumeration oor:value="null">
						<info>
							<desc>Search for NULL</desc>
						</info>
					</enumeration>
					<enumeration oor:value="non-null">
						<info>
							<desc>Search for non-NULL</desc>
						</info>
					</enumeration>
				</constraints>
				<value>text</value>
			</prop>
			<prop oor:name="SearchPosition" oor:type="xs:string" oor:nillable="false">
				<info>
					<desc>Specifies the search position.</desc>
				</info>
				<constraints>
					<enumeration oor:value="anywhere-in-field">
						<info>
							<desc>Anywhere</desc>
						</info>
					</enumeration>
					<enumeration oor:value="beginning-of-field">
						<info>
							<desc>Beginning</desc>
						</info>
					</enumeration>
					<enumeration oor:value="end-of-field">
						<info>
							<desc>End</desc>
						</info>
					</enumeration>
					<enumeration oor:value="complete-field">
						<info>
							<desc>Complete</desc>
						</info>
					</enumeration>
				</constraints>
				<value>anywhere-in-field</value>
			</prop>
			<prop oor:name="SearchHistory" oor:type="oor:string-list">
				<info>
					<desc>Contains a list of the previous search strings.</desc>
				</info>
			</prop>
			<prop oor:name="IsSearchAllFields" oor:type="xs:boolean" oor:nillable="false">
				<info>
					<desc>Specifies if all fields should be searched.</desc>
				</info>
				<value>false</value>
			</prop>
			<prop oor:name="IsUseFormatter" oor:type="xs:boolean" oor:nillable="false">
				<info>
					<desc>Specifies that the formatter should be used.</desc>
				</info>
				<value>false</value>
			</prop>
			<prop oor:name="IsBackwards" oor:type="xs:boolean" oor:nillable="false">
				<info>
					<desc>Specifies that the search starts backward.</desc>
				</info>
				<value>false</value>
			</prop>
			<prop oor:name="IsWildcardSearch" oor:type="xs:boolean" oor:nillable="false">
				<info>
					<desc>Specifies that the search contains wildcards.</desc>
				</info>
				<value>false</value>
			</prop>
			<prop oor:name="IsUseRegularExpression" oor:type="xs:boolean" oor:nillable="false">
				<info>
					<desc>Specifies that regular expressions should be used.</desc>
				</info>
				<value>false</value>
			</prop>
			<prop oor:name="IsSimilaritySearch" oor:type="xs:boolean" oor:nillable="false">
				<info>
					<desc>Specifies that the similarity search should be used.</desc>
				</info>
				<value>false</value>
			</prop>
			<prop oor:name="IsLevenshteinRelaxed" oor:type="xs:boolean" oor:nillable="false">
				<info>
					<desc>Specifies that the similarity search should be combined.</desc>
				</info>
				<value>false</value>
			</prop>
			<prop oor:name="LevenshteinOther" oor:type="xs:short" oor:nillable="false">
				<info>
					<desc>Specifies the number of characters that can be exchanged while searching for similarity.</desc>
				</info>
				<value>2</value>
			</prop>
			<prop oor:name="LevenshteinShorter" oor:type="xs:short" oor:nillable="false">
				<info>
					<desc>Specifies the number of characters that can be deleted while searching for similarity.</desc>
				</info>
				<value>2</value>
			</prop>
			<prop oor:name="LevenshteinLonger" oor:type="xs:short" oor:nillable="false">
				<info>
					<desc>Specifies the number of characters that can be added while searching for similarity.</desc>
				</info>
				<value>2</value>
			</prop>
			<prop oor:name="IsMatchCase" oor:type="xs:boolean" oor:nillable="false">
				<info>
					<desc>Specifies that the searched value should match.</desc>
				</info>
				<value>false</value>
			</prop>
			<prop oor:name="IsUseAsianOptions" oor:type="xs:boolean" oor:nillable="false">
				<info>
					<desc>Specifies that the Asian options for search should be used.</desc>
				</info>
				<value>false</value>
			</prop>
			<group oor:name="Japanese">
				<info>
					<desc>Specifies the Japanese options for searching.</desc>
				</info>
				<prop oor:name="IsMatchFullHalfWidthForms" oor:type="xs:boolean" oor:nillable="false">
					<info>
						<desc>Specifies the MatchFullHalfWidthForms search option is enabled.</desc>
					</info>
					<value>true</value>
				</prop>
				<prop oor:name="IsMatchHiraganaKatakana" oor:type="xs:boolean" oor:nillable="false">
					<info>
						<desc>Specifies the MatchHiraganaKatakana search option is enabled.</desc>
					</info>
					<value>true</value>
				</prop>
				<prop oor:name="IsMatchContractions" oor:type="xs:boolean" oor:nillable="false">
					<info>
						<desc>Specifies the MatchContractions search option is enabled.</desc>
					</info>
					<value>true</value>
				</prop>
				<prop oor:name="IsMatchMinusDashCho-on" oor:type="xs:boolean" oor:nillable="false">
					<info>
						<desc>Specifies the MatchMinusDashCho-on search option is enabled.</desc>
					</info>
					<value>true</value>
				</prop>
				<prop oor:name="IsMatchRepeatCharMarks" oor:type="xs:boolean" oor:nillable="false">
					<info>
						<desc>Specifies the MatchRepeatCharMarks search option is enabled.</desc>
					</info>
					<value>true</value>
				</prop>
				<prop oor:name="IsMatchVariantFormKanji" oor:type="xs:boolean" oor:nillable="false">
					<info>
						<desc>Specifies the MatchVariantFormKanji search option is enabled.</desc>
					</info>
					<value>true</value>
				</prop>
				<prop oor:name="IsMatchOldKanaForms" oor:type="xs:boolean" oor:nillable="false">
					<info>
						<desc>Specifies the MatchOldKanaForms search option is enabled.</desc>
					</info>
					<value>true</value>
				</prop>
				<prop oor:name="IsMatch_DiZi_DuZu" oor:type="xs:boolean" oor:nillable="false">
					<info>
						<desc>Specifies the Match_DiZi_DuZu search option is enabled.</desc>
					</info>
					<value>true</value>
				</prop>
				<prop oor:name="IsMatch_BaVa_HaFa" oor:type="xs:boolean" oor:nillable="false">
					<info>
						<desc>Specifies the Match_BaVa_HaFa search option is enabled.</desc>
					</info>
					<value>true</value>
				</prop>
				<prop oor:name="IsMatch_TsiThiChi_DhiZi" oor:type="xs:boolean" oor:nillable="false">
					<info>
						<desc>Specifies the Match_TsiThiChi_DhiZi search option is enabled.</desc>
					</info>
					<value>true</value>
				</prop>
				<prop oor:name="IsMatch_HyuIyu_ByuVyu" oor:type="xs:boolean" oor:nillable="false">
					<info>
						<desc>Specifies the Match_HyuIyu_ByuVyu search option is enabled.</desc>
					</info>
					<value>true</value>
				</prop>
				<prop oor:name="IsMatch_SeShe_ZeJe" oor:type="xs:boolean" oor:nillable="false">
					<info>
						<desc>Specifies the Match_SeShe_ZeJe search option is enabled.</desc>
					</info>
					<value>true</value>
				</prop>
				<prop oor:name="IsMatch_IaIya" oor:type="xs:boolean" oor:nillable="false">
					<info>
						<desc>Specifies the Match_IaIya search option is enabled.</desc>
					</info>
					<value>true</value>
				</prop>
				<prop oor:name="IsMatch_KiKu" oor:type="xs:boolean" oor:nillable="false">
					<info>
						<desc>Specifies the Match_KiKu search option is enabled.</desc>
					</info>
					<value>true</value>
				</prop>
				<prop oor:name="IsIgnorePunctuation" oor:type="xs:boolean" oor:nillable="false">
					<info>
						<desc>Specifies the IgnorePunctuation search option is enabled.</desc>
					</info>
					<value>true</value>
				</prop>
				<prop oor:name="IsIgnoreWhitespace" oor:type="xs:boolean" oor:nillable="false">
					<info>
						<desc>Specifies the IgnoreWhitespace search option is enabled.</desc>
					</info>
					<value>true</value>
				</prop>
				<prop oor:name="IsIgnoreProlongedSoundMark" oor:type="xs:boolean" oor:nillable="false">
					<info>
						<desc>Specifies the IgnoreProlongedSoundMark search option is enabled.</desc>
					</info>
					<value>true</value>
				</prop>
				<prop oor:name="IsIgnoreMiddleDot" oor:type="xs:boolean" oor:nillable="false">
					<info>
						<desc>Specifies the IgnoreMiddleDot search option is enabled.</desc>
					</info>
					<value>true</value>
				</prop>
			</group>
		</group>
	</component>
</oor:component-schema>