File: copyright

package info (click to toggle)
qtpim-opensource-src 5.0~git20190618.8fec622c%2Bdfsg1-8
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 15,028 kB
  • sloc: cpp: 82,576; ansic: 245; xml: 91; makefile: 80; javascript: 67
file content (1480 lines) | stat: -rw-r--r-- 74,879 bytes parent folder | download
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
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Contact: Chris Adams <chris.adams@qinetic.com.au>
Upstream-Name: QT PIM Module
Source: https://code.qt.io/cgit/qt/qtpim.git/
Files-Excluded: doc/src/

Files: ChangeLog
 include/QtContacts/5.0.0/QtContacts/private/qcontact_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactabstractrequest_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactactiondescriptor_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactactionfilter_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactactionmanager_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactactiontarget_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactchangelogfilter_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactchangeset_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactcollection_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactcollectionchangeset_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactcollectionfilter_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactdetail_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactdetailfilter_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactdetailrangefilter_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactfetchhint_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactfilter_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactidfilter_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactintersectionfilter_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactinvalidbackend_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactmanager_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactrelationship_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactrelationshipfilter_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactrequests_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactsortorder_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactspluginsearch_p.h
 include/QtContacts/5.0.0/QtContacts/private/qcontactunionfilter_p.h
 include/QtContacts/QContact
 include/QtContacts/QContactAbstractRequest
 include/QtContacts/QContactAction
 include/QtContacts/QContactActionDescriptor
 include/QtContacts/QContactActionFactory
 include/QtContacts/QContactActionFilter
 include/QtContacts/QContactActionTarget
 include/QtContacts/QContactAddress
 include/QtContacts/QContactAnniversary
 include/QtContacts/QContactAvatar
 include/QtContacts/QContactBirthday
 include/QtContacts/QContactChangeLogFilter
 include/QtContacts/QContactChangeSet
 include/QtContacts/QContactCollection
 include/QtContacts/QContactCollectionChangeSet
 include/QtContacts/QContactCollectionFetchRequest
 include/QtContacts/QContactCollectionFilter
 include/QtContacts/QContactCollectionId
 include/QtContacts/QContactCollectionRemoveRequest
 include/QtContacts/QContactCollectionSaveRequest
 include/QtContacts/QContactDetail
 include/QtContacts/QContactDetailFilter
 include/QtContacts/QContactDetailRangeFilter
 include/QtContacts/QContactDisplayLabel
 include/QtContacts/QContactEmailAddress
 include/QtContacts/QContactExtendedDetail
 include/QtContacts/QContactFamily
 include/QtContacts/QContactFavorite
 include/QtContacts/QContactFetchByIdRequest
 include/QtContacts/QContactFetchHint
 include/QtContacts/QContactFetchRequest
 include/QtContacts/QContactFilter
 include/QtContacts/QContactGender
 include/QtContacts/QContactGeoLocation
 include/QtContacts/QContactGlobalPresence
 include/QtContacts/QContactGuid
 include/QtContacts/QContactHobby
 include/QtContacts/QContactId
 include/QtContacts/QContactIdFetchRequest
 include/QtContacts/QContactIdFilter
 include/QtContacts/QContactIntersectionFilter
 include/QtContacts/QContactInvalidFilter
 include/QtContacts/QContactManager
 include/QtContacts/QContactManagerEngine
 include/QtContacts/QContactManagerEngineFactory
 include/QtContacts/QContactManagerEngineFactoryInterface
 include/QtContacts/QContactName
 include/QtContacts/QContactNickname
 include/QtContacts/QContactNote
 include/QtContacts/QContactObserver
 include/QtContacts/QContactOnlineAccount
 include/QtContacts/QContactOrganization
 include/QtContacts/QContactPhoneNumber
 include/QtContacts/QContactPresence
 include/QtContacts/QContactRelationship
 include/QtContacts/QContactRelationshipFetchRequest
 include/QtContacts/QContactRelationshipFilter
 include/QtContacts/QContactRelationshipRemoveRequest
 include/QtContacts/QContactRelationshipSaveRequest
 include/QtContacts/QContactRemoveRequest
 include/QtContacts/QContactRingtone
 include/QtContacts/QContactSaveRequest
 include/QtContacts/QContactSortOrder
 include/QtContacts/QContactSyncTarget
 include/QtContacts/QContactTag
 include/QtContacts/QContactTimestamp
 include/QtContacts/QContactType
 include/QtContacts/QContactUnionFilter
 include/QtContacts/QContactUrl
 include/QtContacts/QContactVersion
 include/QtContacts/QtContacts
 include/QtContacts/QtContactsVersion
 include/QtContacts/headers.pri
 include/QtContacts/qcontact.h
 include/QtContacts/qcontactabstractrequest.h
 include/QtContacts/qcontactaction.h
 include/QtContacts/qcontactactiondescriptor.h
 include/QtContacts/qcontactactionfactory.h
 include/QtContacts/qcontactactionfilter.h
 include/QtContacts/qcontactactiontarget.h
 include/QtContacts/qcontactaddress.h
 include/QtContacts/qcontactanniversary.h
 include/QtContacts/qcontactavatar.h
 include/QtContacts/qcontactbirthday.h
 include/QtContacts/qcontactchangelogfilter.h
 include/QtContacts/qcontactchangeset.h
 include/QtContacts/qcontactcollection.h
 include/QtContacts/qcontactcollectionchangeset.h
 include/QtContacts/qcontactcollectionfetchrequest.h
 include/QtContacts/qcontactcollectionfilter.h
 include/QtContacts/qcontactcollectionid.h
 include/QtContacts/qcontactcollectionremoverequest.h
 include/QtContacts/qcontactcollectionsaverequest.h
 include/QtContacts/qcontactdetail.h
 include/QtContacts/qcontactdetailfilter.h
 include/QtContacts/qcontactdetailrangefilter.h
 include/QtContacts/qcontactdetails.h
 include/QtContacts/qcontactdisplaylabel.h
 include/QtContacts/qcontactemailaddress.h
 include/QtContacts/qcontactextendeddetail.h
 include/QtContacts/qcontactfamily.h
 include/QtContacts/qcontactfavorite.h
 include/QtContacts/qcontactfetchbyidrequest.h
 include/QtContacts/qcontactfetchhint.h
 include/QtContacts/qcontactfetchrequest.h
 include/QtContacts/qcontactfilter.h
 include/QtContacts/qcontactfilters.h
 include/QtContacts/qcontactgender.h
 include/QtContacts/qcontactgeolocation.h
 include/QtContacts/qcontactglobalpresence.h
 include/QtContacts/qcontactguid.h
 include/QtContacts/qcontacthobby.h
 include/QtContacts/qcontactid.h
 include/QtContacts/qcontactidfetchrequest.h
 include/QtContacts/qcontactidfilter.h
 include/QtContacts/qcontactintersectionfilter.h
 include/QtContacts/qcontactinvalidfilter.h
 include/QtContacts/qcontactmanager.h
 include/QtContacts/qcontactmanagerengine.h
 include/QtContacts/qcontactmanagerenginefactory.h
 include/QtContacts/qcontactname.h
 include/QtContacts/qcontactnickname.h
 include/QtContacts/qcontactnote.h
 include/QtContacts/qcontactobserver.h
 include/QtContacts/qcontactonlineaccount.h
 include/QtContacts/qcontactorganization.h
 include/QtContacts/qcontactphonenumber.h
 include/QtContacts/qcontactpresence.h
 include/QtContacts/qcontactrelationship.h
 include/QtContacts/qcontactrelationshipfetchrequest.h
 include/QtContacts/qcontactrelationshipfilter.h
 include/QtContacts/qcontactrelationshipremoverequest.h
 include/QtContacts/qcontactrelationshipsaverequest.h
 include/QtContacts/qcontactremoverequest.h
 include/QtContacts/qcontactrequests.h
 include/QtContacts/qcontactringtone.h
 include/QtContacts/qcontacts.h
 include/QtContacts/qcontactsaverequest.h
 include/QtContacts/qcontactsglobal.h
 include/QtContacts/qcontactsortorder.h
 include/QtContacts/qcontactsynctarget.h
 include/QtContacts/qcontacttag.h
 include/QtContacts/qcontacttimestamp.h
 include/QtContacts/qcontacttype.h
 include/QtContacts/qcontactunionfilter.h
 include/QtContacts/qcontacturl.h
 include/QtContacts/qcontactversion.h
 include/QtContacts/qtcontactsversion.h
 include/QtOrganizer/5.0.0/QtOrganizer/private/qorganizerabstractrequest_p.h
 include/QtOrganizer/5.0.0/QtOrganizer/private/qorganizercollection_p.h
 include/QtOrganizer/5.0.0/QtOrganizer/private/qorganizercollectionchangeset_p.h
 include/QtOrganizer/5.0.0/QtOrganizer/private/qorganizeritem_p.h
 include/QtOrganizer/5.0.0/QtOrganizer/private/qorganizeritemchangeset_p.h
 include/QtOrganizer/5.0.0/QtOrganizer/private/qorganizeritemcollectionfilter_p.h
 include/QtOrganizer/5.0.0/QtOrganizer/private/qorganizeritemdetail_p.h
 include/QtOrganizer/5.0.0/QtOrganizer/private/qorganizeritemdetailfieldfilter_p.h
 include/QtOrganizer/5.0.0/QtOrganizer/private/qorganizeritemdetailfilter_p.h
 include/QtOrganizer/5.0.0/QtOrganizer/private/qorganizeritemdetailrangefilter_p.h
 include/QtOrganizer/5.0.0/QtOrganizer/private/qorganizeritemfetchhint_p.h
 include/QtOrganizer/5.0.0/QtOrganizer/private/qorganizeritemfilter_p.h
 include/QtOrganizer/5.0.0/QtOrganizer/private/qorganizeritemidfilter_p.h
 include/QtOrganizer/5.0.0/QtOrganizer/private/qorganizeritemintersectionfilter_p.h
 include/QtOrganizer/5.0.0/QtOrganizer/private/qorganizeritemrequests_p.h
 include/QtOrganizer/5.0.0/QtOrganizer/private/qorganizeritemsortorder_p.h
 include/QtOrganizer/5.0.0/QtOrganizer/private/qorganizeritemunionfilter_p.h
 include/QtOrganizer/5.0.0/QtOrganizer/private/qorganizermanager_p.h
 include/QtOrganizer/5.0.0/QtOrganizer/private/qorganizerrecurrencerule_p.h
 include/QtOrganizer/QOrganizerAbstractRequest
 include/QtOrganizer/QOrganizerCollection
 include/QtOrganizer/QOrganizerCollectionChangeSet
 include/QtOrganizer/QOrganizerCollectionFetchRequest
 include/QtOrganizer/QOrganizerCollectionId
 include/QtOrganizer/QOrganizerCollectionRemoveRequest
 include/QtOrganizer/QOrganizerCollectionSaveRequest
 include/QtOrganizer/QOrganizerEvent
 include/QtOrganizer/QOrganizerEventAttendee
 include/QtOrganizer/QOrganizerEventOccurrence
 include/QtOrganizer/QOrganizerEventRsvp
 include/QtOrganizer/QOrganizerEventTime
 include/QtOrganizer/QOrganizerItem
 include/QtOrganizer/QOrganizerItemAudibleReminder
 include/QtOrganizer/QOrganizerItemChangeSet
 include/QtOrganizer/QOrganizerItemClassification
 include/QtOrganizer/QOrganizerItemCollectionFilter
 include/QtOrganizer/QOrganizerItemComment
 include/QtOrganizer/QOrganizerItemDescription
 include/QtOrganizer/QOrganizerItemDetail
 include/QtOrganizer/QOrganizerItemDetailFieldFilter
 include/QtOrganizer/QOrganizerItemDetailFilter
 include/QtOrganizer/QOrganizerItemDetailRangeFilter
 include/QtOrganizer/QOrganizerItemDisplayLabel
 include/QtOrganizer/QOrganizerItemEmailReminder
 include/QtOrganizer/QOrganizerItemExtendedDetail
 include/QtOrganizer/QOrganizerItemFetchByIdRequest
 include/QtOrganizer/QOrganizerItemFetchForExportRequest
 include/QtOrganizer/QOrganizerItemFetchHint
 include/QtOrganizer/QOrganizerItemFetchRequest
 include/QtOrganizer/QOrganizerItemFilter
 include/QtOrganizer/QOrganizerItemGuid
 include/QtOrganizer/QOrganizerItemId
 include/QtOrganizer/QOrganizerItemIdFetchRequest
 include/QtOrganizer/QOrganizerItemIdFilter
 include/QtOrganizer/QOrganizerItemIntersectionFilter
 include/QtOrganizer/QOrganizerItemInvalidFilter
 include/QtOrganizer/QOrganizerItemLocation
 include/QtOrganizer/QOrganizerItemObserver
 include/QtOrganizer/QOrganizerItemOccurrenceFetchRequest
 include/QtOrganizer/QOrganizerItemParent
 include/QtOrganizer/QOrganizerItemPriority
 include/QtOrganizer/QOrganizerItemRecurrence
 include/QtOrganizer/QOrganizerItemReminder
 include/QtOrganizer/QOrganizerItemRemoveByIdRequest
 include/QtOrganizer/QOrganizerItemRemoveRequest
 include/QtOrganizer/QOrganizerItemSaveRequest
 include/QtOrganizer/QOrganizerItemSortOrder
 include/QtOrganizer/QOrganizerItemTag
 include/QtOrganizer/QOrganizerItemTimestamp
 include/QtOrganizer/QOrganizerItemType
 include/QtOrganizer/QOrganizerItemUnionFilter
 include/QtOrganizer/QOrganizerItemVersion
 include/QtOrganizer/QOrganizerItemVisualReminder
 include/QtOrganizer/QOrganizerJournal
 include/QtOrganizer/QOrganizerJournalTime
 include/QtOrganizer/QOrganizerManager
 include/QtOrganizer/QOrganizerManagerEngine
 include/QtOrganizer/QOrganizerManagerEngineFactory
 include/QtOrganizer/QOrganizerManagerEngineFactoryInterface
 include/QtOrganizer/QOrganizerNote
 include/QtOrganizer/QOrganizerRecurrenceRule
 include/QtOrganizer/QOrganizerTodo
 include/QtOrganizer/QOrganizerTodoOccurrence
 include/QtOrganizer/QOrganizerTodoProgress
 include/QtOrganizer/QOrganizerTodoTime
 include/QtOrganizer/QtOrganizer
 include/QtOrganizer/QtOrganizerVersion
 include/QtOrganizer/headers.pri
 include/QtOrganizer/qorganizer.h
 include/QtOrganizer/qorganizerabstractrequest.h
 include/QtOrganizer/qorganizercollection.h
 include/QtOrganizer/qorganizercollectionchangeset.h
 include/QtOrganizer/qorganizercollectionfetchrequest.h
 include/QtOrganizer/qorganizercollectionid.h
 include/QtOrganizer/qorganizercollectionremoverequest.h
 include/QtOrganizer/qorganizercollectionsaverequest.h
 include/QtOrganizer/qorganizerevent.h
 include/QtOrganizer/qorganizereventattendee.h
 include/QtOrganizer/qorganizereventoccurrence.h
 include/QtOrganizer/qorganizereventrsvp.h
 include/QtOrganizer/qorganizereventtime.h
 include/QtOrganizer/qorganizerglobal.h
 include/QtOrganizer/qorganizeritem.h
 include/QtOrganizer/qorganizeritemaudiblereminder.h
 include/QtOrganizer/qorganizeritemchangeset.h
 include/QtOrganizer/qorganizeritemclassification.h
 include/QtOrganizer/qorganizeritemcollectionfilter.h
 include/QtOrganizer/qorganizeritemcomment.h
 include/QtOrganizer/qorganizeritemdescription.h
 include/QtOrganizer/qorganizeritemdetail.h
 include/QtOrganizer/qorganizeritemdetailfieldfilter.h
 include/QtOrganizer/qorganizeritemdetailfilter.h
 include/QtOrganizer/qorganizeritemdetailrangefilter.h
 include/QtOrganizer/qorganizeritemdetails.h
 include/QtOrganizer/qorganizeritemdisplaylabel.h
 include/QtOrganizer/qorganizeritememailreminder.h
 include/QtOrganizer/qorganizeritemextendeddetail.h
 include/QtOrganizer/qorganizeritemfetchbyidrequest.h
 include/QtOrganizer/qorganizeritemfetchforexportrequest.h
 include/QtOrganizer/qorganizeritemfetchhint.h
 include/QtOrganizer/qorganizeritemfetchrequest.h
 include/QtOrganizer/qorganizeritemfilter.h
 include/QtOrganizer/qorganizeritemfilters.h
 include/QtOrganizer/qorganizeritemguid.h
 include/QtOrganizer/qorganizeritemid.h
 include/QtOrganizer/qorganizeritemidfetchrequest.h
 include/QtOrganizer/qorganizeritemidfilter.h
 include/QtOrganizer/qorganizeritemintersectionfilter.h
 include/QtOrganizer/qorganizeriteminvalidfilter.h
 include/QtOrganizer/qorganizeritemlocation.h
 include/QtOrganizer/qorganizeritemobserver.h
 include/QtOrganizer/qorganizeritemoccurrencefetchrequest.h
 include/QtOrganizer/qorganizeritemparent.h
 include/QtOrganizer/qorganizeritempriority.h
 include/QtOrganizer/qorganizeritemrecurrence.h
 include/QtOrganizer/qorganizeritemreminder.h
 include/QtOrganizer/qorganizeritemremovebyidrequest.h
 include/QtOrganizer/qorganizeritemremoverequest.h
 include/QtOrganizer/qorganizeritemrequests.h
 include/QtOrganizer/qorganizeritems.h
 include/QtOrganizer/qorganizeritemsaverequest.h
 include/QtOrganizer/qorganizeritemsortorder.h
 include/QtOrganizer/qorganizeritemtag.h
 include/QtOrganizer/qorganizeritemtimestamp.h
 include/QtOrganizer/qorganizeritemtype.h
 include/QtOrganizer/qorganizeritemunionfilter.h
 include/QtOrganizer/qorganizeritemversion.h
 include/QtOrganizer/qorganizeritemvisualreminder.h
 include/QtOrganizer/qorganizerjournal.h
 include/QtOrganizer/qorganizerjournaltime.h
 include/QtOrganizer/qorganizermanager.h
 include/QtOrganizer/qorganizermanagerengine.h
 include/QtOrganizer/qorganizermanagerenginefactory.h
 include/QtOrganizer/qorganizernote.h
 include/QtOrganizer/qorganizerrecurrencerule.h
 include/QtOrganizer/qorganizertodo.h
 include/QtOrganizer/qorganizertodooccurrence.h
 include/QtOrganizer/qorganizertodoprogress.h
 include/QtOrganizer/qorganizertodotime.h
 include/QtOrganizer/qtorganizerversion.h
 include/QtVersit/5.0.0/QtVersit/private/qvcard21writer_p.h
 include/QtVersit/5.0.0/QtVersit/private/qvcard30writer_p.h
 include/QtVersit/5.0.0/QtVersit/private/qvcardrestorehandler_p.h
 include/QtVersit/5.0.0/QtVersit/private/qversitcontactexporter_p.h
 include/QtVersit/5.0.0/QtVersit/private/qversitcontactimporter_p.h
 include/QtVersit/5.0.0/QtVersit/private/qversitcontactpluginloader_p.h
 include/QtVersit/5.0.0/QtVersit/private/qversitcontactsdefs_p.h
 include/QtVersit/5.0.0/QtVersit/private/qversitdefs_p.h
 include/QtVersit/5.0.0/QtVersit/private/qversitdocument_p.h
 include/QtVersit/5.0.0/QtVersit/private/qversitdocumentwriter_p.h
 include/QtVersit/5.0.0/QtVersit/private/qversitpluginsearch_p.h
 include/QtVersit/5.0.0/QtVersit/private/qversitproperty_p.h
 include/QtVersit/5.0.0/QtVersit/private/qversitreader_p.h
 include/QtVersit/5.0.0/QtVersit/private/qversitutils_p.h
 include/QtVersit/5.0.0/QtVersit/private/qversitwriter_p.h
 include/QtVersit/QVersitContactExporter
 include/QtVersit/QVersitContactExporterDetailHandler
 include/QtVersit/QVersitContactExporterDetailHandlerV2
 include/QtVersit/QVersitContactHandler
 include/QtVersit/QVersitContactHandlerFactory
 include/QtVersit/QVersitContactHandlerFactoryInterface
 include/QtVersit/QVersitContactImporter
 include/QtVersit/QVersitContactImporterPropertyHandler
 include/QtVersit/QVersitContactImporterPropertyHandlerV2
 include/QtVersit/QVersitDefaultResourceHandler
 include/QtVersit/QVersitDocument
 include/QtVersit/QVersitProperty
 include/QtVersit/QVersitReader
 include/QtVersit/QVersitResourceHandler
 include/QtVersit/QVersitWriter
 include/QtVersit/QtVersit
 include/QtVersit/QtVersitVersion
 include/QtVersit/headers.pri
 include/QtVersit/qversitcontactexporter.h
 include/QtVersit/qversitcontacthandler.h
 include/QtVersit/qversitcontactimporter.h
 include/QtVersit/qversitdocument.h
 include/QtVersit/qversitglobal.h
 include/QtVersit/qversitproperty.h
 include/QtVersit/qversitreader.h
 include/QtVersit/qversitresourcehandler.h
 include/QtVersit/qversitwriter.h
 include/QtVersit/qtversitversion.h
 include/QtVersitOrganizer/5.0.0/QtVersitOrganizer/private/qtimezones_p.h
 include/QtVersitOrganizer/5.0.0/QtVersitOrganizer/private/qversitorganizerdefs_p.h
 include/QtVersitOrganizer/5.0.0/QtVersitOrganizer/private/qversitorganizerexporter_p.h
 include/QtVersitOrganizer/5.0.0/QtVersitOrganizer/private/qversitorganizerimporter_p.h
 include/QtVersitOrganizer/5.0.0/QtVersitOrganizer/private/qversitorganizerpluginloader_p.h
 include/QtVersitOrganizer/5.0.0/QtVersitOrganizer/private/qversitorganizerpluginsearch_p.h
 include/QtVersitOrganizer/QVersitOrganizerExporter
 include/QtVersitOrganizer/QVersitOrganizerExporterDetailHandler
 include/QtVersitOrganizer/QVersitOrganizerHandler
 include/QtVersitOrganizer/QVersitOrganizerHandlerFactory
 include/QtVersitOrganizer/QVersitOrganizerImporter
 include/QtVersitOrganizer/QVersitOrganizerImporterPropertyHandler
 include/QtVersitOrganizer/QVersitTimeZoneHandler
 include/QtVersitOrganizer/QtVersitOrganizer
 include/QtVersitOrganizer/QtVersitOrganizerVersion
 include/QtVersitOrganizer/headers.pri
 include/QtVersitOrganizer/qversitorganizerexporter.h
 include/QtVersitOrganizer/qversitorganizerglobal.h
 include/QtVersitOrganizer/qversitorganizerhandler.h
 include/QtVersitOrganizer/qversitorganizerimporter.h
 include/QtVersitOrganizer/qversittimezonehandler.h
 include/QtVersitOrganizer/qtversitorganizerversion.h
 src/imports/contacts/plugins.qmltypes
 src/imports/organizer/plugins.qmltypes
