|
@@ -8,25 +8,21 @@ from lakesuperior.config_parser import config
|
|
|
# Core namespace prefixes. These add to and override any user-defined prefixes.
|
|
|
# @TODO Some of these have been copy-pasted from FCREPO4 and may be deprecated.
|
|
|
core_namespaces = {
|
|
|
- 'authz' : Namespace('http://fedora.info/definitions/v4/authorization#'),
|
|
|
- 'cnt' : Namespace('http://www.w3.org/2011/content#'),
|
|
|
'dc' : rdflib.namespace.DC,
|
|
|
'dcterms' : rdflib.namespace.DCTERMS,
|
|
|
- 'ebucore' : Namespace('http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#'),
|
|
|
+ 'ebucore' : Namespace(
|
|
|
+ 'http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#'),
|
|
|
'fcrepo' : Namespace('http://fedora.info/definitions/v4/repository#'),
|
|
|
- 'fcrconfig' : Namespace('http://fedora.info/definitions/v4/config#'), # fcrepo =< 4.7
|
|
|
- 'gen' : Namespace('http://www.w3.org/2006/gen/ont#'),
|
|
|
+ 'fcrconfig' : Namespace('http://fedora.info/definitions/v4/config#'),
|
|
|
'iana' : Namespace('http://www.iana.org/assignments/relation/'),
|
|
|
- 'lake' : Namespace('http://definitions.artic.edu/ontology/lake#'),
|
|
|
- 'lakemeta' : Namespace('http://definitions.artic.edu/ontology/lake/metadata#'),
|
|
|
'ldp' : Namespace('http://www.w3.org/ns/ldp#'),
|
|
|
- 'owl' : rdflib.namespace.OWL,
|
|
|
'premis' : Namespace('http://www.loc.gov/premis/rdf/v1#'),
|
|
|
'rdf' : rdflib.namespace.RDF,
|
|
|
'rdfs' : rdflib.namespace.RDFS,
|
|
|
- 'fcg' : Namespace('urn:fcgraph:'),
|
|
|
- 'fcres' : Namespace('urn:fcres:'),
|
|
|
- 'fcsystem' : Namespace('urn:fcsystem:'),
|
|
|
+ # For info: vs. urn:, see https://tools.ietf.org/html/rfc4452#section-6.3
|
|
|
+ 'fcg' : Namespace('info:fcgraph:'),
|
|
|
+ 'fcres' : Namespace('info:fcres:'),
|
|
|
+ 'fcsystem' : Namespace('info:fcsystem:'),
|
|
|
'webac' : Namespace('http://www.w3.org/ns/auth/acl#'),
|
|
|
'xml' : Namespace('http://www.w3.org/XML/1998/namespace'),
|
|
|
'xsd' : rdflib.namespace.XSD,
|