Преглед изворни кода

Add support for JSON-LD (RDFLib plugin).

Stefano Cossu пре 7 година
родитељ
комит
2e3889259f
3 измењених фајлова са 6 додато и 0 уклоњено
  1. 1 0
      lakesuperior/endpoints/ldp.py
  2. 1 0
      setup.py
  3. 4 0
      tests/endpoints/test_ldp.py

+ 1 - 0
lakesuperior/endpoints/ldp.py

@@ -43,6 +43,7 @@ rdf_parsable_mimetypes = {
 rdf_serializable_mimetypes = {
     #mt.name for mt in plugin.plugins()
     #if mt.kind is serializer.Serializer and '/' in mt.name
+    'application/ld+json',
     'application/n-triples',
     'application/rdf+xml',
     'text/turtle',

+ 1 - 0
setup.py

@@ -93,6 +93,7 @@ setup(
         'gunicorn',
         'lmdb',
         'rdflib',
+        'rdflib-jsonld',
         'requests',
         'requests-toolbelt',
         'sphinx-rtd-theme',

+ 4 - 0
tests/endpoints/test_ldp.py

@@ -595,6 +595,9 @@ class TestMimeType:
                 'application/rdf+xml;q=0.5,application/bogus;q=0.7',
                 'application/rdf+xml'),
             ('application/rdf+xml;q=0.5,text/n3;q=0.7', 'text/n3'),
+            (
+                'application/rdf+xml;q=0.5,application/ld+json;q=0.7',
+                'application/ld+json'),
         }
         for mimetype, fmt in accept_list:
             rsp = self.client.get('/ldp', headers={'Accept': mimetype})
@@ -619,6 +622,7 @@ class TestMimeType:
             'application/rdf+xml',
             'text/n3',
             'text/turtle',
+            'application/ld+json',
         }
         for mimetype in test_list:
             rdf_data = gr.serialize(format=mimetype)