Copyright: 2017, The Qt Company Ltd.
License: LGPL-2.1 with Digia-Qt-1.1 exception or GPL-3
Comment:
 Generated files. Files without license header.
 .
 Assuming copyright holdership and licensing from other code files.

Files:
 .qmake.conf
 .tag
 qtpim.pro
 src/contacts/contacts.pro
 src/contacts/details/details.pri
 src/contacts/doc/qtcontacts.qdocconf
 src/contacts/doc/snippets/doc_src_qtcontacts.pro
 src/contacts/doc/snippets/qtcontactsdocsample/qtcontactsdocsample.pro
 src/contacts/engines/README
 src/contacts/engines/engines.pri
 src/contacts/filters/filters.pri
 src/contacts/requests/requests.pri
 src/imports/contacts/contacts.pro
 src/imports/contacts/contacts.qrc
 src/imports/contacts/default.svg
 src/imports/contacts/details/details.pri
 src/imports/contacts/filters/filters.pri
 src/imports/contacts/qmldir
 src/imports/imports.pro
 src/imports/organizer/organizer.pro
 src/imports/organizer/qmldir
 src/organizer/details/details.pri
 src/organizer/doc/qtorganizer.qdocconf
 src/organizer/doc/snippets/doc_src_qtorganizer.pro
 src/organizer/doc/snippets/qmlorganizerbasiclist/content/organizer_ical_test.ics
 src/organizer/doc/snippets/qtorganizerdocsample/qtorganizerdocsample.pro
 src/organizer/filters/filters.pri
 src/organizer/items/items.pri
 src/organizer/organizer.pro
 src/organizer/requests/requests.pri
 src/plugins/contacts/contacts.pro
 src/plugins/contacts/memory/memory.json
 src/plugins/contacts/memory/memory.pro
 src/plugins/contacts/serviceactionmanager/serviceactionmanager.pro
 src/plugins/organizer/memory/memory.json
 src/plugins/organizer/memory/memory.pro
 src/plugins/organizer/organizer.pro
 src/plugins/organizer/skeleton/skeleton.json
 src/plugins/organizer/skeleton/skeleton.pro
 src/plugins/plugins.pro
 src/plugins/versit/backuphandler/backuphandler.json
 src/plugins/versit/backuphandler/backuphandler.pro
 src/plugins/versit/vcardpreserver/vcardpreserver.json
 src/plugins/versit/vcardpreserver/vcardpreserver.pro
 src/plugins/versit/versit.pro
 src/src.pro
 src/versit/doc/qtversit.qdocconf
 src/versit/doc/snippets/doc_src_qtversit.pro
 src/versit/doc/snippets/qtversitdocsample/qtversitdocsample.pro
 src/versit/versit.pro
 src/versitorganizer/versitorganizer.pro
 sync.profile
 tests/auto/auto.pri
 tests/auto/auto.pro
 tests/auto/cmake/CMakeLists.txt
 tests/auto/cmake/cmake.pro
 tests/auto/cmake/test_modules/CMakeLists.txt
 tests/auto/contacts/contacts.pro
 tests/auto/contacts/qcontact/qcontact.pro
 tests/auto/contacts/qcontactactions/multiaction/multiaction.pro
 tests/auto/contacts/qcontactactions/multiaction/xmldata/multiactionservice.xml
 tests/auto/contacts/qcontactactions/qcontactactions.pro
 tests/auto/contacts/qcontactactions/sendemailaction/sendemailaction.pro
 tests/auto/contacts/qcontactactions/sendemailaction/xmldata/sendemailactionservice.xml
 tests/auto/contacts/qcontactactions/unittest/unittest.pro
 tests/auto/contacts/qcontactasync/maliciousplugin/malicious.json
 tests/auto/contacts/qcontactasync/maliciousplugin/maliciousplugin.pro
 tests/auto/contacts/qcontactasync/qcontactasync.pro
 tests/auto/contacts/qcontactasync/unittest/partitions.json
 tests/auto/contacts/qcontactasync/unittest/unittest.pro
 tests/auto/contacts/qcontactcollection/qcontactcollection.pro
 tests/auto/contacts/qcontactdetail/qcontactdetail.pro
 tests/auto/contacts/qcontactdetails/qcontactdetails.pro
 tests/auto/contacts/qcontactfilter/qcontactfilter.pro
 tests/auto/contacts/qcontactmanager/lazy.json
 tests/auto/contacts/qcontactmanager/partitions.json
 tests/auto/contacts/qcontactmanager/qcontactmanager.pro
 tests/auto/contacts/qcontactmanagerdetails/partitions.json
 tests/auto/contacts/qcontactmanagerdetails/qcontactmanagerdetails.pro
 tests/auto/contacts/qcontactmanagerfiltering/qcontactmanagerfiltering.pro
 tests/auto/contacts/qcontactmanagerfiltering/testactions/booleanaction/booleanaction.pro
 tests/auto/contacts/qcontactmanagerfiltering/testactions/booleanaction/xmldata/booleanactionservice.xml
 tests/auto/contacts/qcontactmanagerfiltering/testactions/dateaction/dateaction.pro
 tests/auto/contacts/qcontactmanagerfiltering/testactions/dateaction/xmldata/dateactionservice.xml
 tests/auto/contacts/qcontactmanagerfiltering/testactions/integeraction/integeraction.pro
 tests/auto/contacts/qcontactmanagerfiltering/testactions/integeraction/xmldata/integeractionservice.xml
 tests/auto/contacts/qcontactmanagerfiltering/testactions/numberaction/numberaction.pro
 tests/auto/contacts/qcontactmanagerfiltering/testactions/numberaction/xml/numberactionservice.xml
 tests/auto/contacts/qcontactmanagerfiltering/testactions/phonenumberaction/phonenumberaction.pro
 tests/auto/contacts/qcontactmanagerfiltering/testactions/phonenumberaction/xmldata/phonenumberactionservice.xml
 tests/auto/contacts/qcontactmanagerfiltering/testactions/testactions.pro
 tests/auto/contacts/qcontactmanagerfiltering/unittest/unittest.pro
 tests/auto/contacts/qcontactmanagerplugins/dummyotherplugin/dummyotherplugin.pro
 tests/auto/contacts/qcontactmanagerplugins/dummyplugin/dummy.json
 tests/auto/contacts/qcontactmanagerplugins/dummyplugin/dummyplugin.pro
 tests/auto/contacts/qcontactmanagerplugins/dummyplugincopy/dummyplugincopy.pro
 tests/auto/contacts/qcontactmanagerplugins/dummypluginempty/dummypluginempty.pro
 tests/auto/contacts/qcontactmanagerplugins/dummyplugininvalid/dummyplugininvalid.pro
 tests/auto/contacts/qcontactmanagerplugins/qcontactmanagerplugins.pro
 tests/auto/contacts/qcontactmanagerplugins/unittest/unittest.pro
 tests/auto/contacts/qcontactmemusage/qcontactmemusage.pro
 tests/auto/contacts/qcontactrelationship/qcontactrelationship.pro
 tests/auto/contacts/qcontactsortorder/qcontactsortorder.pro
 tests/auto/contacts/qdeclarativecontact/qdeclarativecontact.pro
 tests/auto/contacts/qmlcontacts/qmlcontacts.pro
 tests/auto/organizer/organizer.pro
 tests/auto/organizer/qmlorganizer/qmlorganizer.pro
 tests/auto/organizer/qorganizercollection/qorganizercollection.pro
 tests/auto/organizer/qorganizere2e/partitions.json
 tests/auto/organizer/qorganizere2e/qorganizere2e.pro
 tests/auto/organizer/qorganizeritem/qorganizeritem.pro
 tests/auto/organizer/qorganizeritemasync/maliciousplugin/malicious.json
 tests/auto/organizer/qorganizeritemasync/maliciousplugin/maliciousplugin.pro
 tests/auto/organizer/qorganizeritemasync/qorganizeritemasync.pro
 tests/auto/organizer/qorganizeritemasync/unittest/partitions.json
 tests/auto/organizer/qorganizeritemasync/unittest/unittest.pro
 tests/auto/organizer/qorganizeritemdetail/qorganizeritemdetail.pro
 tests/auto/organizer/qorganizeritemdetails/qorganizeritemdetails.pro
 tests/auto/organizer/qorganizeritemfilter/qorganizeritemfilter.pro
 tests/auto/organizer/qorganizeritemsortorder/qorganizeritemsortorder.pro
 tests/auto/organizer/qorganizermanager/partitions.json
 tests/auto/organizer/qorganizermanager/qorganizermanager.pro
 tests/auto/organizer/qorganizermanagerdetails/partitions.json
 tests/auto/organizer/qorganizermanagerdetails/qorganizermanagerdetails.pro
 tests/auto/versit/qvcard21writer/qvcard21writer.pro
 tests/auto/versit/qvcard30writer/qvcard30writer.pro
 tests/auto/versit/qversit/qversit.pro
 tests/auto/versit/qversit/testdata_ics/.gitattributes
 tests/auto/versit/qversit/testdata_ics/2010-FIFA-WorldCup.ics
 tests/auto/versit/qversit/testdata_ics/2010-India-Holidays.ics
 tests/auto/versit/qversit/testdata_ics/2010-US-Holidays.ics
 tests/auto/versit/qversit/testdata_ics/Asiacup2010.ics
 tests/auto/versit/qversit/testdata_ics/FinlandHolidays.ics
 tests/auto/versit/qversit/testdata_ics/IndiaHolidays.ics
 tests/auto/versit/qversit/testdata_ics/india2010.ics
 tests/auto/versit/qversit/testdata_ics/worldt2009.ics
 tests/auto/versit/qversit/testdata_vcf/.gitattributes
 tests/auto/versit/qversit/testdata_vcf/AAB4-MultipleAll.vcf
 tests/auto/versit/qversit/testdata_vcf/AAB4-MultipleAscii.vcf
 tests/auto/versit/qversit/testdata_vcf/AAB4-SingleCompany.vcf
 tests/auto/versit/qversit/testdata_vcf/AAB4-SingleExtensive.vcf
 tests/auto/versit/qversit/testdata_vcf/AAB4-SingleNonAscii.vcf
 tests/auto/versit/qversit/testdata_vcf/AAB4-SingleNonAsciiWithPhoto.vcf
 tests/auto/versit/qversit/testdata_vcf/AAB5-SingleNonAscii.vcf
 tests/auto/versit/qversit/testdata_vcf/Entourage11-basic.vcf
 tests/auto/versit/qversit/testdata_vcf/Entourage11-image.vcf
 tests/auto/versit/qversit/testdata_vcf/Entourage11-nonascii.vcf
 tests/auto/versit/qversit/testdata_vcf/Entourage12-basic.vcf
 tests/auto/versit/qversit/testdata_vcf/Entourage12-kevin.vcf
 tests/auto/versit/qversit/testdata_vcf/Entourage12-nonascii.vcf
 tests/auto/versit/qversit/testdata_vcf/badwrap.vcf
 tests/auto/versit/qversit/testdata_vcf/gmail.vcf
 tests/auto/versit/qversit/testdata_vcf/test1.vcf
 tests/auto/versit/qversitcontactexporter/qversitcontactexporter.pro
 tests/auto/versit/qversitcontactimporter/qversitcontactimporter.pro
 tests/auto/versit/qversitcontactplugins/plugin1/plugin1.json
 tests/auto/versit/qversitcontactplugins/plugin1/plugin1.pro
 tests/auto/versit/qversitcontactplugins/plugin2/plugin2.json
 tests/auto/versit/qversitcontactplugins/plugin2/plugin2.pro
 tests/auto/versit/qversitcontactplugins/plugin3/plugin3.json
 tests/auto/versit/qversitcontactplugins/plugin3/plugin3.pro
 tests/auto/versit/qversitcontactplugins/plugin4/plugin4.json
 tests/auto/versit/qversitcontactplugins/plugin4/plugin4.pro
 tests/auto/versit/qversitcontactplugins/plugin5/plugin5.json
 tests/auto/versit/qversitcontactplugins/plugin5/plugin5.pro
 tests/auto/versit/qversitcontactplugins/qversitcontactplugins.pro
 tests/auto/versit/qversitcontactplugins/unittest/unittest.pro
 tests/auto/versit/qversitcontactplugins/versitplugin.pri
 tests/auto/versit/qversitdocument/qversitdocument.pro
 tests/auto/versit/qversitproperty/qversitproperty.pro
 tests/auto/versit/qversitreader/qversitreader.pro
 tests/auto/versit/qversitwriter/qversitwriter.pro
 tests/auto/versit/versit.pro
 tests/auto/versitorganizer/qversitorganizerexporter/qversitorganizerexporter.pro
 tests/auto/versitorganizer/qversitorganizerimporter/qversitorganizerimporter.pro
 tests/auto/versitorganizer/versitorganizer.pro
 tests/benchmark/contacts/detailsbenchmark/detailsbenchmark.pro
 tests/system/qmlorganizer/contents/2010-FIFA-WorldCup.ics
 tests/system/qmlorganizer/contents/images/default.svg
 tests/system/qmlorganizer/contents/images/lineedit.sci
 tests/system/qmlorganizer/contents/images/titlebar.sci
 tests/system/qmlorganizer/contents/images/toolbutton.sci
 tests/system/qmlorganizer/contents/test.ics
 tests/system/qmlorganizer/qmlorganizer.qmlproject
 tests/tests.pro
