oldaplib 0.3.26__py3-none-any.whl → 0.3.27__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/shared.trig +7 -1
- oldaplib/src/objectfactory.py +7 -7
- oldaplib/src/resourceclass.py +4 -0
- oldaplib/src/version.py +1 -1
- oldaplib/test/test_objectfactory.py +44 -4
- oldaplib/testdata/instances_test.trig +18 -0
- oldaplib/testdata/objectfactory_test.trig +41 -3
- {oldaplib-0.3.26.dist-info → oldaplib-0.3.27.dist-info}/METADATA +1 -1
- {oldaplib-0.3.26.dist-info → oldaplib-0.3.27.dist-info}/RECORD +10 -10
- {oldaplib-0.3.26.dist-info → oldaplib-0.3.27.dist-info}/WHEEL +0 -0
oldaplib/ontologies/shared.trig
CHANGED
|
@@ -193,6 +193,9 @@ shared:shacl {
|
|
|
193
193
|
oldap:externalOntology "false"^^xsd:boolean ;
|
|
194
194
|
sh:datatype xsd:string ;
|
|
195
195
|
sh:in ( 'iiif' 'http' 'custom') ;
|
|
196
|
+
sh:minCount "1"^^xsd:integer ;
|
|
197
|
+
sh:maxCount "1"^^xsd:integer ;
|
|
198
|
+
sh:order "4.0"^^xsd:decimal ;
|
|
196
199
|
] ;
|
|
197
200
|
sh:property [
|
|
198
201
|
sh:path shared:path ;
|
|
@@ -203,7 +206,10 @@ shared:shacl {
|
|
|
203
206
|
oldap:statementProperty "false"^^xsd:boolean ;
|
|
204
207
|
oldap:externalOntology "false"^^xsd:boolean ;
|
|
205
208
|
sh:datatype xsd:string ;
|
|
206
|
-
|
|
209
|
+
sh:minCount "1"^^xsd:integer ;
|
|
210
|
+
sh:maxCount "1"^^xsd:integer ;
|
|
211
|
+
sh:order "4.0"^^xsd:decimal ;
|
|
212
|
+
] .
|
|
207
213
|
}
|
|
208
214
|
|
|
209
215
|
shared:onto {
|
oldaplib/src/objectfactory.py
CHANGED
|
@@ -1156,9 +1156,9 @@ class ResourceInstance:
|
|
|
1156
1156
|
WHERE {{
|
|
1157
1157
|
VALUES ?inputImageId {{ {mediaObjectId.toRdf} }}
|
|
1158
1158
|
|
|
1159
|
+
?subject rdf:type shared:MediaObject .
|
|
1159
1160
|
GRAPH ?graph {{
|
|
1160
1161
|
?subject shared:imageId ?inputImageId .
|
|
1161
|
-
?subject rdf:type shared:MediaObject .
|
|
1162
1162
|
?subject shared:originalName ?originalName .
|
|
1163
1163
|
?subject shared:originalMimeType ?originalMimeType .
|
|
1164
1164
|
?subject shared:serverUrl ?serverUrl .
|
|
@@ -1182,13 +1182,13 @@ class ResourceInstance:
|
|
|
1182
1182
|
if len(res) == 0 or len(res) > 1:
|
|
1183
1183
|
raise OldapErrorNotFound(f'Media object with id {mediaObjectId} not found.')
|
|
1184
1184
|
return {'iri': res[0]['subject'],
|
|
1185
|
-
'originalName': res[0]['originalName'],
|
|
1186
|
-
'originalMimeType': res[0]['originalMimeType'],
|
|
1187
|
-
'serverUrl': res[0]['serverUrl'],
|
|
1188
|
-
'protocol': res[0]['protocol'],
|
|
1185
|
+
'shared:originalName': res[0]['originalName'],
|
|
1186
|
+
'shared:originalMimeType': res[0]['originalMimeType'],
|
|
1187
|
+
'shared:serverUrl': res[0]['serverUrl'],
|
|
1188
|
+
'shared:protocol': res[0]['protocol'],
|
|
1189
1189
|
'graph': res[0]['graph'],
|
|
1190
|
-
'path': res[0]['path'],
|
|
1191
|
-
'
|
|
1190
|
+
'shared:path': res[0]['path'],
|
|
1191
|
+
'oldap:permissionValue': res[0]['permval']}
|
|
1192
1192
|
|
|
1193
1193
|
|
|
1194
1194
|
def toJsonObject(self) -> dict[str, list[str] | str]:
|
oldaplib/src/resourceclass.py
CHANGED
|
@@ -799,6 +799,10 @@ class ResourceClass(Model, Notify):
|
|
|
799
799
|
conf = GlobalConfig(self._con)
|
|
800
800
|
sysproj = conf.sysproject
|
|
801
801
|
superclass = ResourceClass.read(self._con, sysproj, owliri)
|
|
802
|
+
elif owliri.prefix == 'shared':
|
|
803
|
+
conf = GlobalConfig(self._con)
|
|
804
|
+
sharedproj = conf.sharedproject
|
|
805
|
+
superclass = ResourceClass.read(self._con, sharedproj, owliri)
|
|
802
806
|
else:
|
|
803
807
|
superclass = ResourceClass.read(self._con, self._project, owliri)
|
|
804
808
|
self._attributes[ResClassAttribute.SUPERCLASS][owliri] = superclass
|
oldaplib/src/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.3.
|
|
1
|
+
__version__ = "0.3.27"
|
|
@@ -365,6 +365,8 @@ class TestObjectFactory(unittest.TestCase):
|
|
|
365
365
|
originalMimeType='image/tiff',
|
|
366
366
|
serverUrl='http://iiif.oldap.org/iiif/3/',
|
|
367
367
|
imageId='cat.tif',
|
|
368
|
+
path='test',
|
|
369
|
+
protocol='iiif',
|
|
368
370
|
grantsPermission=Iri('oldap:GenericView'))
|
|
369
371
|
mo.create()
|
|
370
372
|
data = ResourceInstance.read_data(con=self._connection, iri=mo.iri, projectShortName='test')
|
|
@@ -700,10 +702,48 @@ class TestObjectFactory(unittest.TestCase):
|
|
|
700
702
|
resClass='test:Page')
|
|
701
703
|
self.assertEqual(len(res), 8)
|
|
702
704
|
|
|
703
|
-
|
|
704
|
-
def
|
|
705
|
-
res = ResourceInstance.get_media_object_by_id(con=self._connection,mediaObjectId='
|
|
706
|
-
|
|
705
|
+
#@unittest.skip('Work in progress')
|
|
706
|
+
def test_read_media_object(self):
|
|
707
|
+
res = ResourceInstance.get_media_object_by_id(con=self._connection,mediaObjectId='x_34db.tif')
|
|
708
|
+
self.assertEqual(res['iri'], Iri("urn:uuid:1b8e3f42-6d7a-4c9b-a3f8-93c2e5d7b901"))
|
|
709
|
+
self.assertEqual(res['shared:originalName'], Xsd_string("testfile.tif"))
|
|
710
|
+
self.assertEqual(res['shared:originalMimeType'], Xsd_string("image/tiff"))
|
|
711
|
+
self.assertEqual(res['shared:serverUrl'], Xsd_string("https://iiif.oldap.org"))
|
|
712
|
+
self.assertEqual(res['shared:protocol'], Xsd_string("iiif"))
|
|
713
|
+
self.assertEqual(res['graph'], Xsd_QName("test:data"))
|
|
714
|
+
self.assertEqual(res['shared:path'], Xsd_string("test/subtest"))
|
|
715
|
+
self.assertEqual(res['oldap:permissionValue'], Xsd_integer(2))
|
|
716
|
+
|
|
717
|
+
def test_create_media_object(self):
|
|
718
|
+
dm = DataModel.read(con=self._connection, project='test')
|
|
719
|
+
factory = ResourceInstanceFactory(con=self._connection, project='test')
|
|
720
|
+
MLE = factory.createObjectInstance('test:MediaLibraryEntry')
|
|
721
|
+
mle = MLE(originalName='MyCarnivalImagetif',
|
|
722
|
+
originalMimeType='image/tiff',
|
|
723
|
+
imageId='x_34dbY4.tif',
|
|
724
|
+
serverUrl='http://iiif.oldap.org/iiif/3/',
|
|
725
|
+
path='test/subtest',
|
|
726
|
+
protocol='iiif',
|
|
727
|
+
caption='My Carnival Image of 1968 with the Bohrerhof-Clique',
|
|
728
|
+
grantsPermission=Iri('oldap:GenericView'))
|
|
729
|
+
mle.create()
|
|
730
|
+
data = ResourceInstance.read_data(con=self._connection, iri=mle.iri, projectShortName='test')
|
|
731
|
+
self.assertEqual(data['shared:originalName'], ["MyCarnivalImagetif"])
|
|
732
|
+
self.assertEqual(data['shared:originalMimeType'], ['image/tiff'])
|
|
733
|
+
self.assertEqual(data['shared:serverUrl'], ['http://iiif.oldap.org/iiif/3/'])
|
|
734
|
+
self.assertEqual(data['shared:imageId'], ['x_34dbY4.tif'])
|
|
735
|
+
self.assertEqual(data['shared:protocol'], ['iiif'])
|
|
736
|
+
self.assertEqual(data['shared:path'], ['test/subtest'])
|
|
737
|
+
self.assertEqual(data['test:caption'], ['My Carnival Image of 1968 with the Bohrerhof-Clique'])
|
|
738
|
+
|
|
739
|
+
|
|
740
|
+
data2 = ResourceInstance.get_media_object_by_id(con=self._connection, mediaObjectId='x_34dbY4.tif')
|
|
741
|
+
self.assertEqual(data2['shared:originalName'], "MyCarnivalImagetif")
|
|
742
|
+
self.assertEqual(data2['shared:originalMimeType'], 'image/tiff')
|
|
743
|
+
self.assertEqual(data2['shared:serverUrl'], 'http://iiif.oldap.org/iiif/3/')
|
|
744
|
+
self.assertEqual(data2['shared:protocol'], 'iiif')
|
|
745
|
+
self.assertEqual(data2['shared:path'], 'test/subtest')
|
|
746
|
+
mle.delete()
|
|
707
747
|
|
|
708
748
|
if __name__ == '__main__':
|
|
709
749
|
unittest.main()
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
@prefix http: <http://www.w3.org/2011/http#> .
|
|
1
2
|
@prefix : <http://oldap.org/base#> .
|
|
2
3
|
@prefix test: <http://oldap.org/test#> .
|
|
3
4
|
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
|
5
|
+
@prefix shared: <http://oldap.org/shared#> .
|
|
4
6
|
|
|
5
7
|
test:data {
|
|
6
8
|
<urn:uuid:7a1de6d7-de75-4875-ab24-74819057703f> a test:Book;
|
|
@@ -116,4 +118,20 @@ test:data {
|
|
|
116
118
|
test:pageDescription "Description for page 4"@en;
|
|
117
119
|
test:pageContent "Waseliwas for page 4\\n9pB6yFsJs7zcCkyF9j9flbGUcNczytEsw1nSUYCBLIN3P63wePvVQnWDX5dgUDXyeEwUwoBycRPcrp6kG2wsknVjfajQI30lZ73E";
|
|
118
120
|
test:pageInBook <urn:uuid:9bf6ae23-bf2f-4466-abe3-65efe6afe589> .
|
|
121
|
+
|
|
122
|
+
<urn:uuid:1b8e3f42-6d7a-4c9b-a3f8-93c2e5d7b901> a shared:MediaObject;
|
|
123
|
+
:createdBy <https://orcid.org/0000-0003-1681-4036>;
|
|
124
|
+
:creationDate "2025-11-13T16:43:28.861171+01:00"^^xsd:dateTimeStamp;
|
|
125
|
+
:lastModifiedBy <https://orcid.org/0000-0003-1681-4036>;
|
|
126
|
+
:lastModificationDate "2025-11-13T16:43:28.861171+01:00"^^xsd:dateTimeStamp;
|
|
127
|
+
:grantsPermission :GenericView;
|
|
128
|
+
shared:originalName 'testfile.tif';
|
|
129
|
+
shared:originalMimeType 'image/tiff';
|
|
130
|
+
shared:serverUrl 'https://iiif.oldap.org';
|
|
131
|
+
shared:imageId 'x_34db.tif';
|
|
132
|
+
shared:protocol 'iiif';
|
|
133
|
+
shared:path 'test/subtest' .
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
|
|
119
137
|
}
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
@prefix dcterms: <http://purl.org/dc/terms/> .
|
|
11
11
|
@prefix oldap: <http://oldap.org/base#> .
|
|
12
12
|
@prefix test: <http://oldap.org/test#> .
|
|
13
|
+
@prefix shared: <http://oldap.org/shared#> .
|
|
13
14
|
|
|
14
15
|
oldap:admin {
|
|
15
16
|
|
|
@@ -68,6 +69,25 @@ test:shacl {
|
|
|
68
69
|
dcterms:modified "2024-05-16T18:38:25.551434"^^xsd:dateTime ;
|
|
69
70
|
] .
|
|
70
71
|
|
|
72
|
+
test:MediaLibraryEntryShape a sh:NodeShape ;
|
|
73
|
+
sh:targetClass test:MediaLibraryEntry ;
|
|
74
|
+
dcterms:created "2024-05-16T18:38:25.551434"^^xsd:dateTime ;
|
|
75
|
+
dcterms:creator <https://orcid.org/0000-0003-1681-4036> ;
|
|
76
|
+
dcterms:modified "2024-05-16T18:38:25.551434"^^xsd:dateTime ;
|
|
77
|
+
dcterms:contributor <https://orcid.org/0000-0003-1681-4036> ;
|
|
78
|
+
sh:node oldap:ThingShape, shared:MediaObjectShape ;
|
|
79
|
+
sh:property [
|
|
80
|
+
sh:path rdf:type ;
|
|
81
|
+
],
|
|
82
|
+
[
|
|
83
|
+
sh:path test:caption ;
|
|
84
|
+
sh:datatype xsd:string ;
|
|
85
|
+
dcterms:creator <https://orcid.org/0000-0003-1681-4036> ;
|
|
86
|
+
dcterms:created "2024-05-16T18:38:25.551434"^^xsd:dateTime ;
|
|
87
|
+
dcterms:contributor <https://orcid.org/0000-0003-1681-4036> ;
|
|
88
|
+
dcterms:modified "2024-05-16T18:38:25.551434"^^xsd:dateTime ;
|
|
89
|
+
] .
|
|
90
|
+
|
|
71
91
|
|
|
72
92
|
|
|
73
93
|
test:PersonShape a sh:NodeShape ;
|
|
@@ -840,6 +860,18 @@ test:onto {
|
|
|
840
860
|
owl:onDataRange xsd:string ;
|
|
841
861
|
] .
|
|
842
862
|
|
|
863
|
+
test:MediaLibraryEntry rdf:type owl:Class ;
|
|
864
|
+
dcterms:creator <https://orcid.org/0000-0003-1681-4036> ;
|
|
865
|
+
dcterms:created "2023-11-04T12:00:00+00:00"^^xsd:dateTime ;
|
|
866
|
+
dcterms:contributor <https://orcid.org/0000-0003-1681-4036> ;
|
|
867
|
+
dcterms:modified "2023-11-04T12:00:00+00:00"^^xsd:dateTime ;
|
|
868
|
+
rdfs:subClassOf oldap:Thing, shared:MediaObject, [
|
|
869
|
+
rdf:type owl:Restriction ;
|
|
870
|
+
owl:onProperty test:caption ;
|
|
871
|
+
owl:onDataRange xsd:string ;
|
|
872
|
+
] .
|
|
873
|
+
|
|
874
|
+
|
|
843
875
|
test:name rdf:type owl:DatatypeProperty ;
|
|
844
876
|
rdfs:domain test:Mammal ;
|
|
845
877
|
rdfs:range xsd:string ;
|
|
@@ -856,7 +888,15 @@ test:onto {
|
|
|
856
888
|
dcterms:contributor <https://orcid.org/0000-0003-1681-4036> ;
|
|
857
889
|
dcterms:modified "2024-05-16T18:38:25.551434"^^xsd:dateTime .
|
|
858
890
|
|
|
859
|
-
|
|
891
|
+
test:caption rdf:type owl:DatatypeProperty ;
|
|
892
|
+
rdfs:domain test:MediaLibraryEntry ;
|
|
893
|
+
rdfs:range xsd:string ;
|
|
894
|
+
dcterms:creator <https://orcid.org/0000-0003-1681-4036> ;
|
|
895
|
+
dcterms:created "2024-05-16T18:38:25.551434"^^xsd:dateTime ;
|
|
896
|
+
dcterms:contributor <https://orcid.org/0000-0003-1681-4036> ;
|
|
897
|
+
dcterms:modified "2024-05-16T18:38:25.551434"^^xsd:dateTime .
|
|
898
|
+
|
|
899
|
+
test:Person rdf:type owl:Class ;
|
|
860
900
|
dcterms:creator <https://orcid.org/0000-0003-1681-4036> ;
|
|
861
901
|
dcterms:created "2023-11-04T12:00:00+00:00"^^xsd:dateTime ;
|
|
862
902
|
dcterms:contributor <https://orcid.org/0000-0003-1681-4036> ;
|
|
@@ -1658,5 +1698,3 @@ test:onto {
|
|
|
1658
1698
|
] .
|
|
1659
1699
|
|
|
1660
1700
|
}
|
|
1661
|
-
|
|
1662
|
-
|
|
@@ -5,7 +5,7 @@ oldaplib/ontologies/admin.trig,sha256=ByxFYdI9rh-RhLnSpkdZHMMWgXCSTi2YMJc1QgBHFh
|
|
|
5
5
|
oldaplib/ontologies/example.trig,sha256=MdRrFBZZ1L6aUDiT6aX4cnXiy-RoZHczF3Exn7aBSmU,1518
|
|
6
6
|
oldaplib/ontologies/oldap.trig,sha256=i2XanqKlhWSIdD17fLu5g0Luq2GORQCcyIfLn9Kummk,60241
|
|
7
7
|
oldaplib/ontologies/oldap.ttl,sha256=qdA0uiSjzVhkc1d5IN2y5ioK1QMzwl-TTnn3M_D1Kh8,29446
|
|
8
|
-
oldaplib/ontologies/shared.trig,sha256=
|
|
8
|
+
oldaplib/ontologies/shared.trig,sha256=ooIn1Cg0Hg_ml67dCCyVEy2mQ-1AV1sQ6VN-lk0WYpU,21860
|
|
9
9
|
oldaplib/ontologies/standard/.gitsave,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
10
|
oldaplib/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
11
|
oldaplib/src/cachesingleton.py,sha256=WGhuFER-mTnOJmwaN17fXPAg7zn7GJBm-XadShNUBBk,3687
|
|
@@ -59,7 +59,7 @@ oldaplib/src/helpers/tools.py,sha256=sNbiOLucTGNFzZmiWwPLFOb80VTXQH0Zd9uCGubhzAk
|
|
|
59
59
|
oldaplib/src/iconnection.py,sha256=XlOc2Kh4tK_UOHydLQwlWjUFLUze-Aq_vEZpf9KS1-s,3677
|
|
60
60
|
oldaplib/src/in_project.py,sha256=2KuhHPj8DNveFRBeImrRfxlCOYhBK-mcxXYUp6s--j8,10672
|
|
61
61
|
oldaplib/src/model.py,sha256=VACR3T6zJYFaE5J1PFFdP0OSwhbu4sahoLMWg6_L_rE,19267
|
|
62
|
-
oldaplib/src/objectfactory.py,sha256=
|
|
62
|
+
oldaplib/src/objectfactory.py,sha256=XIXMixHRzTto2OVGe5kYnT10i2zXV6eBPw3m-kCC6eQ,66413
|
|
63
63
|
oldaplib/src/oldaplist.py,sha256=sGAvEEJukRCjM70G0NFaR-L9YPleQTOtdWGExj3oYL8,42933
|
|
64
64
|
oldaplib/src/oldaplist_helpers.py,sha256=1Gur0nS1PCKb9iUtCKPUFDOYjw6vvAwYpe-G3DdxlEc,14213
|
|
65
65
|
oldaplib/src/oldaplistnode.py,sha256=NnC2juEGTtEkDO6OlB9PjSw_zTF-wSsRUgEk-6VV9DA,87344
|
|
@@ -67,10 +67,10 @@ oldaplib/src/oldaplogging.py,sha256=IDSOylms9OSTInYPC4Y2QrTTEzRL0T5I2QssCevOhTU,
|
|
|
67
67
|
oldaplib/src/permissionset.py,sha256=bzzVuZ7O_yVMujziwo32GEJIZYGG3g5gTds4HjLmGtU,31874
|
|
68
68
|
oldaplib/src/project.py,sha256=DNwViRg19zkE1F0zuWqQFK008uTVehVAu7xNbyessig,34207
|
|
69
69
|
oldaplib/src/propertyclass.py,sha256=OuzCSCRp8Qfz-PolmoH7FARfTEvWJd42ghLgvPsgT78,97213
|
|
70
|
-
oldaplib/src/resourceclass.py,sha256=
|
|
70
|
+
oldaplib/src/resourceclass.py,sha256=_WEyZRlt_sA_q8vzoOP8PdkBtjje8khiVHyvr_-1_ro,102817
|
|
71
71
|
oldaplib/src/user.py,sha256=Z4GXPRkaHXx3glUpPXQdFqYMxQPOuqayDwkTAE5RGjU,48820
|
|
72
72
|
oldaplib/src/userdataclass.py,sha256=FbZkcRt0pKbOeqsZ7HbpwoKE-XPWH2AqpHG1GcsrBPo,12364
|
|
73
|
-
oldaplib/src/version.py,sha256=
|
|
73
|
+
oldaplib/src/version.py,sha256=7d2IQsF-WYLs9HCeClz3jfE-kzaYLG-AcDfpiQ8xfrs,22
|
|
74
74
|
oldaplib/src/xsd/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
75
|
oldaplib/src/xsd/floatingpoint.py,sha256=rDReKqh0mXyc4F5wslgTUxbeGf3-PGERyughj5_62YI,8852
|
|
76
76
|
oldaplib/src/xsd/iri.py,sha256=w1Dr0z-REi7yPe3GPGnyzGrLVMvLY03kEeK-AmZ9sxw,8383
|
|
@@ -126,7 +126,7 @@ oldaplib/test/test_hasproperty.py,sha256=r991g8kBTfv1CGs9Hf0fli-AUp7Ob7rOHWYD74h
|
|
|
126
126
|
oldaplib/test/test_in_project.py,sha256=DYT-guwRQ9crnfEt7cQZxoEMxThin7QeymNce3jaZx4,7779
|
|
127
127
|
oldaplib/test/test_langstring.py,sha256=37BeKiQzj63G-SyS_paK_SEG7ulRbGrE89Mz40UB_bE,15146
|
|
128
128
|
oldaplib/test/test_language_in.py,sha256=ELqHO-YIsZSCPF3E3rWde4J7rERL7En7sV_pzQ00zgs,8826
|
|
129
|
-
oldaplib/test/test_objectfactory.py,sha256=
|
|
129
|
+
oldaplib/test/test_objectfactory.py,sha256=fp3xr6gh5rGcLubY5jMjZFbAVNtJfibPt1Q5-XCtBmk,39255
|
|
130
130
|
oldaplib/test/test_observable_dict.py,sha256=GxD0sM0nsVfVRBu92SFGkJ6--YXq4ibBWI4IpjZZzDU,1396
|
|
131
131
|
oldaplib/test/test_observable_set.py,sha256=JWZSoAsr8XIEBXPVgSVJjQQEEc8uSAme5IrFYLYVVXw,6313
|
|
132
132
|
oldaplib/test/test_oldaplist.py,sha256=9wo3tEOHt5bIuXyvSSyTzjhtdKrQHiiAA6EfVBuq4wI,20114
|
|
@@ -145,12 +145,12 @@ oldaplib/testdata/connection_test.trig,sha256=LFTGLEae7SaTU67rwvgvg_epi09O7oPZwf
|
|
|
145
145
|
oldaplib/testdata/datamodel_test.trig,sha256=0n02awPthzi-Lx-_ABlrD9yZ3I1sWxp7eIbFwSxwKNA,802
|
|
146
146
|
oldaplib/testdata/event_type.yaml,sha256=wpXiheSEKh4xOoUZvAxWytJQ-sNK6oUYdVpOmyW9wPc,3083
|
|
147
147
|
oldaplib/testdata/hlist_schema.yaml,sha256=fgHiB-ZxOkE6OvkZKk9SL2kNn8Akj6dS6ySDFSpknTA,186
|
|
148
|
-
oldaplib/testdata/instances_test.trig,sha256=
|
|
148
|
+
oldaplib/testdata/instances_test.trig,sha256=aPzzKOVdsFAJGgDMSBHylsvlkq5fIEb6WYFjjKTZmFU,7581
|
|
149
149
|
oldaplib/testdata/institution_or_building_type.yaml,sha256=SA2rsQwoAdyn6eSIJU1ilmdIQf-f1XNApwBow-JlJTo,2439
|
|
150
150
|
oldaplib/testdata/language.yaml,sha256=YaQA77d7QyOydqNylR5RSb-0A6h9pLM4mgadJSrYC3A,451
|
|
151
151
|
oldaplib/testdata/location_type.yaml,sha256=amlhYNDc9qLv_if6urtAtBTnEXrVrb6_aulE180GYkc,1323
|
|
152
152
|
oldaplib/testdata/means_of_transportation.yaml,sha256=WOqtSHlw8gCK54d5hmibCWyL_H1DRtBBpUdFNwIUBJo,788
|
|
153
|
-
oldaplib/testdata/objectfactory_test.trig,sha256=
|
|
153
|
+
oldaplib/testdata/objectfactory_test.trig,sha256=ZwO2dglOmkGLoTQFNkZ2tJJwKEWdIjiyuQlLTSVYxYA,80576
|
|
154
154
|
oldaplib/testdata/playground_list.yaml,sha256=EypG4WQoq9emI10Hj-DrKjplgxr1MrQBPc0ppV_rHQQ,1620
|
|
155
155
|
oldaplib/testdata/role.yaml,sha256=CLI9f2HD_ulYw67DqWntaMLWH0CGWz1cfNkvxcnK6XQ,691
|
|
156
156
|
oldaplib/testdata/source_type-1.yaml,sha256=Khow4rD8oZgBAbUex4T-nKBTrx0bAseMhTShS7-MgGw,921
|
|
@@ -158,6 +158,6 @@ oldaplib/testdata/source_type.yaml,sha256=dSihKikw3O-IlGf6anj5KWMoBYLaweLVF1Zojm
|
|
|
158
158
|
oldaplib/testdata/test_move_left_of_toL.yaml,sha256=2m1OSQrQFlsCQxeJrjzBAO74LMprNDo_HuyrYGsOeXI,787
|
|
159
159
|
oldaplib/testdata/testlist.yaml,sha256=AT11nXEG81Sfyb-tr1gQV0H_dZBrOCcFuHf7YtL8P2g,1994
|
|
160
160
|
oldaplib/testit.http,sha256=qW7mnr6aNLXFG6lQdLgyhXILOPN6qc5iFVZclLyVvkY,303
|
|
161
|
-
oldaplib-0.3.
|
|
162
|
-
oldaplib-0.3.
|
|
163
|
-
oldaplib-0.3.
|
|
161
|
+
oldaplib-0.3.27.dist-info/METADATA,sha256=4DqyLUib3AebLY5qQ-rrMEtAWerOqtiflSq4rKdkdc0,3010
|
|
162
|
+
oldaplib-0.3.27.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
163
|
+
oldaplib-0.3.27.dist-info/RECORD,,
|
|
File without changes
|