Jelajahi Sumber

Align metadata graph URIs.

Stefano Cossu 7 tahun lalu
induk
melakukan
c885bfa50a

+ 2 - 2
doc/examples/store_layouts/graph_per_aspect.trig

@@ -133,7 +133,7 @@ PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
 
 # Metadata graph. This contains information about graphs and their
 # relationships.
-<info:fcsystem/graph/meta> {
+<info:fcsystem/meta> {
   # This may not be used by the application logic if we use naming
   # conventions, but is still good LD practice.
   <info:fcsystem/graph/admin/> foaf:primaryTopic <info:fcres/> .
@@ -147,7 +147,7 @@ PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
 
 # Historic version metadata. This is kept separate to optimize current resource
 # lookups.
-<info:fcsystem/graph/historic>  {
+<info:fcsystem/histmeta>  {
   <info:fcsystem/graph/admin/a/b/c/fcr:versions/v1>
     foaf:primaryTopic <info:fcres/a/b/c/fcr:versions/v1> ;
     fcrepo:created "2017-11-24"^^xsd:date ;

+ 1 - 2
lakesuperior/dictionaries/namespaces.py

@@ -12,8 +12,7 @@ core_namespaces = {
     'dcterms' : rdflib.namespace.DCTERMS,
     'ebucore' : Namespace(
         'http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#'),
-    'fcmeta' : Namespace('info:fcmeta/'),
-    'fcrconfig' : Namespace('http://fedora.info/definitions/v4/config#'),
+    #'fcrconfig' : Namespace('http://fedora.info/definitions/v4/config#'),
     'fcrepo' : Namespace('http://fedora.info/definitions/v4/repository#'),
     'fcadmin' : Namespace('info:fcsystem/graph/admin/'),
     'fcres' : Namespace('info:fcres/'),

+ 1 - 1
lakesuperior/store_layouts/ldp_rs/rsrc_centric_layout.py

@@ -21,7 +21,7 @@ from lakesuperior.exceptions import (InvalidResourceError, InvalidTripleError,
 
 
 META_GR_URI = nsc['fcsystem']['meta']
-HIST_GR_URI = nsc['fcsystem']['historic']
+HIST_GR_URI = nsc['fcsystem']['histmeta']
 VERS_CONT_LABEL = 'fcr:versions'