Copyright: 2017, The Qt Company Ltd.
License: LGPL-2.1 with Digia-Qt-1.1 exception or GPL-3
Comment:
 Files without license header.
 .
 Assuming copyright holdership and licensing from other code files.

Files: src/contacts/details/qcontactaddress.h
 src/contacts/details/qcontactanniversary.h
 src/contacts/details/qcontactavatar.h
 src/contacts/details/qcontactbirthday.h
 src/contacts/details/qcontactdetails.cpp
 src/contacts/details/qcontactdetails.h
 src/contacts/details/qcontactdisplaylabel.h
 src/contacts/details/qcontactemailaddress.h
 src/contacts/details/qcontactextendeddetail.h
 src/contacts/details/qcontactfamily.h
 src/contacts/details/qcontactfavorite.h
 src/contacts/details/qcontactgender.h
 src/contacts/details/qcontactgeolocation.h
 src/contacts/details/qcontactglobalpresence.h
 src/contacts/details/qcontactguid.h
 src/contacts/details/qcontacthobby.h
 src/contacts/details/qcontactname.h
 src/contacts/details/qcontactnickname.h
 src/contacts/details/qcontactnote.h
 src/contacts/details/qcontactonlineaccount.h
 src/contacts/details/qcontactorganization.h
 src/contacts/details/qcontactphonenumber.h
 src/contacts/details/qcontactpresence.h
 src/contacts/details/qcontactringtone.h
 src/contacts/details/qcontactsynctarget.h
 src/contacts/details/qcontacttag.h
 src/contacts/details/qcontacttimestamp.h
 src/contacts/details/qcontacttype.h
 src/contacts/details/qcontacturl.h
 src/contacts/details/qcontactversion.h
 src/contacts/engines/qcontactinvalidbackend.cpp
 src/contacts/engines/qcontactinvalidbackend_p.h
 src/contacts/filters/qcontactactionfilter.cpp
 src/contacts/filters/qcontactactionfilter.h
 src/contacts/filters/qcontactactionfilter_p.h
 src/contacts/filters/qcontactchangelogfilter.cpp
 src/contacts/filters/qcontactchangelogfilter.h
 src/contacts/filters/qcontactchangelogfilter_p.h
 src/contacts/filters/qcontactcollectionfilter.cpp
 src/contacts/filters/qcontactdetailfilter.cpp
 src/contacts/filters/qcontactdetailfilter.h
 src/contacts/filters/qcontactdetailfilter_p.h
 src/contacts/filters/qcontactdetailrangefilter.cpp
 src/contacts/filters/qcontactdetailrangefilter.h
 src/contacts/filters/qcontactdetailrangefilter_p.h
 src/contacts/filters/qcontactfilters.h
 src/contacts/filters/qcontactidfilter.cpp
 src/contacts/filters/qcontactidfilter.h
 src/contacts/filters/qcontactidfilter_p.h
 src/contacts/filters/qcontactintersectionfilter.cpp
 src/contacts/filters/qcontactintersectionfilter.h
 src/contacts/filters/qcontactintersectionfilter_p.h
 src/contacts/filters/qcontactinvalidfilter.cpp
 src/contacts/filters/qcontactinvalidfilter.h
 src/contacts/filters/qcontactrelationshipfilter.cpp
 src/contacts/filters/qcontactrelationshipfilter.h
 src/contacts/filters/qcontactrelationshipfilter_p.h
 src/contacts/filters/qcontactunionfilter.cpp
 src/contacts/filters/qcontactunionfilter.h
 src/contacts/filters/qcontactunionfilter_p.h
 src/contacts/qcontact.cpp
 src/contacts/qcontact.h
 src/contacts/qcontact_p.h
 src/contacts/qcontactabstractrequest.cpp
 src/contacts/qcontactabstractrequest.h
 src/contacts/qcontactabstractrequest_p.h
 src/contacts/qcontactaction.cpp
 src/contacts/qcontactaction.h
 src/contacts/qcontactactiondescriptor.cpp
 src/contacts/qcontactactiondescriptor.h
 src/contacts/qcontactactiondescriptor_p.h
 src/contacts/qcontactactionfactory.cpp
 src/contacts/qcontactactionfactory.h
 src/contacts/qcontactactionmanager_p.cpp
 src/contacts/qcontactactionmanager_p.h
 src/contacts/qcontactactiontarget.cpp
 src/contacts/qcontactactiontarget.h
 src/contacts/qcontactactiontarget_p.h
 src/contacts/qcontactchangeset.cpp
 src/contacts/qcontactchangeset.h
 src/contacts/qcontactchangeset_p.h
 src/contacts/qcontactdetail.cpp
 src/contacts/qcontactdetail.h
 src/contacts/qcontactdetail_p.h
 src/contacts/qcontactfetchhint.cpp
 src/contacts/qcontactfetchhint.h
 src/contacts/qcontactfetchhint_p.h
 src/contacts/qcontactfilter.cpp
 src/contacts/qcontactfilter.h
 src/contacts/qcontactfilter_p.h
 src/contacts/qcontactid.cpp
 src/contacts/qcontactid.h
 src/contacts/qcontactmanager.cpp
 src/contacts/qcontactmanager.h
 src/contacts/qcontactmanager_p.cpp
 src/contacts/qcontactmanager_p.h
 src/contacts/qcontactmanagerengine.cpp
 src/contacts/qcontactmanagerengine.h
 src/contacts/qcontactmanagerenginefactory.cpp
 src/contacts/qcontactmanagerenginefactory.h
 src/contacts/qcontactmanagerenginev2wrapper_p.cpp
 src/contacts/qcontactobserver.cpp
 src/contacts/qcontactobserver.h
 src/contacts/qcontactrelationship.cpp
 src/contacts/qcontactrelationship.h
 src/contacts/qcontactrelationship_p.h
 src/contacts/qcontacts.h
 src/contacts/qcontactsglobal.h
 src/contacts/qcontactsortorder.cpp
 src/contacts/qcontactsortorder.h
 src/contacts/qcontactsortorder_p.h
 src/contacts/qcontactspluginsearch_p.h
 src/contacts/requests/qcontactfetchbyidrequest.cpp
 src/contacts/requests/qcontactfetchbyidrequest.h
 src/contacts/requests/qcontactfetchrequest.cpp
 src/contacts/requests/qcontactfetchrequest.h
 src/contacts/requests/qcontactidfetchrequest.cpp
 src/contacts/requests/qcontactidfetchrequest.h
 src/contacts/requests/qcontactrelationshipfetchrequest.cpp
 src/contacts/requests/qcontactrelationshipfetchrequest.h
 src/contacts/requests/qcontactrelationshipremoverequest.cpp
 src/contacts/requests/qcontactrelationshipremoverequest.h
 src/contacts/requests/qcontactrelationshipsaverequest.cpp
 src/contacts/requests/qcontactrelationshipsaverequest.h
 src/contacts/requests/qcontactremoverequest.cpp
 src/contacts/requests/qcontactremoverequest.h
 src/contacts/requests/qcontactrequests.h
 src/contacts/requests/qcontactrequests_p.h
 src/contacts/requests/qcontactsaverequest.cpp
 src/contacts/requests/qcontactsaverequest.h
 src/imports/contacts/details/qdeclarativecontactaddress_p.h
 src/imports/contacts/details/qdeclarativecontactanniversary_p.h
 src/imports/contacts/details/qdeclarativecontactavatar_p.h
 src/imports/contacts/details/qdeclarativecontactbirthday_p.h
 src/imports/contacts/details/qdeclarativecontactdetails_p.h
 src/imports/contacts/details/qdeclarativecontactdisplaylabel_p.h
 src/imports/contacts/details/qdeclarativecontactemailaddress_p.h
 src/imports/contacts/details/qdeclarativecontactextendeddetail_p.h
 src/imports/contacts/details/qdeclarativecontactfamily_p.h
 src/imports/contacts/details/qdeclarativecontactfavorite_p.h
 src/imports/contacts/details/qdeclarativecontactgender_p.h
 src/imports/contacts/details/qdeclarativecontactgeolocation_p.h
 src/imports/contacts/details/qdeclarativecontactglobalpresence_p.h
 src/imports/contacts/details/qdeclarativecontactguid_p.h
 src/imports/contacts/details/qdeclarativecontacthobby_p.h
 src/imports/contacts/details/qdeclarativecontactmoc_p.cpp
 src/imports/contacts/details/qdeclarativecontactname_p.h
 src/imports/contacts/details/qdeclarativecontactnickname_p.h
 src/imports/contacts/details/qdeclarativecontactnote_p.h
 src/imports/contacts/details/qdeclarativecontactonlineaccount_p.h
 src/imports/contacts/details/qdeclarativecontactorganization_p.h
 src/imports/contacts/details/qdeclarativecontactphonenumber_p.h
 src/imports/contacts/details/qdeclarativecontactpresence_p.h
 src/imports/contacts/details/qdeclarativecontactringtone_p.h
 src/imports/contacts/details/qdeclarativecontactsynctarget_p.h
 src/imports/contacts/details/qdeclarativecontacttag_p.h
 src/imports/contacts/details/qdeclarativecontacttimestamp_p.h
 src/imports/contacts/details/qdeclarativecontacttype_p.h
 src/imports/contacts/details/qdeclarativecontacturl_p.h
 src/imports/contacts/details/qdeclarativecontactversion_p.h
 src/imports/contacts/filters/qdeclarativecontactactionfilter_p.h
 src/imports/contacts/filters/qdeclarativecontactchangelogfilter_p.h
 src/imports/contacts/filters/qdeclarativecontactcollectionfilter_p.h
 src/imports/contacts/filters/qdeclarativecontactdetailfilter_p.h
 src/imports/contacts/filters/qdeclarativecontactdetailrangefilter_p.h
 src/imports/contacts/filters/qdeclarativecontactfiltermoc.cpp
 src/imports/contacts/filters/qdeclarativecontactfilters_p.h
 src/imports/contacts/filters/qdeclarativecontactidfilter_p.h
 src/imports/contacts/filters/qdeclarativecontactintersectionfilter_p.h
 src/imports/contacts/filters/qdeclarativecontactinvalidfilter_p.h
 src/imports/contacts/filters/qdeclarativecontactrelationshipfilter_p.h
 src/imports/contacts/filters/qdeclarativecontactunionfilter_p.h
 src/imports/contacts/plugin.cpp
 src/imports/contacts/qdeclarativecontact.cpp
 src/imports/contacts/qdeclarativecontact_p.h
 src/imports/contacts/qdeclarativecontactcollection.cpp
 src/imports/contacts/qdeclarativecontactcollection_p.h
 src/imports/contacts/qdeclarativecontactdetail.cpp
 src/imports/contacts/qdeclarativecontactdetail_p.h
 src/imports/contacts/qdeclarativecontactfetchhint.cpp
 src/imports/contacts/qdeclarativecontactfetchhint_p.h
 src/imports/contacts/qdeclarativecontactfilter.cpp
 src/imports/contacts/qdeclarativecontactfilter_p.h
 src/imports/contacts/qdeclarativecontactmodel.cpp
 src/imports/contacts/qdeclarativecontactmodel_p.h
 src/imports/contacts/qdeclarativecontactrelationship.cpp
 src/imports/contacts/qdeclarativecontactrelationship_p.h
 src/imports/contacts/qdeclarativecontactrelationshipmodel.cpp
 src/imports/contacts/qdeclarativecontactrelationshipmodel_p.h
 src/imports/contacts/qdeclarativecontactsortorder.cpp
 src/imports/contacts/qdeclarativecontactsortorder_p.h
 src/imports/contacts/qdeclarativeglobal_p.h
 src/imports/organizer/plugin.cpp
 src/imports/organizer/qdeclarativeorganizercollection.cpp
 src/imports/organizer/qdeclarativeorganizercollection_p.h
 src/imports/organizer/qdeclarativeorganizeritem.cpp
 src/imports/organizer/qdeclarativeorganizeritem_p.h
 src/imports/organizer/qdeclarativeorganizeritemdetail.cpp
 src/imports/organizer/qdeclarativeorganizeritemdetail_p.h
 src/imports/organizer/qdeclarativeorganizeritemfetchhint.cpp
 src/imports/organizer/qdeclarativeorganizeritemfetchhint_p.h
 src/imports/organizer/qdeclarativeorganizeritemfilter.cpp
 src/imports/organizer/qdeclarativeorganizeritemfilter_p.h
 src/imports/organizer/qdeclarativeorganizeritemsortorder.cpp
 src/imports/organizer/qdeclarativeorganizeritemsortorder_p.h
 src/imports/organizer/qdeclarativeorganizermodel.cpp
 src/imports/organizer/qdeclarativeorganizermodel_p.h
 src/imports/organizer/qdeclarativeorganizerrecurrencerule.cpp
 src/imports/organizer/qdeclarativeorganizerrecurrencerule_p.h
 src/organizer/details/qorganizereventattendee.h
 src/organizer/details/qorganizereventrsvp.h
 src/organizer/details/qorganizereventtime.h
 src/organizer/details/qorganizeritemaudiblereminder.h
 src/organizer/details/qorganizeritemclassification.h
 src/organizer/details/qorganizeritemcomment.h
 src/organizer/details/qorganizeritemdescription.h
 src/organizer/details/qorganizeritemdetails.cpp
 src/organizer/details/qorganizeritemdetails.h
 src/organizer/details/qorganizeritemdisplaylabel.h
 src/organizer/details/qorganizeritememailreminder.h
 src/organizer/details/qorganizeritemextendeddetail.h
 src/organizer/details/qorganizeritemguid.h
 src/organizer/details/qorganizeritemlocation.h
 src/organizer/details/qorganizeritemparent.h
 src/organizer/details/qorganizeritempriority.h
 src/organizer/details/qorganizeritemrecurrence.h
 src/organizer/details/qorganizeritemreminder.h
 src/organizer/details/qorganizeritemtag.h
 src/organizer/details/qorganizeritemtimestamp.h
 src/organizer/details/qorganizeritemtype.h
 src/organizer/details/qorganizeritemversion.h
 src/organizer/details/qorganizeritemvisualreminder.h
 src/organizer/details/qorganizerjournaltime.h
 src/organizer/details/qorganizertodoprogress.h
 src/organizer/details/qorganizertodotime.h
 src/organizer/filters/qorganizeritemcollectionfilter.cpp
 src/organizer/filters/qorganizeritemcollectionfilter.h
 src/organizer/filters/qorganizeritemcollectionfilter_p.h
 src/organizer/filters/qorganizeritemdetailfieldfilter.cpp
 src/organizer/filters/qorganizeritemdetailfieldfilter.h
 src/organizer/filters/qorganizeritemdetailfieldfilter_p.h
 src/organizer/filters/qorganizeritemdetailfilter.cpp
 src/organizer/filters/qorganizeritemdetailfilter.h
 src/organizer/filters/qorganizeritemdetailfilter_p.h
 src/organizer/filters/qorganizeritemdetailrangefilter.cpp
 src/organizer/filters/qorganizeritemdetailrangefilter.h
 src/organizer/filters/qorganizeritemdetailrangefilter_p.h
 src/organizer/filters/qorganizeritemfilters.h
 src/organizer/filters/qorganizeritemidfilter.cpp
 src/organizer/filters/qorganizeritemidfilter.h
 src/organizer/filters/qorganizeritemidfilter_p.h
 src/organizer/filters/qorganizeritemintersectionfilter.cpp
 src/organizer/filters/qorganizeritemintersectionfilter.h
 src/organizer/filters/qorganizeritemintersectionfilter_p.h
 src/organizer/filters/qorganizeriteminvalidfilter.cpp
 src/organizer/filters/qorganizeriteminvalidfilter.h
 src/organizer/filters/qorganizeritemunionfilter.cpp
 src/organizer/filters/qorganizeritemunionfilter.h
 src/organizer/filters/qorganizeritemunionfilter_p.h
 src/organizer/items/qorganizerevent.cpp
 src/organizer/items/qorganizerevent.h
 src/organizer/items/qorganizereventoccurrence.cpp
 src/organizer/items/qorganizereventoccurrence.h
 src/organizer/items/qorganizeritems.h
 src/organizer/items/qorganizerjournal.cpp
 src/organizer/items/qorganizerjournal.h
 src/organizer/items/qorganizernote.cpp
 src/organizer/items/qorganizernote.h
 src/organizer/items/qorganizertodo.cpp
 src/organizer/items/qorganizertodo.h
 src/organizer/items/qorganizertodooccurrence.cpp
 src/organizer/items/qorganizertodooccurrence.h
 src/organizer/qorganizer.h
 src/organizer/qorganizerabstractrequest.cpp
 src/organizer/qorganizerabstractrequest.h
 src/organizer/qorganizerabstractrequest_p.h
 src/organizer/qorganizercollection.cpp
 src/organizer/qorganizercollection.h
 src/organizer/qorganizercollection_p.h
 src/organizer/qorganizercollectionchangeset.cpp
 src/organizer/qorganizercollectionchangeset.h
 src/organizer/qorganizercollectionchangeset_p.h
 src/organizer/qorganizercollectionid.cpp
 src/organizer/qorganizercollectionid.h
 src/organizer/qorganizerglobal.h
 src/organizer/qorganizeritem.cpp
 src/organizer/qorganizeritem.h
 src/organizer/qorganizeritem_p.h
 src/organizer/qorganizeritemchangeset.cpp
 src/organizer/qorganizeritemchangeset.h
 src/organizer/qorganizeritemchangeset_p.h
 src/organizer/qorganizeritemdetail.cpp
 src/organizer/qorganizeritemdetail.h
 src/organizer/qorganizeritemdetail_p.h
 src/organizer/qorganizeritemfetchhint.cpp
 src/organizer/qorganizeritemfetchhint.h
 src/organizer/qorganizeritemfetchhint_p.h
 src/organizer/qorganizeritemfilter.cpp
 src/organizer/qorganizeritemfilter.h
 src/organizer/qorganizeritemfilter_p.h
 src/organizer/qorganizeritemid.cpp
 src/organizer/qorganizeritemid.h
 src/organizer/qorganizeritemobserver.cpp
 src/organizer/qorganizeritemobserver.h
 src/organizer/qorganizeritemsortorder.cpp
 src/organizer/qorganizeritemsortorder.h
 src/organizer/qorganizeritemsortorder_p.h
 src/organizer/qorganizermanager.cpp
 src/organizer/qorganizermanager.h
 src/organizer/qorganizermanager_p.cpp
 src/organizer/qorganizermanager_p.h
 src/organizer/qorganizermanagerengine.cpp
 src/organizer/qorganizermanagerengine.h
 src/organizer/qorganizermanagerenginefactory.cpp
 src/organizer/qorganizermanagerenginefactory.h
 src/organizer/qorganizerrecurrencerule.cpp
 src/organizer/qorganizerrecurrencerule.h
 src/organizer/qorganizerrecurrencerule_p.h
 src/organizer/requests/qorganizercollectionfetchrequest.cpp
 src/organizer/requests/qorganizercollectionfetchrequest.h
 src/organizer/requests/qorganizercollectionremoverequest.cpp
 src/organizer/requests/qorganizercollectionremoverequest.h
 src/organizer/requests/qorganizercollectionsaverequest.cpp
 src/organizer/requests/qorganizercollectionsaverequest.h
 src/organizer/requests/qorganizeritemfetchbyidrequest.cpp
 src/organizer/requests/qorganizeritemfetchbyidrequest.h
 src/organizer/requests/qorganizeritemfetchforexportrequest.cpp
 src/organizer/requests/qorganizeritemfetchforexportrequest.h
 src/organizer/requests/qorganizeritemfetchrequest.cpp
 src/organizer/requests/qorganizeritemfetchrequest.h
 src/organizer/requests/qorganizeritemidfetchrequest.cpp
 src/organizer/requests/qorganizeritemidfetchrequest.h
 src/organizer/requests/qorganizeritemoccurrencefetchrequest.cpp
 src/organizer/requests/qorganizeritemoccurrencefetchrequest.h
 src/organizer/requests/qorganizeritemremovebyidrequest.cpp
 src/organizer/requests/qorganizeritemremovebyidrequest.h
 src/organizer/requests/qorganizeritemremoverequest.cpp
 src/organizer/requests/qorganizeritemremoverequest.h
 src/organizer/requests/qorganizeritemrequests.h
 src/organizer/requests/qorganizeritemrequests_p.h
 src/organizer/requests/qorganizeritemsaverequest.cpp
 src/organizer/requests/qorganizeritemsaverequest.h
 src/plugins/contacts/memory/qcontactmemorybackend.cpp
 src/plugins/contacts/memory/qcontactmemorybackend_p.h
 src/plugins/contacts/serviceactionmanager/qcontactactionservicemanager_p.cpp
 src/plugins/contacts/serviceactionmanager/qcontactactionservicemanager_p.h
 src/plugins/organizer/memory/qorganizeritemmemorybackend.cpp
 src/plugins/organizer/memory/qorganizeritemmemorybackend_p.h
 src/plugins/organizer/skeleton/qorganizerskeleton.cpp
 src/plugins/organizer/skeleton/qorganizerskeleton_p.h
 src/plugins/versit/backuphandler/backupvcardhandler.cpp
 src/plugins/versit/backuphandler/backupvcardhandler.h
 src/plugins/versit/vcardpreserver/vcardpreserver.cpp
 src/plugins/versit/vcardpreserver/vcardpreserver.h
 src/versit/qvcard21writer.cpp
 src/versit/qvcard21writer_p.h
 src/versit/qvcard30writer.cpp
 src/versit/qvcard30writer_p.h
 src/versit/qvcardrestorehandler_p.cpp
 src/versit/qvcardrestorehandler_p.h
 src/versit/qversitcontactexporter.cpp
 src/versit/qversitcontactexporter.h
 src/versit/qversitcontactexporter_p.cpp
 src/versit/qversitcontactexporter_p.h
 src/versit/qversitcontacthandler.cpp
 src/versit/qversitcontacthandler.h
 src/versit/qversitcontactimporter.cpp
 src/versit/qversitcontactimporter.h
 src/versit/qversitcontactimporter_p.cpp
 src/versit/qversitcontactimporter_p.h
 src/versit/qversitcontactpluginloader_p.cpp
 src/versit/qversitcontactpluginloader_p.h
 src/versit/qversitcontactsdefs_p.h
 src/versit/qversitdefs_p.h
 src/versit/qversitdocument.cpp
 src/versit/qversitdocument.h
 src/versit/qversitdocument_p.cpp
 src/versit/qversitdocument_p.h
 src/versit/qversitdocumentwriter_p.cpp
 src/versit/qversitdocumentwriter_p.h
 src/versit/qversitglobal.h
 src/versit/qversitpluginsearch_p.h
 src/versit/qversitproperty.cpp
 src/versit/qversitproperty.h
 src/versit/qversitproperty_p.h
 src/versit/qversitreader.cpp
 src/versit/qversitreader.h
 src/versit/qversitreader_p.cpp
 src/versit/qversitreader_p.h
 src/versit/qversitresourcehandler.cpp
 src/versit/qversitresourcehandler.h
 src/versit/qversitutils.cpp
 src/versit/qversitutils_p.h
 src/versit/qversitwriter.cpp
 src/versit/qversitwriter.h
 src/versit/qversitwriter_p.cpp
 src/versit/qversitwriter_p.h
 src/versitorganizer/qtimezones_p.cpp
 src/versitorganizer/qtimezones_p.h
 src/versitorganizer/qversitorganizerdefs_p.h
 src/versitorganizer/qversitorganizerexporter.cpp
 src/versitorganizer/qversitorganizerexporter.h
 src/versitorganizer/qversitorganizerexporter_p.cpp
 src/versitorganizer/qversitorganizerexporter_p.h
 src/versitorganizer/qversitorganizerglobal.h
 src/versitorganizer/qversitorganizerhandler.cpp
 src/versitorganizer/qversitorganizerhandler.h
 src/versitorganizer/qversitorganizerimporter.cpp
 src/versitorganizer/qversitorganizerimporter.h
 src/versitorganizer/qversitorganizerimporter_p.cpp
 src/versitorganizer/qversitorganizerimporter_p.h
 src/versitorganizer/qversitorganizerpluginloader_p.cpp
 src/versitorganizer/qversitorganizerpluginloader_p.h
 src/versitorganizer/qversitorganizerpluginsearch_p.h
 src/versitorganizer/qversittimezonehandler.h
