property link suppression annotations

This commit is contained in:
brianjlowe 2013-09-04 10:01:11 -04:00
parent 722307358f
commit 5d2e44c08f
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,12 @@
@prefix core: <http://vivoweb.org/ontology/core#> .
@prefix config: <http://vitro.mannlib.cornell.edu/ns/vitro/ApplicationConfiguration#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
core:webpageOf config:addLinkSuppressed "true"^^xsd:boolean .
core:webpageOf config:editLinkSuppressed "true"^^xsd:boolean .
core:webpageOf config:deleteLinkSuppressed "true"^^xsd:boolean .
core:webpage config:deleteLinkSuppressed "true"^^xsd:boolean .
core:hasResearchArea config:deleteLinkSuppressed "true"^^xsd:boolean .
core:researchAreaOf config:deleteLinkSuppressed "true"^^xsd:boolean .
core:hasSubjectArea config:deleteLinkSuppressed "true"^^xsd:boolean .
core:subjectAreaFor config:deleteLinkSuppressed "true"^^xsd:boolean .

View file

@ -0,0 +1,22 @@
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix : <http://vitro.mannlib.cornell.edu/ns/vitro/ApplicationConfiguration#> .
@prefix display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix datagetter: <java:edu/cornell/mannlib/vitro/webapp/utils/datagetter/> .
@prefix vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#> .
@prefix role: <http://vitro.mannlib.cornell.edu/ns/vitro/role#> .
@prefix local: <http://example.org/appConfig/> .
@prefix vivo: <http://vivoweb.org/ontology/core#> .
@base <http://vitro.mannlib.cornell.edu/ns/vitro/ApplicationConfiguration> .
# warning: don't use blank nodes; the display model doesn't currently support them.
local:authorInAuthorshipConfig a :ObjectPropertyDisplayConfig ;
:deleteLinkSuppressed "true"^^xsd:boolean .
local:informationResourceInAuthorshipConfig a :ObjectPropertyDisplayConfig ;
:deleteLinkSuppressed "true"^^xsd:boolean .