oldaplib 0.2.11__py3-none-any.whl → 0.3.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- oldaplib/ontologies/example.trig +52 -0
- oldaplib/ontologies/oldap.trig +518 -425
- oldaplib/ontologies/oldap.ttl +38 -38
- oldaplib/ontologies/shared.trig +74 -116
- oldaplib/src/cachesingleton.py +4 -0
- oldaplib/src/datamodel.py +8 -1
- oldaplib/src/dtypes/bnode.py +1 -0
- oldaplib/src/enums/haspropertyattr.py +4 -2
- oldaplib/src/enums/projectattr.py +4 -0
- oldaplib/src/hasproperty.py +36 -5
- oldaplib/src/helpers/observable_dict.py +39 -8
- oldaplib/src/helpers/serializer.py +1 -1
- oldaplib/src/objectfactory.py +1 -1
- oldaplib/src/oldaplist.py +2 -2
- oldaplib/src/oldaplistnode.py +24 -24
- oldaplib/src/project.py +144 -12
- oldaplib/src/propertyclass.py +39 -30
- oldaplib/src/resourceclass.py +174 -161
- oldaplib/src/version.py +1 -1
- oldaplib/test/test_datamodel.py +19 -14
- oldaplib/test/test_observable_dict.py +1 -1
- oldaplib/test/test_project.py +79 -3
- oldaplib/test/test_propertyclass.py +2 -2
- oldaplib/test/test_resourceclass.py +160 -9
- oldaplib/testdata/connection_test.trig +8 -19
- oldaplib/testdata/objectfactory_test.trig +67 -67
- {oldaplib-0.2.11.dist-info → oldaplib-0.3.1.dist-info}/METADATA +1 -1
- {oldaplib-0.2.11.dist-info → oldaplib-0.3.1.dist-info}/RECORD +29 -28
- {oldaplib-0.2.11.dist-info → oldaplib-0.3.1.dist-info}/WHEEL +0 -0
|
@@ -29,7 +29,7 @@ oldap:admin {
|
|
|
29
29
|
test:shacl {
|
|
30
30
|
test:shapes schema:version "0.1.0"^^xsd:string .
|
|
31
31
|
|
|
32
|
-
test:PersonShape a sh:NodeShape
|
|
32
|
+
test:PersonShape a sh:NodeShape ;
|
|
33
33
|
sh:targetClass test:Person ;
|
|
34
34
|
dcterms:created "2024-05-16T18:38:25.551434"^^xsd:dateTime ;
|
|
35
35
|
dcterms:creator <https://orcid.org/0000-0003-1681-4036> ;
|
|
@@ -44,19 +44,22 @@ test:shacl {
|
|
|
44
44
|
sh:path rdf:type ;
|
|
45
45
|
] ;
|
|
46
46
|
sh:property [
|
|
47
|
-
sh:
|
|
47
|
+
sh:path schema:familyName ;
|
|
48
|
+
oldap:externalOntology true ;
|
|
49
|
+
sh:datatype xsd:string ;
|
|
48
50
|
sh:minCount "1"^^xsd:integer ;
|
|
49
51
|
sh:maxCount "1"^^xsd:integer ;
|
|
50
52
|
] ;
|
|
51
53
|
sh:property
|
|
52
54
|
[
|
|
53
|
-
sh:
|
|
55
|
+
sh:path schema:givenName ;
|
|
56
|
+
oldap:externalOntology true ;
|
|
57
|
+
sh:datatype xsd:string ;
|
|
54
58
|
sh:minCount "1"^^xsd:integer ;
|
|
55
59
|
] .
|
|
56
60
|
|
|
57
|
-
test:PageShape a sh:NodeShape
|
|
61
|
+
test:PageShape a sh:NodeShape ;
|
|
58
62
|
sh:targetClass test:Page ;
|
|
59
|
-
schema:version "0.1.0"^^xsd:string ;
|
|
60
63
|
dcterms:created "2024-05-16T18:38:25.551434"^^xsd:dateTime ;
|
|
61
64
|
dcterms:creator <https://orcid.org/0000-0003-1681-4036> ;
|
|
62
65
|
dcterms:modified "2024-05-16T18:38:25.551434"^^xsd:dateTime ;
|
|
@@ -73,7 +76,6 @@ test:shacl {
|
|
|
73
76
|
[
|
|
74
77
|
# PropertyClass.property_node_shacl()
|
|
75
78
|
sh:path test:pageDesignation ;
|
|
76
|
-
schema:version "0.1.0"^^xsd:string ;
|
|
77
79
|
dcterms:creator <https://orcid.org/0000-0003-1681-4036> ;
|
|
78
80
|
dcterms:created "2024-05-16T18:38:25.551434"^^xsd:dateTime ;
|
|
79
81
|
dcterms:contributor <https://orcid.org/0000-0003-1681-4036> ;
|
|
@@ -141,7 +143,7 @@ test:shacl {
|
|
|
141
143
|
sh:maxCount "1"^^xsd:integer ;
|
|
142
144
|
] .
|
|
143
145
|
|
|
144
|
-
test:BookShape a sh:NodeShape
|
|
146
|
+
test:BookShape a sh:NodeShape ;
|
|
145
147
|
sh:targetClass test:Book ;
|
|
146
148
|
schema:version "0.1.0"^^xsd:string ;
|
|
147
149
|
dcterms:created "2024-05-16T18:38:25.551434"^^xsd:dateTime ;
|
|
@@ -157,7 +159,6 @@ test:shacl {
|
|
|
157
159
|
] ;
|
|
158
160
|
sh:property
|
|
159
161
|
[
|
|
160
|
-
# PropertyClass.property_node_shacl()
|
|
161
162
|
sh:path test:title ;
|
|
162
163
|
schema:version "0.1.0"^^xsd:string ;
|
|
163
164
|
dcterms:creator <https://orcid.org/0000-0003-1681-4036> ;
|
|
@@ -171,7 +172,6 @@ test:shacl {
|
|
|
171
172
|
] ;
|
|
172
173
|
sh:property
|
|
173
174
|
[
|
|
174
|
-
# PropertyClass.property_node_shacl()
|
|
175
175
|
sh:path test:author ;
|
|
176
176
|
schema:version "0.1.0"^^xsd:string ;
|
|
177
177
|
dcterms:creator <https://orcid.org/0000-0003-1681-4036> ;
|
|
@@ -196,7 +196,7 @@ test:shacl {
|
|
|
196
196
|
sh:maxCount "1"^^xsd:integer ;
|
|
197
197
|
] .
|
|
198
198
|
|
|
199
|
-
test:SetterTesterShape a sh:NodeShape
|
|
199
|
+
test:SetterTesterShape a sh:NodeShape ;
|
|
200
200
|
sh:targetClass test:SetterTester ;
|
|
201
201
|
schema:version "0.1.0"^^xsd:string ;
|
|
202
202
|
dcterms:created "2024-05-16T18:38:25.551434"^^xsd:dateTime ;
|
|
@@ -274,7 +274,7 @@ test:shacl {
|
|
|
274
274
|
#
|
|
275
275
|
# Shape for all possible and supported datatypes
|
|
276
276
|
#
|
|
277
|
-
test:AllTypesShape a sh:NodeShape
|
|
277
|
+
test:AllTypesShape a sh:NodeShape ;
|
|
278
278
|
sh:targetClass test:AllTypes ;
|
|
279
279
|
schema:version "0.1.0"^^xsd:string ;
|
|
280
280
|
dcterms:created "2024-05-16T18:38:25.551434"^^xsd:dateTime ;
|
|
@@ -785,13 +785,13 @@ test:onto {
|
|
|
785
785
|
rdf:type owl:Restriction ;
|
|
786
786
|
owl:onProperty schema:familyName ;
|
|
787
787
|
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
|
|
788
|
-
owl:
|
|
788
|
+
owl:onDataRange xsd:string
|
|
789
789
|
] ,
|
|
790
790
|
[
|
|
791
791
|
rdf:type owl:Restriction ;
|
|
792
792
|
owl:onProperty schema:givenName ;
|
|
793
793
|
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
|
|
794
|
-
owl:
|
|
794
|
+
owl:onDataRange xsd:string
|
|
795
795
|
] .
|
|
796
796
|
|
|
797
797
|
|
|
@@ -846,24 +846,24 @@ test:onto {
|
|
|
846
846
|
rdf:type owl:Restriction ;
|
|
847
847
|
owl:onProperty test:pageDesignation ;
|
|
848
848
|
owl:minQualifiedCardinality "1"^^xsd:integer ;
|
|
849
|
-
owl:
|
|
849
|
+
owl:onDataRange xsd:string ;
|
|
850
850
|
] ,
|
|
851
851
|
[
|
|
852
852
|
rdf:type owl:Restriction ;
|
|
853
853
|
owl:onProperty test:pageNum ;
|
|
854
854
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
855
|
-
owl:
|
|
855
|
+
owl:onDataRange owl:onDataRange ;
|
|
856
856
|
] ,
|
|
857
857
|
[
|
|
858
858
|
rdf:type owl:Restriction ;
|
|
859
859
|
owl:onProperty test:pageDescription ;
|
|
860
|
-
owl:
|
|
860
|
+
owl:onDataRange rdf:langString ;
|
|
861
861
|
] ,
|
|
862
862
|
[
|
|
863
863
|
rdf:type owl:Restriction ;
|
|
864
864
|
owl:onProperty test:pageContent ;
|
|
865
865
|
owl:maxQualifiedCardinality "1"^^xsd:integer ;
|
|
866
|
-
owl:
|
|
866
|
+
owl:onDataRange xsd:string ;
|
|
867
867
|
] ,
|
|
868
868
|
[
|
|
869
869
|
rdf:type owl:Restriction ;
|
|
@@ -873,7 +873,7 @@ test:onto {
|
|
|
873
873
|
] .
|
|
874
874
|
|
|
875
875
|
test:title rdf:type owl:DatatypeProperty ;
|
|
876
|
-
rdfs:domain test:
|
|
876
|
+
rdfs:domain test:Book ;
|
|
877
877
|
rdfs:range xsd:string ;
|
|
878
878
|
dcterms:creator <https://orcid.org/0000-0003-1681-4036> ;
|
|
879
879
|
dcterms:created "2024-05-16T18:38:25.551434"^^xsd:dateTime ;
|
|
@@ -881,7 +881,7 @@ test:onto {
|
|
|
881
881
|
dcterms:modified "2024-05-16T18:38:25.551434"^^xsd:dateTime .
|
|
882
882
|
|
|
883
883
|
test:author rdf:type owl:ObjectProperty ;
|
|
884
|
-
rdfs:domain test:
|
|
884
|
+
rdfs:domain test:Book ;
|
|
885
885
|
rdfs:range test:Person ;
|
|
886
886
|
dcterms:creator <https://orcid.org/0000-0003-1681-4036> ;
|
|
887
887
|
dcterms:created "2024-05-16T18:38:25.551434"^^xsd:dateTime ;
|
|
@@ -889,7 +889,7 @@ test:onto {
|
|
|
889
889
|
dcterms:modified "2024-05-16T18:38:25.551434"^^xsd:dateTime .
|
|
890
890
|
|
|
891
891
|
test:pubDate rdf:type owl:DatatypeProperty ;
|
|
892
|
-
rdfs:domain test:
|
|
892
|
+
rdfs:domain test:Book ;
|
|
893
893
|
rdfs:range xsd:date ;
|
|
894
894
|
dcterms:creator <https://orcid.org/0000-0003-1681-4036> ;
|
|
895
895
|
dcterms:created "2024-05-16T18:38:25.551434"^^xsd:dateTime ;
|
|
@@ -907,7 +907,7 @@ test:onto {
|
|
|
907
907
|
rdf:type owl:Restriction ;
|
|
908
908
|
owl:onProperty test:title ;
|
|
909
909
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
910
|
-
owl:
|
|
910
|
+
owl:onDataRange xsd:string ;
|
|
911
911
|
] ,
|
|
912
912
|
[
|
|
913
913
|
rdf:type owl:Restriction ;
|
|
@@ -918,7 +918,7 @@ test:onto {
|
|
|
918
918
|
rdf:type owl:Restriction ;
|
|
919
919
|
owl:onProperty test:pubDate ;
|
|
920
920
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
921
|
-
owl:
|
|
921
|
+
owl:onDataRange xsd:date ;
|
|
922
922
|
] .
|
|
923
923
|
|
|
924
924
|
#
|
|
@@ -975,31 +975,31 @@ test:onto {
|
|
|
975
975
|
rdf:type owl:Restriction ;
|
|
976
976
|
owl:onProperty test:stringSetter ;
|
|
977
977
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
978
|
-
owl:
|
|
978
|
+
owl:onDataRange rdf:langString ;
|
|
979
979
|
] ,
|
|
980
980
|
[
|
|
981
981
|
rdf:type owl:Restriction ;
|
|
982
982
|
owl:onProperty test:langStringSetter ;
|
|
983
983
|
owl:minQualifiedCardinality "1"^^xsd:integer ;
|
|
984
|
-
owl:
|
|
984
|
+
owl:onDataRange xsd:string ;
|
|
985
985
|
] ,
|
|
986
986
|
[
|
|
987
987
|
rdf:type owl:Restriction ;
|
|
988
988
|
owl:onProperty test:booleanSetter ;
|
|
989
989
|
owl:maxQualifiedCardinality "1"^^xsd:integer ;
|
|
990
|
-
owl:
|
|
990
|
+
owl:onDataRange xsd:string ;
|
|
991
991
|
] ,
|
|
992
992
|
[
|
|
993
993
|
rdf:type owl:Restriction ;
|
|
994
994
|
owl:onProperty test:decimalSetter ;
|
|
995
995
|
owl:maxQualifiedCardinality "1"^^xsd:integer ;
|
|
996
996
|
owl:maxQualifiedCardinality "3"^^xsd:integer ;
|
|
997
|
-
owl:
|
|
997
|
+
owl:onDataRange xsd:decimal ;
|
|
998
998
|
] ,
|
|
999
999
|
[
|
|
1000
1000
|
rdf:type owl:Restriction ;
|
|
1001
1001
|
owl:onProperty test:integerSetter ;
|
|
1002
|
-
owl:
|
|
1002
|
+
owl:onDataRange xsd:decimal ;
|
|
1003
1003
|
] .
|
|
1004
1004
|
|
|
1005
1005
|
|
|
@@ -1339,241 +1339,241 @@ test:onto {
|
|
|
1339
1339
|
rdf:type owl:Restriction ;
|
|
1340
1340
|
owl:onProperty test:stringProp ;
|
|
1341
1341
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1342
|
-
owl:
|
|
1342
|
+
owl:onDataRange xsd:string ;
|
|
1343
1343
|
] ,
|
|
1344
1344
|
[
|
|
1345
1345
|
rdf:type owl:Restriction ;
|
|
1346
1346
|
owl:onProperty test:langStringProp ;
|
|
1347
1347
|
owl:minQualifiedCardinality "1"^^xsd:integer ;
|
|
1348
|
-
owl:
|
|
1348
|
+
owl:onDataRange rdf:langString ;
|
|
1349
1349
|
] ,
|
|
1350
1350
|
[
|
|
1351
1351
|
rdf:type owl:Restriction ;
|
|
1352
1352
|
owl:onProperty test:booleanProp ;
|
|
1353
1353
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1354
|
-
owl:
|
|
1354
|
+
owl:onDataRange xsd:boolean ;
|
|
1355
1355
|
] ,
|
|
1356
1356
|
[
|
|
1357
1357
|
rdf:type owl:Restriction ;
|
|
1358
1358
|
owl:onProperty test:decimalProp ;
|
|
1359
1359
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1360
|
-
owl:
|
|
1360
|
+
owl:onDataRange xsd:decimal ;
|
|
1361
1361
|
] ,
|
|
1362
1362
|
[
|
|
1363
1363
|
rdf:type owl:Restriction ;
|
|
1364
1364
|
owl:onProperty test:floatProp ;
|
|
1365
1365
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1366
|
-
owl:
|
|
1366
|
+
owl:onDataRange xsd:float ;
|
|
1367
1367
|
] ,
|
|
1368
1368
|
[
|
|
1369
1369
|
rdf:type owl:Restriction ;
|
|
1370
1370
|
owl:onProperty test:doubleProp ;
|
|
1371
1371
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1372
|
-
owl:
|
|
1372
|
+
owl:onDataRange xsd:double ;
|
|
1373
1373
|
] ,
|
|
1374
1374
|
[
|
|
1375
1375
|
rdf:type owl:Restriction ;
|
|
1376
1376
|
owl:onProperty test:durationProp ;
|
|
1377
1377
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1378
|
-
owl:
|
|
1378
|
+
owl:onDataRange xsd:duration ;
|
|
1379
1379
|
] ,
|
|
1380
1380
|
[
|
|
1381
1381
|
rdf:type owl:Restriction ;
|
|
1382
1382
|
owl:onProperty test:dateTimeProp ;
|
|
1383
1383
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1384
|
-
owl:
|
|
1384
|
+
owl:onDataRange xsd:dateTime ;
|
|
1385
1385
|
] ,
|
|
1386
1386
|
[
|
|
1387
1387
|
rdf:type owl:Restriction ;
|
|
1388
1388
|
owl:onProperty test:dateTimeStampProp ;
|
|
1389
1389
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1390
|
-
owl:
|
|
1390
|
+
owl:onDataRange xsd:dateTimeStamp ;
|
|
1391
1391
|
] ,
|
|
1392
1392
|
[
|
|
1393
1393
|
rdf:type owl:Restriction ;
|
|
1394
1394
|
owl:onProperty test:timeProp ;
|
|
1395
1395
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1396
|
-
owl:
|
|
1396
|
+
owl:onDataRange xsd:time ;
|
|
1397
1397
|
] ,
|
|
1398
1398
|
[
|
|
1399
1399
|
rdf:type owl:Restriction ;
|
|
1400
1400
|
owl:onProperty test:dateProp ;
|
|
1401
1401
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1402
|
-
owl:
|
|
1402
|
+
owl:onDataRange xsd:date ;
|
|
1403
1403
|
] ,
|
|
1404
1404
|
[
|
|
1405
1405
|
rdf:type owl:Restriction ;
|
|
1406
1406
|
owl:onProperty test:gYearMonthProp ;
|
|
1407
1407
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1408
|
-
owl:
|
|
1408
|
+
owl:onDataRange xsd:gYearMonth ;
|
|
1409
1409
|
] ,
|
|
1410
1410
|
[
|
|
1411
1411
|
rdf:type owl:Restriction ;
|
|
1412
1412
|
owl:onProperty test:gYearProp ;
|
|
1413
1413
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1414
|
-
owl:
|
|
1414
|
+
owl:onDataRange xsd:gYear ;
|
|
1415
1415
|
] ,
|
|
1416
1416
|
[
|
|
1417
1417
|
rdf:type owl:Restriction ;
|
|
1418
1418
|
owl:onProperty test:gMonthDayProp ;
|
|
1419
1419
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1420
|
-
owl:
|
|
1420
|
+
owl:onDataRange xsd:gMonthDay ;
|
|
1421
1421
|
] ,
|
|
1422
1422
|
[
|
|
1423
1423
|
rdf:type owl:Restriction ;
|
|
1424
1424
|
owl:onProperty test:gDayProp ;
|
|
1425
1425
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1426
|
-
owl:
|
|
1426
|
+
owl:onDataRange xsd:gDay ;
|
|
1427
1427
|
] ,
|
|
1428
1428
|
[
|
|
1429
1429
|
rdf:type owl:Restriction ;
|
|
1430
1430
|
owl:onProperty test:gMonthProp ;
|
|
1431
1431
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1432
|
-
owl:
|
|
1432
|
+
owl:onDataRange xsd:gMonth ;
|
|
1433
1433
|
] ,
|
|
1434
1434
|
[
|
|
1435
1435
|
rdf:type owl:Restriction ;
|
|
1436
1436
|
owl:onProperty test:hexBinaryProp ;
|
|
1437
1437
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1438
|
-
owl:
|
|
1438
|
+
owl:onDataRange xsd:hexBinary ;
|
|
1439
1439
|
] ,
|
|
1440
1440
|
[
|
|
1441
1441
|
rdf:type owl:Restriction ;
|
|
1442
1442
|
owl:onProperty test:base64BinaryProp ;
|
|
1443
1443
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1444
|
-
owl:
|
|
1444
|
+
owl:onDataRange xsd:base64Binary ;
|
|
1445
1445
|
] ,
|
|
1446
1446
|
[
|
|
1447
1447
|
rdf:type owl:Restriction ;
|
|
1448
1448
|
owl:onProperty test:anyURIProp ;
|
|
1449
1449
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1450
|
-
owl:
|
|
1450
|
+
owl:onDataRange xsd:anyURI ;
|
|
1451
1451
|
] ,
|
|
1452
1452
|
[
|
|
1453
1453
|
rdf:type owl:Restriction ;
|
|
1454
1454
|
owl:onProperty test:QNameProp ;
|
|
1455
1455
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1456
|
-
owl:
|
|
1456
|
+
owl:onDataRange xsd:QName ;
|
|
1457
1457
|
] ,
|
|
1458
1458
|
[
|
|
1459
1459
|
rdf:type owl:Restriction ;
|
|
1460
1460
|
owl:onProperty test:normalizedStringProp ;
|
|
1461
1461
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1462
|
-
owl:
|
|
1462
|
+
owl:onDataRange xsd:normalizedString ;
|
|
1463
1463
|
] ,
|
|
1464
1464
|
[
|
|
1465
1465
|
rdf:type owl:Restriction ;
|
|
1466
1466
|
owl:onProperty test:tokenProp ;
|
|
1467
1467
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1468
|
-
owl:
|
|
1468
|
+
owl:onDataRange xsd:token ;
|
|
1469
1469
|
] ,
|
|
1470
1470
|
[
|
|
1471
1471
|
rdf:type owl:Restriction ;
|
|
1472
1472
|
owl:onProperty test:languageProp ;
|
|
1473
1473
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1474
|
-
owl:
|
|
1474
|
+
owl:onDataRange xsd:language ;
|
|
1475
1475
|
] ,
|
|
1476
1476
|
[
|
|
1477
1477
|
rdf:type owl:Restriction ;
|
|
1478
1478
|
owl:onProperty test:nCNameProp ;
|
|
1479
1479
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1480
|
-
owl:
|
|
1480
|
+
owl:onDataRange xsd:NCName ;
|
|
1481
1481
|
] ,
|
|
1482
1482
|
[
|
|
1483
1483
|
rdf:type owl:Restriction ;
|
|
1484
1484
|
owl:onProperty test:nMTOKENProp ;
|
|
1485
1485
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1486
|
-
owl:
|
|
1486
|
+
owl:onDataRange xsd:NMTOKEN ;
|
|
1487
1487
|
] ,
|
|
1488
1488
|
[
|
|
1489
1489
|
rdf:type owl:Restriction ;
|
|
1490
1490
|
owl:onProperty test:iDProp ;
|
|
1491
1491
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1492
|
-
owl:
|
|
1492
|
+
owl:onDataRange xsd:ID ;
|
|
1493
1493
|
] ,
|
|
1494
1494
|
[
|
|
1495
1495
|
rdf:type owl:Restriction ;
|
|
1496
1496
|
owl:onProperty test:iDREFProp ;
|
|
1497
1497
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1498
|
-
owl:
|
|
1498
|
+
owl:onDataRange xsd:IDREF ;
|
|
1499
1499
|
] ,
|
|
1500
1500
|
[
|
|
1501
1501
|
rdf:type owl:Restriction ;
|
|
1502
1502
|
owl:onProperty test:integerProp ;
|
|
1503
1503
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1504
|
-
owl:
|
|
1504
|
+
owl:onDataRange xsd:integer ;
|
|
1505
1505
|
] ,
|
|
1506
1506
|
[
|
|
1507
1507
|
rdf:type owl:Restriction ;
|
|
1508
1508
|
owl:onProperty test:nonPositiveIntegerProp ;
|
|
1509
1509
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1510
|
-
owl:
|
|
1510
|
+
owl:onDataRange xsd:nonPositiveInteger ;
|
|
1511
1511
|
] ,
|
|
1512
1512
|
[
|
|
1513
1513
|
rdf:type owl:Restriction ;
|
|
1514
1514
|
owl:onProperty test:negativeIntegerProp ;
|
|
1515
1515
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1516
|
-
owl:
|
|
1516
|
+
owl:onDataRange xsd:negativeInteger ;
|
|
1517
1517
|
] ,
|
|
1518
1518
|
[
|
|
1519
1519
|
rdf:type owl:Restriction ;
|
|
1520
1520
|
owl:onProperty test:longProp ;
|
|
1521
1521
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1522
|
-
owl:
|
|
1522
|
+
owl:onDataRange xsd:long ;
|
|
1523
1523
|
] ,
|
|
1524
1524
|
[
|
|
1525
1525
|
rdf:type owl:Restriction ;
|
|
1526
1526
|
owl:onProperty test:intProp ;
|
|
1527
1527
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1528
|
-
owl:
|
|
1528
|
+
owl:onDataRange xsd:int ;
|
|
1529
1529
|
] ,
|
|
1530
1530
|
[
|
|
1531
1531
|
rdf:type owl:Restriction ;
|
|
1532
1532
|
owl:onProperty test:shortProp ;
|
|
1533
1533
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1534
|
-
owl:
|
|
1534
|
+
owl:onDataRange xsd:short ;
|
|
1535
1535
|
] ,
|
|
1536
1536
|
[
|
|
1537
1537
|
rdf:type owl:Restriction ;
|
|
1538
1538
|
owl:onProperty test:byteProp ;
|
|
1539
1539
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1540
|
-
owl:
|
|
1540
|
+
owl:onDataRange xsd:byte ;
|
|
1541
1541
|
] ,
|
|
1542
1542
|
[
|
|
1543
1543
|
rdf:type owl:Restriction ;
|
|
1544
1544
|
owl:onProperty test:nonNegativeIntegerProp ;
|
|
1545
1545
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1546
|
-
owl:
|
|
1546
|
+
owl:onDataRange xsd:nonNegativeInteger ;
|
|
1547
1547
|
] ,
|
|
1548
1548
|
[
|
|
1549
1549
|
rdf:type owl:Restriction ;
|
|
1550
1550
|
owl:onProperty test:unsignedLongProp ;
|
|
1551
1551
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1552
|
-
owl:
|
|
1552
|
+
owl:onDataRange xsd:unsignedLong ;
|
|
1553
1553
|
] ,
|
|
1554
1554
|
[
|
|
1555
1555
|
rdf:type owl:Restriction ;
|
|
1556
1556
|
owl:onProperty test:unsignedIntProp ;
|
|
1557
1557
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1558
|
-
owl:
|
|
1558
|
+
owl:onDataRange xsd:unsignedInt ;
|
|
1559
1559
|
] ,
|
|
1560
1560
|
[
|
|
1561
1561
|
rdf:type owl:Restriction ;
|
|
1562
1562
|
owl:onProperty test:unsignedShortProp ;
|
|
1563
1563
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1564
|
-
owl:
|
|
1564
|
+
owl:onDataRange xsd:unsignedShort ;
|
|
1565
1565
|
] ,
|
|
1566
1566
|
[
|
|
1567
1567
|
rdf:type owl:Restriction ;
|
|
1568
1568
|
owl:onProperty test:unsignedByteProp ;
|
|
1569
1569
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1570
|
-
owl:
|
|
1570
|
+
owl:onDataRange xsd:unsignedByte ;
|
|
1571
1571
|
] ,
|
|
1572
1572
|
[
|
|
1573
1573
|
rdf:type owl:Restriction ;
|
|
1574
1574
|
owl:onProperty test:positiveIntegerProp ;
|
|
1575
1575
|
owl:qualifiedCardinality "1"^^xsd:integer ;
|
|
1576
|
-
owl:
|
|
1576
|
+
owl:onDataRange xsd:positiveInteger ;
|
|
1577
1577
|
] .
|
|
1578
1578
|
|
|
1579
1579
|
}
|
|
@@ -2,16 +2,17 @@ oldaplib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
2
2
|
oldaplib/apps/load_list.py,sha256=Dr0oLPUMoJkAD55_flAt6y8hjx_ci7uuOQzYBUOr8Sc,1840
|
|
3
3
|
oldaplib/ontologies/admin-testing.trig,sha256=Uvz7QiY0IQH_7zHDrSFnWXwmf4iU5JKlJ_1Lo1bDk08,5322
|
|
4
4
|
oldaplib/ontologies/admin.trig,sha256=_LOI4kXXy4PQFQTzdcuWno_vPlr0Mx9aK5T3gswwpjY,9080
|
|
5
|
-
oldaplib/ontologies/
|
|
6
|
-
oldaplib/ontologies/oldap.
|
|
7
|
-
oldaplib/ontologies/
|
|
5
|
+
oldaplib/ontologies/example.trig,sha256=MdRrFBZZ1L6aUDiT6aX4cnXiy-RoZHczF3Exn7aBSmU,1518
|
|
6
|
+
oldaplib/ontologies/oldap.trig,sha256=RTF9L5tHZKjv_ELcf7v_PfOd4j5xSf-_GxWPp9ndvtI,58108
|
|
7
|
+
oldaplib/ontologies/oldap.ttl,sha256=qdA0uiSjzVhkc1d5IN2y5ioK1QMzwl-TTnn3M_D1Kh8,29446
|
|
8
|
+
oldaplib/ontologies/shared.trig,sha256=WwwjNq9Ydjyujc4kwY_zFYxSaq3iXTH9Mu0ni6zBOiY,9880
|
|
8
9
|
oldaplib/ontologies/standard/.gitsave,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
10
|
oldaplib/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
-
oldaplib/src/cachesingleton.py,sha256=
|
|
11
|
+
oldaplib/src/cachesingleton.py,sha256=WGhuFER-mTnOJmwaN17fXPAg7zn7GJBm-XadShNUBBk,3687
|
|
11
12
|
oldaplib/src/connection.py,sha256=LJMJO65QhSbheIEBnOCphRyAD1STwkO8zfNcYPcKwP8,29016
|
|
12
|
-
oldaplib/src/datamodel.py,sha256=
|
|
13
|
+
oldaplib/src/datamodel.py,sha256=RJ8VscfpZRKRJq2TC6RLnHsHs5MaMeO4nla1MpKKhWw,31023
|
|
13
14
|
oldaplib/src/dtypes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
-
oldaplib/src/dtypes/bnode.py,sha256=
|
|
15
|
+
oldaplib/src/dtypes/bnode.py,sha256=7Swl77PJlzahov7d7ijJExmoVsTkR5JFOvFQf1jDmEg,1555
|
|
15
16
|
oldaplib/src/dtypes/languagein.py,sha256=6h3VrTH8IcTN6mvnWuGvzDoKX_Jh6h9w3wWrLuAWfVc,8593
|
|
16
17
|
oldaplib/src/dtypes/namespaceiri.py,sha256=IPM8cSOms81LYBCxhdnwV032jZ_fZdawHGmRVeGK1lQ,2471
|
|
17
18
|
oldaplib/src/dtypes/rdfset.py,sha256=1RNbjQuUknaEfj84o-AsXEJvEWs3OI6QSKe4p6aDXqc,7782
|
|
@@ -21,20 +22,20 @@ oldaplib/src/enums/action.py,sha256=aL7XXmoZ63_L2TTR37vqHpPPf5H_kYiPunNyiSDN28U,
|
|
|
21
22
|
oldaplib/src/enums/adminpermissions.py,sha256=v8Rc83NPSG_s7830-I7CbmKIhOioN2YkSH1xhWMKXdU,1998
|
|
22
23
|
oldaplib/src/enums/attributeclass.py,sha256=Nm8gaNvs3vT-bjvj8QZDPev1ncjxzOng9R7auP6yV_g,2402
|
|
23
24
|
oldaplib/src/enums/datapermissions.py,sha256=0KiDjrPeSpGDAui8Z74sFBdDm64stzcMJx_dVEa2-bo,3437
|
|
24
|
-
oldaplib/src/enums/haspropertyattr.py,sha256=
|
|
25
|
+
oldaplib/src/enums/haspropertyattr.py,sha256=CkVYE2ahIDO_RCzYRWGojk2ngO7j_uuZzo0ThHkxV7k,693
|
|
25
26
|
oldaplib/src/enums/language.py,sha256=OfQsFpIBj8lGBbZEqVCR_1F-bimPM48vqBl4EKBgggY,4623
|
|
26
27
|
oldaplib/src/enums/oldaplistattr.py,sha256=xuOU3oP35-PFFmlI-jlN28yqdk5lp_OzScKCC1O4IDI,620
|
|
27
28
|
oldaplib/src/enums/oldaplistnodeattr.py,sha256=qokSxE-0FLyWNipjjY3gZJC2bBEt1qS1Z2SFg-gb0kc,722
|
|
28
29
|
oldaplib/src/enums/owlpropertytype.py,sha256=KQfBoLdxSkQ31bni5FWL8j871kLRxQbnLu_F656daLw,428
|
|
29
30
|
oldaplib/src/enums/permissionsetattr.py,sha256=og4jPvbY86ABr_I9qIvhvg4iIiQCFMcv9-_0D2gfzz8,839
|
|
30
|
-
oldaplib/src/enums/projectattr.py,sha256=
|
|
31
|
+
oldaplib/src/enums/projectattr.py,sha256=rySu9-6n20p9CcwKKoUagxaui_2-QdQK6HDcO46bqJ4,1263
|
|
31
32
|
oldaplib/src/enums/propertyclassattr.py,sha256=lYTdXM3Knw2F4CzshhcHzPbKQhAIRbK0Nlk4hfJJe2o,3675
|
|
32
33
|
oldaplib/src/enums/resourceclassattr.py,sha256=g8tc5JDr4wLCteBNnhHMVE4cRZOhlSQqs-qFnRB3_N0,709
|
|
33
34
|
oldaplib/src/enums/sparql_result_format.py,sha256=MLBHKY25o96mswSWioR-rS__zP6kPzYGNIWLZCr9784,636
|
|
34
35
|
oldaplib/src/enums/userattr.py,sha256=ZRBGGLP5NMvyAER893TzRjfkhZk4jOtS9RsSkYsQM-c,1628
|
|
35
36
|
oldaplib/src/enums/xsd_datatypes.py,sha256=TGpy2TEaYfmCsSCClSyK76ixNP_hR7nEdJvCT6l-Txk,6253
|
|
36
37
|
oldaplib/src/globalconfig.py,sha256=zAJmAMQnojbhj8SZFUaPj7DIHN5g3wUwQQhWPMxjDUg,1306
|
|
37
|
-
oldaplib/src/hasproperty.py,sha256=
|
|
38
|
+
oldaplib/src/hasproperty.py,sha256=4ihnnbhk34mPInBud1PoyjzjWnySmewB3LEJbTDgT5I,15361
|
|
38
39
|
oldaplib/src/helpers/Notify.py,sha256=_QJ_vqBIYsZOy6AX_BcZFr2Bb5MRVNra1JBVqhVnJ_Q,1887
|
|
39
40
|
oldaplib/src/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
41
|
oldaplib/src/helpers/attributechange.py,sha256=aQ5Q9s6U3bVd1WSNQcBpkr5UQVxeP4z_uz0K5_31ZVc,256
|
|
@@ -44,30 +45,30 @@ oldaplib/src/helpers/irincname.py,sha256=0phRZDu8Tw0tT_pcKrdQVFjcvOCPhS3teNp_tbz
|
|
|
44
45
|
oldaplib/src/helpers/json_encoder.py,sha256=c78h9uf58zfLaK8X7S1KCK4otY3iEltGnPBy_5ryiCk,2135
|
|
45
46
|
oldaplib/src/helpers/langstring.py,sha256=0nQT_63tsZ67YiSgB3R6slb-jzxetWQbpFUWjmAubf0,30170
|
|
46
47
|
oldaplib/src/helpers/numeric.py,sha256=swRKU51zbwss9UDGTC6FzhTTPK_BVfy5On0KCK-zZnQ,966
|
|
47
|
-
oldaplib/src/helpers/observable_dict.py,sha256=
|
|
48
|
+
oldaplib/src/helpers/observable_dict.py,sha256=Nf-0kWg93oz0PbYNpnK1Iinuw0yJQ_GbYU0BnOviLq4,3074
|
|
48
49
|
oldaplib/src/helpers/observable_set.py,sha256=NKn4JU1wDU-Yp7usbD_rJaYjoD-L7x4dq5x3ra2NSdk,11289
|
|
49
50
|
oldaplib/src/helpers/oldaperror.py,sha256=2gKgV8FYiEjbcox1KN1PlOIPY4KclxVTnCIOQ6Ivvc0,1321
|
|
50
51
|
oldaplib/src/helpers/query_processor.py,sha256=r01_tndB4h6RAeJ2IN3jpz5efv8rSCx1MYAz6DNCQ2Q,10145
|
|
51
52
|
oldaplib/src/helpers/semantic_version.py,sha256=HLFQO2CPVDz_GKZaFCjR5q_G-aSLQ2XYohCA2tCU9go,3218
|
|
52
53
|
oldaplib/src/helpers/serializeableset.py,sha256=1AWMWm_iEiFu8M2ZdOK_fXE6TyNGLDp6rp1HKryYv-Y,382
|
|
53
|
-
oldaplib/src/helpers/serializer.py,sha256=
|
|
54
|
+
oldaplib/src/helpers/serializer.py,sha256=4nqOuKcdlYVVjWKQumNXmdEPwsiAI9VrolxMqe1z9Q0,5602
|
|
54
55
|
oldaplib/src/helpers/singletonmeta.py,sha256=bz_c5LFcRxxYirL9EDaFrWlc5WhAzR2uz9krHp53INE,429
|
|
55
56
|
oldaplib/src/helpers/tools.py,sha256=Yrtmo2xnU7ttVxPdCZgDoE0CNXcl2uqrmO8KJo091ls,12655
|
|
56
57
|
oldaplib/src/iconnection.py,sha256=XlOc2Kh4tK_UOHydLQwlWjUFLUze-Aq_vEZpf9KS1-s,3677
|
|
57
58
|
oldaplib/src/in_project.py,sha256=2KuhHPj8DNveFRBeImrRfxlCOYhBK-mcxXYUp6s--j8,10672
|
|
58
59
|
oldaplib/src/model.py,sha256=sHRXs1LHPU3UjAqTHvoFsM7eRgqUkMykJkRdx0SuYdI,19202
|
|
59
|
-
oldaplib/src/objectfactory.py,sha256=
|
|
60
|
-
oldaplib/src/oldaplist.py,sha256=
|
|
60
|
+
oldaplib/src/objectfactory.py,sha256=q6FoIuh49NCxxGCNIVjzkwNkhYbzc_hI9S2DJ63Mi8k,45029
|
|
61
|
+
oldaplib/src/oldaplist.py,sha256=Z96Fagi-e88d1Z3LWhvIVI7kUXsIXKVIKRnTTRhbPTY,42909
|
|
61
62
|
oldaplib/src/oldaplist_helpers.py,sha256=1Gur0nS1PCKb9iUtCKPUFDOYjw6vvAwYpe-G3DdxlEc,14213
|
|
62
|
-
oldaplib/src/oldaplistnode.py,sha256=
|
|
63
|
+
oldaplib/src/oldaplistnode.py,sha256=nKmWRJDf5pVqw7uc9kvPrLLLfAWgfExWjpqw6rxPsnI,87344
|
|
63
64
|
oldaplib/src/oldaplogging.py,sha256=IDSOylms9OSTInYPC4Y2QrTTEzRL0T5I2QssCevOhTU,1242
|
|
64
65
|
oldaplib/src/permissionset.py,sha256=rkbg1MJrTnS1XOhpgEWCmA1wdCYwY0Fs6HAsb4BBE-Y,31629
|
|
65
|
-
oldaplib/src/project.py,sha256=
|
|
66
|
-
oldaplib/src/propertyclass.py,sha256=
|
|
67
|
-
oldaplib/src/resourceclass.py,sha256=
|
|
66
|
+
oldaplib/src/project.py,sha256=J7JBVY4WMR5_I5TDH27isuHekqZ2xNuL9po2S5pI6nA,38586
|
|
67
|
+
oldaplib/src/propertyclass.py,sha256=fu8pHPgKQJuNYrVcTPkIrX2tCHmcTIFG09KNtbLTj44,88953
|
|
68
|
+
oldaplib/src/resourceclass.py,sha256=6SFF26TxJEmeltr7Qwl7zje3ApWt0h7LcaNVxjFwujg,101408
|
|
68
69
|
oldaplib/src/user.py,sha256=Z4GXPRkaHXx3glUpPXQdFqYMxQPOuqayDwkTAE5RGjU,48820
|
|
69
70
|
oldaplib/src/userdataclass.py,sha256=FbZkcRt0pKbOeqsZ7HbpwoKE-XPWH2AqpHG1GcsrBPo,12364
|
|
70
|
-
oldaplib/src/version.py,sha256=
|
|
71
|
+
oldaplib/src/version.py,sha256=v-ExhFzOD_GemLcOptv2ZODgnklv9iqEEospk_bU1_w,21
|
|
71
72
|
oldaplib/src/xsd/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
72
73
|
oldaplib/src/xsd/floatingpoint.py,sha256=rDReKqh0mXyc4F5wslgTUxbeGf3-PGERyughj5_62YI,8852
|
|
73
74
|
oldaplib/src/xsd/iri.py,sha256=tXOuDASdQ6k9KKp2wTO8H4K8yb-_o8jFPanua7wCHog,8269
|
|
@@ -116,28 +117,28 @@ oldaplib/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
116
117
|
oldaplib/test/test_cache.py,sha256=6TGukPUruuj5BsZaPGZdIx9L7v39qB9jIKZkg_GkbW4,702
|
|
117
118
|
oldaplib/test/test_connection.py,sha256=y_t0v9jbo1BFsDlAjei2ckG0iVnLNc4ShlIRxe8GMvg,13386
|
|
118
119
|
oldaplib/test/test_context.py,sha256=cJJWzSiWpKq9UFhbScru_PdOAqaCWKB3f_lRzxcCm10,4939
|
|
119
|
-
oldaplib/test/test_datamodel.py,sha256=
|
|
120
|
+
oldaplib/test/test_datamodel.py,sha256=Z8iZAO9oQKjSCGtyid6kkcCQrscIWnvEeDSDOclj4ns,55391
|
|
120
121
|
oldaplib/test/test_dtypes.py,sha256=UVdlHNdJrJ5iujMWlwk9tOhRzouJYA8x0E-eLDXPmUo,8583
|
|
121
122
|
oldaplib/test/test_hasproperty.py,sha256=ykhHZHSJA0DYLIUNrlrVqbuLWLNGuTfaW1aMCCGJ4Vg,11219
|
|
122
123
|
oldaplib/test/test_in_project.py,sha256=DYT-guwRQ9crnfEt7cQZxoEMxThin7QeymNce3jaZx4,7779
|
|
123
124
|
oldaplib/test/test_langstring.py,sha256=37BeKiQzj63G-SyS_paK_SEG7ulRbGrE89Mz40UB_bE,15146
|
|
124
125
|
oldaplib/test/test_language_in.py,sha256=ELqHO-YIsZSCPF3E3rWde4J7rERL7En7sV_pzQ00zgs,8826
|
|
125
126
|
oldaplib/test/test_objectfactory.py,sha256=F53k5wvpj8rFF8Mn9WOjMRcbTPEqqE0XHm7Zmm7r5go,30740
|
|
126
|
-
oldaplib/test/test_observable_dict.py,sha256=
|
|
127
|
+
oldaplib/test/test_observable_dict.py,sha256=LZML4I4RwR9EBrssHou0_c-J9m6Zju7nFl7h8JUu6yc,1048
|
|
127
128
|
oldaplib/test/test_observable_set.py,sha256=JWZSoAsr8XIEBXPVgSVJjQQEEc8uSAme5IrFYLYVVXw,6313
|
|
128
129
|
oldaplib/test/test_oldaplist.py,sha256=NNYtaqFrjs8FhUWujM5C52HmXUyaF8ct1CflFUK1zBM,20060
|
|
129
130
|
oldaplib/test/test_oldaplist_helpers.py,sha256=vJkA_Txhdk4oIwo2YK566yOte2Z6MQkshxPzCAg6k3I,24439
|
|
130
131
|
oldaplib/test/test_oldaplistnode.py,sha256=hQDWkUUvV7MORLHrhbFIPUOrZ-N1Ice9gfQVkJGEtmo,149254
|
|
131
132
|
oldaplib/test/test_permissionset.py,sha256=P2SWvzvNund8u4vTgd-azwBXGHGtYLkfJVwpzctx_Ow,23282
|
|
132
|
-
oldaplib/test/test_project.py,sha256=
|
|
133
|
-
oldaplib/test/test_propertyclass.py,sha256=
|
|
134
|
-
oldaplib/test/test_resourceclass.py,sha256=
|
|
133
|
+
oldaplib/test/test_project.py,sha256=xTPhGlnLNRJDpAoi-Z4SNq4KEk5715vJQKJebXr0SSY,28599
|
|
134
|
+
oldaplib/test/test_propertyclass.py,sha256=nIjHfz5k4o3E_LvV3MDrXzT2TIKzIJEsNTaPgHRUpgg,44009
|
|
135
|
+
oldaplib/test/test_resourceclass.py,sha256=3HE7ToxgCNVU-jmnH5W4LbxaNTMZbTXFAqMB8EDvV8E,94060
|
|
135
136
|
oldaplib/test/test_semantic_version.py,sha256=OSJYHWDpKBqk-HsxJ2nFpSr14a4OEZTFCogzEni8mcE,3392
|
|
136
137
|
oldaplib/test/test_user.py,sha256=nIL7-APRf2cCxN6U74QR0I4Np-25RPdrelA-IKmL-oc,72079
|
|
137
138
|
oldaplib/test/test_xsd_datatypes.py,sha256=K4bJv4G12EG3VeOzMYU_4oQrKuiUpRmRDEZTrHPKmSE,67943
|
|
138
139
|
oldaplib/testdata/Gender.yaml,sha256=54ohJWToiuO2rMOUJ85JOsZf2TSrIuPLarHriXa6Lww,235
|
|
139
140
|
oldaplib/testdata/collections_type.yaml,sha256=03MNQVUoLlq7A1OOtSvACeRs32VfP5eS8av-mPLGoEI,2737
|
|
140
|
-
oldaplib/testdata/connection_test.trig,sha256=
|
|
141
|
+
oldaplib/testdata/connection_test.trig,sha256=_ztJT62u7OFt1ULjV1eTkd1R-ftBTJFFoZWr8C_jFMY,22256
|
|
141
142
|
oldaplib/testdata/datamodel_test.trig,sha256=MTJErEHHWe8XkjFUHthg9RXXFlA_yDJgpR-HqJI2XLE,802
|
|
142
143
|
oldaplib/testdata/event_type.yaml,sha256=wpXiheSEKh4xOoUZvAxWytJQ-sNK6oUYdVpOmyW9wPc,3083
|
|
143
144
|
oldaplib/testdata/hlist_schema.yaml,sha256=fgHiB-ZxOkE6OvkZKk9SL2kNn8Akj6dS6ySDFSpknTA,186
|
|
@@ -145,7 +146,7 @@ oldaplib/testdata/institution_or_building_type.yaml,sha256=SA2rsQwoAdyn6eSIJU1il
|
|
|
145
146
|
oldaplib/testdata/language.yaml,sha256=YaQA77d7QyOydqNylR5RSb-0A6h9pLM4mgadJSrYC3A,451
|
|
146
147
|
oldaplib/testdata/location_type.yaml,sha256=amlhYNDc9qLv_if6urtAtBTnEXrVrb6_aulE180GYkc,1323
|
|
147
148
|
oldaplib/testdata/means_of_transportation.yaml,sha256=WOqtSHlw8gCK54d5hmibCWyL_H1DRtBBpUdFNwIUBJo,788
|
|
148
|
-
oldaplib/testdata/objectfactory_test.trig,sha256=
|
|
149
|
+
oldaplib/testdata/objectfactory_test.trig,sha256=j7SdYQRjO81AQxTcRf_doGh42Ixa3uG8cVE_zUPEhKo,75254
|
|
149
150
|
oldaplib/testdata/playground_list.yaml,sha256=EypG4WQoq9emI10Hj-DrKjplgxr1MrQBPc0ppV_rHQQ,1620
|
|
150
151
|
oldaplib/testdata/role.yaml,sha256=CLI9f2HD_ulYw67DqWntaMLWH0CGWz1cfNkvxcnK6XQ,691
|
|
151
152
|
oldaplib/testdata/source_type-1.yaml,sha256=Khow4rD8oZgBAbUex4T-nKBTrx0bAseMhTShS7-MgGw,921
|
|
@@ -153,6 +154,6 @@ oldaplib/testdata/source_type.yaml,sha256=dSihKikw3O-IlGf6anj5KWMoBYLaweLVF1Zojm
|
|
|
153
154
|
oldaplib/testdata/test_move_left_of_toL.yaml,sha256=2m1OSQrQFlsCQxeJrjzBAO74LMprNDo_HuyrYGsOeXI,787
|
|
154
155
|
oldaplib/testdata/testlist.yaml,sha256=AT11nXEG81Sfyb-tr1gQV0H_dZBrOCcFuHf7YtL8P2g,1994
|
|
155
156
|
oldaplib/testit.http,sha256=qW7mnr6aNLXFG6lQdLgyhXILOPN6qc5iFVZclLyVvkY,303
|
|
156
|
-
oldaplib-0.
|
|
157
|
-
oldaplib-0.
|
|
158
|
-
oldaplib-0.
|
|
157
|
+
oldaplib-0.3.1.dist-info/METADATA,sha256=oyjJ9ghRAsxaKf5hTuG9cjuzd7EJ3ZhRtOzpWD4cfLU,2803
|
|
158
|
+
oldaplib-0.3.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
159
|
+
oldaplib-0.3.1.dist-info/RECORD,,
|
|
File without changes
|