Copyright: 2017, The Qt Company Ltd.
License: LGPL-2.1 with Digia-Qt-1.1 exception or GPL-3

Files: tests/auto/contacts/qcontact/tst_qcontact.cpp
 tests/auto/contacts/qcontactactions/multiaction/multiaction.cpp
 tests/auto/contacts/qcontactactions/multiaction/multiaction_p.h
 tests/auto/contacts/qcontactactions/sendemailaction/sendemailaction.cpp
 tests/auto/contacts/qcontactactions/sendemailaction/sendemailaction_p.h
 tests/auto/contacts/qcontactactions/unittest/tst_qcontactactions.cpp
 tests/auto/contacts/qcontactasync/maliciousplugin/maliciousplugin.cpp
 tests/auto/contacts/qcontactasync/maliciousplugin/maliciousplugin_p.h
 tests/auto/contacts/qcontactasync/unittest/tst_qcontactasync.cpp
 tests/auto/contacts/qcontactdetail/tst_qcontactdetail.cpp
 tests/auto/contacts/qcontactdetails/tst_qcontactdetails.cpp
 tests/auto/contacts/qcontactfilter/tst_qcontactfilter.cpp
 tests/auto/contacts/qcontactmanager/tst_qcontactmanager.cpp
 tests/auto/contacts/qcontactmanagerdataholder.h
 tests/auto/contacts/qcontactmanagerdetails/tst_qcontactmanagerdetails.cpp
 tests/auto/contacts/qcontactmanagerfiltering/testactions/booleanaction/booleanaction_p.h
 tests/auto/contacts/qcontactmanagerfiltering/testactions/dateaction/dateaction_p.h
 tests/auto/contacts/qcontactmanagerfiltering/testactions/integeraction/integeraction_p.h
 tests/auto/contacts/qcontactmanagerfiltering/testactions/numberaction/numberaction_p.h
 tests/auto/contacts/qcontactmanagerfiltering/testactions/phonenumberaction/phonenumberaction_p.h
 tests/auto/contacts/qcontactmanagerfiltering/unittest/tst_qcontactmanagerfiltering.cpp
 tests/auto/contacts/qcontactmanagerplugins/dummyotherplugin/dummyotherplugin.cpp
 tests/auto/contacts/qcontactmanagerplugins/dummyplugin/dummyplugin.cpp
 tests/auto/contacts/qcontactmanagerplugins/dummyplugin/dummyplugin.h
 tests/auto/contacts/qcontactmanagerplugins/unittest/tst_qcontactmanagerplugins.cpp
 tests/auto/contacts/qcontactmemusage/tst_qcontactmemusage.cpp
 tests/auto/contacts/qcontactrelationship/tst_qcontactrelationship.cpp
 tests/auto/contacts/qcontactsortorder/tst_qcontactsortorder.cpp
 tests/auto/contacts/qdeclarativecontact/tst_qdeclarativecontact.cpp
 tests/auto/contacts/qmlcontacts/testcases/ContactsSavingTestCase.qml
 tests/auto/contacts/qmlcontacts/testcases/ContactsSignalingTestCase.qml
 tests/auto/contacts/qmlcontacts/testcases/ContactsTestConfiguration.qml
 tests/auto/contacts/qmlcontacts/testcases/ContactsTestHelper.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contact_add_detail.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contact_addresses.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contact_detail_access.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contact_emails.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contact_extendeddetails.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contact_modification.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contact_organizations.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contact_phonenumbers.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contact_remove_detail.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contact_signals.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contact_urls.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contactdetail.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contactmodel_signals.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contactrelationship.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contacts_clear_details_e2e.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contacts_details_saving_e2e.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contacts_e2e.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contacts_export_import_details_e2e.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contacts_export_import_e2e.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contacts_export_import_signaling_e2e.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contacts_extended_detail_e2e.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contacts_fetch_contacts_e2e.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contacts_filtering_by_detail_e2e.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contacts_filtering_e2e.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contacts_intersection_filter_e2e.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contacts_model_to_model_notification_e2e.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contacts_remove_contacts_e2e.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contacts_remove_detail_e2e.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contacts_save_contact_e2e.qml
 tests/auto/contacts/qmlcontacts/testcases/tst_contacts_sorting_e2e.qml
 tests/auto/contacts/qmlcontacts/tst_qmlcontacts.cpp
 tests/auto/organizer/qmlorganizer/testcases/MegaEvent.qml
 tests/auto/organizer/qmlorganizer/testcases/QOrganizerTestUtility.qml
 tests/auto/organizer/qmlorganizer/testcases/addEvent.qml
 tests/auto/organizer/qmlorganizer/testcases/tst_collection.qml
 tests/auto/organizer/qmlorganizer/testcases/tst_detailfieldfilter.qml
 tests/auto/organizer/qmlorganizer/testcases/tst_detailfilter.qml
 tests/auto/organizer/qmlorganizer/testcases/tst_organizer_versit_export_import_e2e.qml
 tests/auto/organizer/qmlorganizer/testcases/tst_organizeraudiblereminder.qml
 tests/auto/organizer/qmlorganizer/testcases/tst_organizercollectionfilter.qml
 tests/auto/organizer/qmlorganizer/testcases/tst_organizere2e.qml
 tests/auto/organizer/qmlorganizer/testcases/tst_organizeremailreminder.qml
 tests/auto/organizer/qmlorganizer/testcases/tst_organizerintersectionfilter.qml
 tests/auto/organizer/qmlorganizer/testcases/tst_organizeritem.qml
 tests/auto/organizer/qmlorganizer/testcases/tst_organizeritemdetail.qml
 tests/auto/organizer/qmlorganizer/testcases/tst_organizeritems.qml
 tests/auto/organizer/qmlorganizer/testcases/tst_organizermodel.qml
 tests/auto/organizer/qmlorganizer/testcases/tst_organizermodelupdate.qml
 tests/auto/organizer/qmlorganizer/testcases/tst_organizerrecurrence.qml
 tests/auto/organizer/qmlorganizer/testcases/tst_organizerunionfilter.qml
 tests/auto/organizer/qmlorganizer/testcases/tst_organizervisualreminder.qml
 tests/auto/organizer/qmlorganizer/tst_qmlorganizer.cpp
 tests/auto/organizer/qorganizercollection/tst_qorganizercollection.cpp
 tests/auto/organizer/qorganizere2e/tst_qorganizere2e.cpp
 tests/auto/organizer/qorganizeritem/tst_qorganizeritem.cpp
 tests/auto/organizer/qorganizeritemasync/maliciousplugin/maliciousplugin.cpp
 tests/auto/organizer/qorganizeritemasync/maliciousplugin/maliciousplugin_p.h
 tests/auto/organizer/qorganizeritemasync/unittest/tst_qorganizeritemasync.cpp
 tests/auto/organizer/qorganizeritemdetail/tst_qorganizeritemdetail.cpp
 tests/auto/organizer/qorganizeritemdetails/tst_qorganizeritemdetails.cpp
 tests/auto/organizer/qorganizeritemfilter/tst_qorganizeritemfilter.cpp
 tests/auto/organizer/qorganizeritemsortorder/tst_qorganizeritemsortorder.cpp
 tests/auto/organizer/qorganizermanager/tst_qorganizermanager.cpp
 tests/auto/organizer/qorganizermanagerdataholder.h
 tests/auto/organizer/qorganizermanagerdetails/tst_qorganizermanagerdetails.cpp
 tests/auto/versit/qvcard21writer/tst_qvcard21writer.cpp
 tests/auto/versit/qvcard21writer/tst_qvcard21writer.h
 tests/auto/versit/qvcard30writer/tst_qvcard30writer.cpp
 tests/auto/versit/qvcard30writer/tst_qvcard30writer.h
 tests/auto/versit/qversit/tst_qversit.cpp
 tests/auto/versit/qversit/tst_qversit.h
 tests/auto/versit/qversitcontactexporter/tst_qversitcontactexporter.cpp
 tests/auto/versit/qversitcontactexporter/tst_qversitcontactexporter.h
 tests/auto/versit/qversitcontactimporter/tst_qversitcontactimporter.cpp
 tests/auto/versit/qversitcontactimporter/tst_qversitcontactimporter.h
 tests/auto/versit/qversitcontactplugins/plugin1/plugin1.cpp
 tests/auto/versit/qversitcontactplugins/plugin1/plugin1.h
 tests/auto/versit/qversitcontactplugins/plugin2/plugin2.cpp
 tests/auto/versit/qversitcontactplugins/plugin2/plugin2.h
 tests/auto/versit/qversitcontactplugins/plugin3/plugin3.cpp
 tests/auto/versit/qversitcontactplugins/plugin3/plugin3.h
 tests/auto/versit/qversitcontactplugins/plugin4/plugin4.cpp
 tests/auto/versit/qversitcontactplugins/plugin4/plugin4.h
 tests/auto/versit/qversitcontactplugins/plugin5/plugin5.cpp
 tests/auto/versit/qversitcontactplugins/plugin5/plugin5.h
 tests/auto/versit/qversitcontactplugins/unittest/tst_qversitcontactplugins.cpp
 tests/auto/versit/qversitdocument/tst_qversitdocument.cpp
 tests/auto/versit/qversitdocument/tst_qversitdocument.h
 tests/auto/versit/qversitproperty/tst_qversitproperty.cpp
 tests/auto/versit/qversitproperty/tst_qversitproperty.h
 tests/auto/versit/qversitreader/tst_qversitreader.cpp
 tests/auto/versit/qversitreader/tst_qversitreader.h
 tests/auto/versit/qversitwriter/tst_qversitwriter.cpp
 tests/auto/versit/qversitwriter/tst_qversitwriter.h
 tests/auto/versitorganizer/qversitorganizerexporter/tst_qversitorganizerexporter.cpp
 tests/auto/versitorganizer/qversitorganizerexporter/tst_qversitorganizerexporter.h
 tests/auto/versitorganizer/qversitorganizerimporter/tst_qversitorganizerimporter.cpp
 tests/auto/versitorganizer/qversitorganizerimporter/tst_qversitorganizerimporter.h
 tests/benchmark/contacts/ContactsBenchmarkTestCase.qml
 tests/benchmark/contacts/detailsbenchmark/tst_detailsbenchmark.cpp
 tests/benchmark/contacts/tst_benchmark_create_and_savecontact.qml
 tests/benchmark/contacts/tst_benchmark_removecontact.qml
 tests/benchmark/contacts/tst_benchmark_savecontact.qml
 tests/benchmark/contacts/tst_benchmark_updatecontact.qml
 tests/system/qmlorganizer/contents/AgenderView.qml
 tests/system/qmlorganizer/contents/AttendeeDetailsView.qml
 tests/system/qmlorganizer/contents/Button.qml
 tests/system/qmlorganizer/contents/CheckBox.qml
 tests/system/qmlorganizer/contents/CheckBoxRow.qml
 tests/system/qmlorganizer/contents/CollectionEditorView.qml
 tests/system/qmlorganizer/contents/CollectionManagerView.qml
 tests/system/qmlorganizer/contents/CollectionRoller.qml
 tests/system/qmlorganizer/contents/DateTimeRollerRow.qml
 tests/system/qmlorganizer/contents/DayView.qml
 tests/system/qmlorganizer/contents/DetailsView.qml
 tests/system/qmlorganizer/contents/FieldRow.qml
 tests/system/qmlorganizer/contents/InfoBar.qml
 tests/system/qmlorganizer/contents/ItemView.qml
 tests/system/qmlorganizer/contents/MediaButton.qml
 tests/system/qmlorganizer/contents/MenuBar.qml
 tests/system/qmlorganizer/contents/MonthView.qml
 tests/system/qmlorganizer/contents/RollerRow.qml
 tests/system/qmlorganizer/contents/ScrollBar.qml
 tests/system/qmlorganizer/contents/SelectionView.qml
 tests/system/qmlorganizer/contents/SettingsView.qml
 tests/system/qmlorganizer/contents/StatusBar.qml
 tests/system/qmlorganizer/contents/TimelineView.qml
 tests/system/qmlorganizer/contents/TodoView.qml
 tests/system/qmlorganizer/contents/WeekView.qml
 tests/system/qmlorganizer/contents/datetimerollercontents/Spinner.qml
 tests/system/qmlorganizer/contents/datetimerollercontents/Title.qml
 tests/system/qmlorganizer/contents/month.js
 tests/system/qmlorganizer/contents/timeline.js
 tests/system/qmlorganizer/organizer.qml
