Bladeren bron

Include namespaces in RDF output.

Stefano Cossu 7 jaren geleden
bovenliggende
commit
2b7f138f66
3 gewijzigde bestanden met toevoegingen van 10 en 5 verwijderingen
  1. 0 1
      etc.skeleton/namespaces.yml
  2. 1 0
      lakesuperior/dictionaries/namespaces.py
  3. 9 4
      lakesuperior/model/ldpr.py

+ 0 - 1
etc.skeleton/namespaces.yml

@@ -7,7 +7,6 @@ aicpc : http://definitions.artic.edu/publish_channel/
 aictype : http://definitions.artic.edu/ontology/1.0/type/
 dctype : http://purl.org/dc/dcmitype/
 exif : http://www.w3.org/2003/12/exif/ns#
-foaf : http://xmlns.com/foaf/0.1/
 geo : http://www.w3.org/2003/01/geo/wgs84_pos#
 hw : http://projecthydra.org/works/models#
 oa : http://www.w3.org/ns/oa#

+ 1 - 0
lakesuperior/dictionaries/namespaces.py

@@ -20,6 +20,7 @@ core_namespaces = {
     'fcmain' : Namespace('info:fcsystem/graph/userdata/_main/'),
     'fcstruct' : Namespace('info:fcsystem/graph/structure/'),
     'fcsystem' : Namespace('info:fcsystem/'),
+    'foaf': Namespace('http://xmlns.com/foaf/0.1/'),
     'iana' : Namespace('http://www.iana.org/assignments/relation/'),
     'ldp' : Namespace('http://www.w3.org/ns/ldp#'),
     # This is used in the layout attribute router.

+ 9 - 4
lakesuperior/model/ldpr.py

@@ -15,6 +15,7 @@ from rdflib.namespace import RDF
 from rdflib.term import URIRef, Literal
 
 from lakesuperior.dictionaries.namespaces import ns_collection as nsc
+from lakesuperior.dictionaries.namespaces import ns_mgr as nsm
 from lakesuperior.dictionaries.srv_mgd_terms import  srv_mgd_subjects, \
         srv_mgd_predicates, srv_mgd_types
 from lakesuperior.exceptions import *
@@ -43,9 +44,10 @@ def atomic(fn):
             raise
         else:
             self._logger.info('Committing transaction.')
-            if hasattr(self.rdfly.store, '_edits'):
-                # @FIXME ugly.
-                self.rdfly._conn.optimize_edits()
+            import pdb; pdb.set_trace()
+            #if hasattr(self.rdfly.store, '_edits'):
+            #    # @FIXME ugly.
+            #    self.rdfly._conn.optimize_edits()
             self.rdfly.store.commit()
             for ev in request.changelog:
                 #self._logger.info('Message: {}'.format(pformat(ev)))
@@ -394,7 +396,10 @@ class Ldpr(metaclass=ABCMeta):
         This gets the RDF metadata. The binary retrieval is handled directly
         by the route.
         '''
-        return g.tbox.globalize_graph(self.out_graph)
+        global_gr = g.tbox.globalize_graph(self.out_graph)
+        global_gr.namespace_manager = nsm
+
+        return global_gr
 
 
     @atomic