Copyright: 2017, The Qt Company Ltd.
License: GPL-3

Files: tests/auto/versit/qversitreader/BLACKLIST
 tests/system/qmlorganizer/contents/datetimerollercontents/spinner-bg.png
 tests/system/qmlorganizer/contents/datetimerollercontents/spinner-select.png
 tests/system/qmlorganizer/contents/images/button-pressed.png
 tests/system/qmlorganizer/contents/images/button.png
 tests/system/qmlorganizer/contents/images/gloss.png
 tests/system/qmlorganizer/contents/images/lineedit.png
 tests/system/qmlorganizer/contents/images/quit.png
 tests/system/qmlorganizer/contents/images/stripes.png
 tests/system/qmlorganizer/contents/images/titlebar.png
 tests/system/qmlorganizer/contents/images/toolbutton.png
Copyright: 2017, The Qt Company Ltd.
License: GPL-3
Comment:
 Files without license header (or binary image files).
 .
 Assuming copyright holdership and license from other example files.

Files: examples/contacts/qmlcontactslistview/ContactEditor.qml
 examples/contacts/qmlcontactslistview/DetailEditWidget.qml
 examples/contacts/qmlcontactslistview/GenericButton.qml
 examples/contacts/qmlcontactslistview/qmlcontactslistview.qml
 examples/organizer/calendardemo/src/addcalendarpage.cpp
 examples/organizer/calendardemo/src/addcalendarpage.h
 examples/organizer/calendardemo/src/calendardemo.cpp
 examples/organizer/calendardemo/src/calendardemo.h
 examples/organizer/calendardemo/src/daypage.cpp
 examples/organizer/calendardemo/src/daypage.h
 examples/organizer/calendardemo/src/editcalendarspage.cpp
 examples/organizer/calendardemo/src/editcalendarspage.h
 examples/organizer/calendardemo/src/eventeditpage.cpp
 examples/organizer/calendardemo/src/eventeditpage.h
 examples/organizer/calendardemo/src/eventoccurrenceeditpage.cpp
 examples/organizer/calendardemo/src/eventoccurrenceeditpage.h
 examples/organizer/calendardemo/src/journaleditpage.cpp
 examples/organizer/calendardemo/src/journaleditpage.h
 examples/organizer/calendardemo/src/main.cpp
 examples/organizer/calendardemo/src/monthpage.cpp
 examples/organizer/calendardemo/src/monthpage.h
 examples/organizer/calendardemo/src/todoeditpage.cpp
 examples/organizer/calendardemo/src/todoeditpage.h
 examples/organizer/qmlorganizerlistview/content/EventDateTime.qml
 examples/organizer/qmlorganizerlistview/content/EventEditor.qml
 examples/organizer/qmlorganizerlistview/content/GenericButton.qml
 examples/organizer/qmlorganizerlistview/qmlorganizerlistview.qml
 examples/organizer/todo/main.cpp
 examples/organizer/todo/todoeditor.cpp
 examples/organizer/todo/todoeditor.h
 examples/organizer/todo/window.cpp
 examples/organizer/todo/window.h
 src/contacts/doc/snippets/doc_src_qtcontacts.cpp
 src/contacts/doc/snippets/moduleimports.qml
 src/contacts/doc/snippets/multiaction/multiaction.cpp
 src/contacts/doc/snippets/multiaction/multiaction_p.h
 src/contacts/doc/snippets/qcontactphonenumber.h
 src/contacts/doc/snippets/qtcontactsdocsample/qtcontactsdocsample.cpp
 src/contacts/doc/snippets/qtcontactsdocsample/qtcontactsdocsampleasync.cpp
 src/contacts/doc/snippets/qtcontactsdocsample/requestexample.h
 src/organizer/doc/snippets/doc_src_qtorganizer.cpp
 src/organizer/doc/snippets/moduleimports.qml
 src/organizer/doc/snippets/qmlorganizerbasiclist/qmlorganizerbasiclist.qml
 src/organizer/doc/snippets/qtorganizerdocsample/qtorganizerdocsample.cpp
 src/versit/doc/snippets/doc_src_qtversit.cpp
 src/versit/doc/snippets/qtversitdocsample/qtversitdocsample.cpp
Copyright: 2015, The Qt Company Ltd.
  2017, The Qt Company Ltd.
License: BSD-3-clause

Files: examples/contacts/contacts.pro
 examples/contacts/qmlcontactslistview/example.vcf
 examples/contacts/qmlcontactslistview/qmlcontactslistview.qmlproject
 examples/contacts/qmlcontactslistview/doc/images/qmlcontactslistview-edit.png
 examples/contacts/qmlcontactslistview/doc/images/qmlcontactslistview-main.png
 examples/examples.pro
 examples/organizer/calendardemo/calendardemo.pro
 examples/organizer/organizer.pro
 examples/organizer/qmlorganizerlistview/content/organizer_ical_test.ics
 examples/organizer/qmlorganizerlistview/qmlorganizerlistview.qmlproject
 examples/organizer/qmlorganizerlistview/doc/images/qmlorganizerlistview-edit.png
 examples/organizer/qmlorganizerlistview/doc/images/qmlorganizerlistview-main.png
 examples/organizer/qmlorganizerlistview/doc/images/qmlorganizerlistview-new.png
 examples/organizer/todo/todo.pro
 examples/organizer/todo/doc/images/todoeditor.png
 examples/organizer/todo/doc/images/todoexample.png
 src/organizer/doc/images/qmlorganizerlistview-main.png
Copyright: 2015, The Qt Company Ltd.
  2017, The Qt Company Ltd.
License: BSD-3-clause
Comment:
 Files without license header (or binary image files).
 .
 Assuming copyright holdership and license from other example files.

Files: doc/src/snippets/code/doc_src_lgpl.qdoc
 examples/contacts/qmlcontactslistview/doc/src/qmlcontactslistview.qdoc
 examples/organizer/calendardemo/doc/src/calendardemo.qdoc
 examples/organizer/qmlorganizerlistview/doc/src/qmlorganizerlistviewexample.qdoc
 examples/organizer/todo/doc/src/todo.qdoc
 src/contacts/doc/src/contacts-index.qdoc
 src/contacts/doc/src/contacts.qdoc
 src/contacts/doc/src/contactsactions.qdoc
 src/contacts/doc/src/contactsasync.qdoc
 src/contacts/doc/src/contactsclasses.qdoc
 src/contacts/doc/src/contactsengines.qdoc
 src/contacts/doc/src/contactssync.qdoc
 src/contacts/doc/src/contactsusage.qdoc
 src/contacts/doc/src/plugins/qml-contacts.qdoc
 src/contacts/doc/src/qtcontacts.qdoc
 src/organizer/doc/src/icalsupport.qdoc
 src/organizer/doc/src/organizer-index.qdoc
 src/organizer/doc/src/organizer.qdoc
 src/organizer/doc/src/organizeradvanced.qdoc
 src/organizer/doc/src/organizerasync.qdoc
 src/organizer/doc/src/organizerclasses.qdoc
 src/organizer/doc/src/organizerengines.qdoc
 src/organizer/doc/src/organizersync.qdoc
 src/organizer/doc/src/plugins/qml-organizer.qdoc
 src/organizer/doc/src/tutorials/qmlorganizerlistviewtutorial.qdoc
 src/versit/doc/src/vcardsupport.qdoc
 src/versit/doc/src/versit-index.qdoc
 src/versit/doc/src/versit.qdoc
 src/versit/doc/src/versitclasses.qdoc
 src/versit/doc/src/versitplugins.qdoc
Copyright: 2015, The Qt Company Ltd.
License: GFDL-NIV-1.3

Files: doc/compat.qdocconf
 doc/macros.qdocconf
 doc/qt-cpp-ignore.qdocconf
 doc/qt-defines.qdocconf
 doc/qt5-dita.qdocconf
 doc/qt5.qdocconf
 doc/qtpim-cpp-ignore.qdocconf
 doc/style/style.css
Copyright: 2015, The Qt Company Ltd.
License: GFDL-NIV-1.3
Comment:
 Files without license header.
 .
 Assuming copyright holdership and licensing from other documentation files.

Files: src/contacts/filters/qcontactcollectionfilter.h
 src/contacts/filters/qcontactcollectionfilter_p.h
 src/contacts/qcontactcollection.cpp
 src/contacts/qcontactcollection.h
 src/contacts/qcontactcollection_p.h
 src/contacts/qcontactcollectionchangeset.cpp
 src/contacts/qcontactcollectionchangeset.h
 src/contacts/qcontactcollectionchangeset_p.h
 src/contacts/qcontactcollectionid.cpp
 src/contacts/qcontactcollectionid.h
 src/contacts/requests/qcontactcollectionfetchrequest.cpp
 src/contacts/requests/qcontactcollectionfetchrequest.h
 src/contacts/requests/qcontactcollectionremoverequest.cpp
 src/contacts/requests/qcontactcollectionremoverequest.h
 src/contacts/requests/qcontactcollectionsaverequest.cpp
 src/contacts/requests/qcontactcollectionsaverequest.h
Copyright: 2017, Canonical Ltd
  2017, The Qt Company Ltd.
License: LGPL-2.1 with Digia-Qt-1.1 exception or GPL-3

Files: tests/auto/contacts/qcontactcollection/tst_qcontactcollection.cpp
 tests/auto/contacts/qmlcontacts/testcases/tst_contact_collection_filter.qml
Copyright: 2017, Canonical Ltd
  2017, The Qt Company Ltd.
License: GPL-3

Files: tests/auto/cmake/test_modules/main.cpp
Copyright: 2017, Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Stephen Kelly <stephen.kelly@kdab.com>
License: GPL-3

Files: debian/*
Copyright: 2007-2012, Fathi Boudra <fabo@debian.org>
           2007-2012, Sune Vuorela <debian@pusling.com>
           2008-2012, Modestas Vainius <modax@debian.org>
           2007-2009, Ana Beatriz Guerrero Lopez <ana@debian.org>
           2005-2007, Brian Nelson <pyro@debian.org>
           2012-2013, Timo Jyrinki <timo.jyrinki@canonical.com>
           2020, Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
License: LGPL-2.1

License: LGPL-2.1 with Digia-Qt-1.1 exception
 GNU Lesser General Public License version 2.1:
 .
 This file may be used under the terms of the GNU Lesser General Public
 License version 2.1 as published by the Free Software Foundation and
 appearing in the file LICENSE.LGPL included in the packaging of this
 file. Please review the following information to ensure the GNU Lesser
 General Public License version 2.1 requirements will be met:
 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 .
 In addition, as a special exception, Digia gives you certain additional
 rights. These rights are described in the Digia Qt LGPL Exception
 version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
 .
 On Debian systems, the complete text of the GNU Lesser General Public License
 can be found in `/usr/share/common-licenses/LGPL-2.1`.
 .
 Digia Qt LGPL Exception version 1.1:
 As an additional permission to the GNU Lesser General Public License version
 2.1, the object code form of a "work that uses the Library" may incorporate
 material from a header file that is part of the Library.  You may distribute
 such object code under terms of your choice, provided that:
     (i)   the header files of the Library have not been modified; and
     (ii)  the incorporated material is limited to numerical parameters, data
           structure layouts, accessors, macros, inline functions and
           templates; and
     (iii) you comply with the terms of Section 6 of the GNU Lesser General
           Public License version 2.1.
 .
 Moreover, you may apply this exception to a modified version of the Library,
 provided that such modification does not involve copying material from the
 Library into the modified Library's header files unless such material is
 limited to (i) numerical parameters; (ii) data structure layouts;
 (iii) accessors; and (iv) small macros, templates and inline functions of
 five lines or less in length.
 .
 Furthermore, you are not required to apply this additional permission to a
 modified version of the Library.

License: GPL-3
 GNU General Public License Usage
 .
 Alternatively, this file may be used under the terms of the GNU
 General Public License version 3.0 as published by the Free Software
 Foundation and appearing in the file LICENSE.GPL included in the
 packaging of this file.  Please review the following information to
 ensure the GNU General Public License version 3.0 requirements will be
 met: http://www.gnu.org/copyleft/gpl.html.
 .
 On Debian systems, the complete text of the license can be found in
 `/usr/share/common-licenses/GPL-3`.

License: LGPL-2.1
 This file may be used under the terms of the GNU Lesser
 General Public License version 2.1 as published by the Free Software
 Foundation and appearing in the file LICENSE.LGPL included in the
 packaging of this file.  Please review the following information to
 ensure the GNU Lesser General Public License version 2.1 requirements
 will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 .
 On Debian systems, the complete text of the LGPL-2.1 license can be found in
 `/usr/share/common-licenses/LGPL-2.1`,

License: BSD-3-clause
 You may use this file under the terms of the BSD license as follows:
 .
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are
 met:
   * Redistributions of source code must retain the above copyright
     notice, this list of conditions and the following disclaimer.
   * Redistributions in binary form must reproduce the above copyright
     notice, this list of conditions and the following disclaimer in
     the documentation and/or other materials provided with the
     distribution.
   * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
     of its contributors may be used to endorse or promote products derived
     from this software without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

License: GFDL-NIV-1.3
 GNU Free Documentation License Usage:
 .
 Alternatively, this file may be used under the terms of the GNU Free
 Documentation License version 1.3 as published by the Free Software
 Foundation and appearing in the file included in the packaging of
 this file.  Please review the following information to ensure
 the GNU Free Documentation License version 1.3 requirements
 will be met: http://www.gnu.org/copyleft/fdl.html.
 .
 On Debian systems, the complete text of the GFDL-1.3 license can be found in
 `/usr/share/common-licenses/GFDL-1.3`,