updates for display model migration
This commit is contained in:
parent
194ce78aab
commit
550bf0f0dc
3 changed files with 457 additions and 0 deletions
|
@ -0,0 +1,96 @@
|
||||||
|
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||||
|
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
||||||
|
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||||
|
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#MenuText>
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#hasMenuText>
|
||||||
|
"""# $This file is distributed under the terms of the license in /doc/license.txt$
|
||||||
|
|
||||||
|
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||||
|
@prefix display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> .
|
||||||
|
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||||
|
@prefix core: <http://vivoweb.org/ontology/core#> .
|
||||||
|
@prefix vivoweb: <http://vivoweb.org/ontology#> .
|
||||||
|
|
||||||
|
### This file defines the default menu for vivo. ###
|
||||||
|
|
||||||
|
#### Default Menu ####
|
||||||
|
|
||||||
|
display:DefaultMenu
|
||||||
|
a display:MainMenu ;
|
||||||
|
display:hasElement display:EventsMenuItem ;
|
||||||
|
display:hasElement display:HomeMenuItem ;
|
||||||
|
display:hasElement display:OrganizationsMenuItem ;
|
||||||
|
display:hasElement display:PeopleMenuItem ;
|
||||||
|
display:hasElement display:ResearchMenuItem .
|
||||||
|
|
||||||
|
#### Menu Items for Default Menu ####
|
||||||
|
|
||||||
|
display:HomeMenuItem
|
||||||
|
a display:NavigationElement ;
|
||||||
|
display:menuPosition 1;
|
||||||
|
display:linkText \"Home\";
|
||||||
|
display:toPage display:Home .
|
||||||
|
|
||||||
|
display:PeopleMenuItem
|
||||||
|
a display:NavigationElement ;
|
||||||
|
display:menuPosition 2;
|
||||||
|
display:linkText \"People\";
|
||||||
|
display:toPage display:People .
|
||||||
|
|
||||||
|
display:OrganizationsMenuItem
|
||||||
|
a display:NavigationElement ;
|
||||||
|
display:menuPosition 3;
|
||||||
|
display:linkText \"Organizations\";
|
||||||
|
display:toPage display:Organizations .
|
||||||
|
|
||||||
|
display:ResearchMenuItem
|
||||||
|
a display:NavigationElement ;
|
||||||
|
display:menuPosition 4;
|
||||||
|
display:linkText \"Research\";
|
||||||
|
display:toPage display:Research .
|
||||||
|
|
||||||
|
display:EventsMenuItem
|
||||||
|
a display:NavigationElement ;
|
||||||
|
display:menuPosition 5;
|
||||||
|
display:linkText \"Events\";
|
||||||
|
display:toPage display:Events .
|
||||||
|
|
||||||
|
########## Pages ############
|
||||||
|
|
||||||
|
display:Home
|
||||||
|
a display:HomePage ;
|
||||||
|
a display:Page ;
|
||||||
|
display:title \"Home\" ;
|
||||||
|
display:urlMapping \"/\" .
|
||||||
|
|
||||||
|
display:Events
|
||||||
|
a display:Page ;
|
||||||
|
a display:ClassGroupPage;
|
||||||
|
display:forClassGroup vivoweb:vitroClassGroupevents ;
|
||||||
|
display:title \"Events\" ;
|
||||||
|
display:urlMapping \"/events\" .
|
||||||
|
|
||||||
|
display:Organizations
|
||||||
|
a display:Page ;
|
||||||
|
a display:ClassGroupPage;
|
||||||
|
display:forClassGroup vivoweb:vitroClassGrouporganizations ;
|
||||||
|
display:title \"Organizations\" ;
|
||||||
|
display:urlMapping \"/organizations\" .
|
||||||
|
|
||||||
|
display:People
|
||||||
|
a display:Page ;
|
||||||
|
a display:ClassGroupPage;
|
||||||
|
display:forClassGroup vivoweb:vitroClassGrouppeople ;
|
||||||
|
display:requiresBodyTemplate \"menupage--classgroup-people.ftl\" ;
|
||||||
|
display:title \"People\" ;
|
||||||
|
display:urlMapping \"/people\" .
|
||||||
|
|
||||||
|
display:Research
|
||||||
|
a display:Page ;
|
||||||
|
a display:ClassGroupPage;
|
||||||
|
display:forClassGroup vivoweb:vitroClassGrouppublications ;
|
||||||
|
display:title \"Research\" ;
|
||||||
|
display:urlMapping \"/research\" .
|
||||||
|
""" .
|
|
@ -0,0 +1,176 @@
|
||||||
|
# $This file is distributed under the terms of the license in /doc/license.txt$
|
||||||
|
|
||||||
|
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||||
|
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
||||||
|
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||||
|
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||||
|
|
||||||
|
|
||||||
|
#########Classes#########
|
||||||
|
###Basic
|
||||||
|
owl:Class
|
||||||
|
a owl:Class .
|
||||||
|
|
||||||
|
owl:Ontology
|
||||||
|
a owl:Class .
|
||||||
|
|
||||||
|
owl:AnnotationProperty
|
||||||
|
a owl:Class .
|
||||||
|
|
||||||
|
owl:DatatypeProperty
|
||||||
|
a owl:Class .
|
||||||
|
|
||||||
|
owl:ObjectProperty
|
||||||
|
a owl:Class .
|
||||||
|
|
||||||
|
###Display Model
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#MainMenu>
|
||||||
|
a owl:Class ;
|
||||||
|
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#customDisplayViewAnnot>
|
||||||
|
"individual-menu.ftl"^^xsd:string .
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#NavigationElement>
|
||||||
|
a owl:Class .
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#Page>
|
||||||
|
a owl:Class .
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#HomePage>
|
||||||
|
a owl:Class .
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#ClassGroupPage>
|
||||||
|
a owl:Class .
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#IndividualsForClassesPage>
|
||||||
|
a owl:Class .
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#InternalClassesPage>
|
||||||
|
a owl:Class .
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#DataGetter>
|
||||||
|
a owl:Class .
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
########Data Properties#########
|
||||||
|
|
||||||
|
###Basic
|
||||||
|
|
||||||
|
rdfs:comment
|
||||||
|
a owl:DatatypeProperty .
|
||||||
|
|
||||||
|
rdfs:label
|
||||||
|
a owl:DatatypeProperty .
|
||||||
|
|
||||||
|
owl:versionInfo
|
||||||
|
a owl:DatatypeProperty .
|
||||||
|
|
||||||
|
###Vitro model
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime>
|
||||||
|
a owl:DatatypeProperty .
|
||||||
|
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank>
|
||||||
|
a owl:DatatypeProperty .
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#customDisplayViewAnnot>
|
||||||
|
a owl:DatatypeProperty .
|
||||||
|
|
||||||
|
###Display model
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#listViewConfigFile>
|
||||||
|
a owl:DatatypeProperty .
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#title>
|
||||||
|
a owl:DatatypeProperty .
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#urlMapping>
|
||||||
|
a owl:DatatypeProperty .
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#requiresBodyTemplate>
|
||||||
|
a owl:DatatypeProperty .
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#menuPosition>
|
||||||
|
a owl:DatatypeProperty ;
|
||||||
|
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot>
|
||||||
|
"1"^^xsd:int .
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#linkText>
|
||||||
|
a owl:DatatypeProperty .
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#hasMenuText>
|
||||||
|
a owl:DatatypeProperty .
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#usesDataGetterClass>
|
||||||
|
a owl:DatatypeProperty .
|
||||||
|
|
||||||
|
|
||||||
|
######### Object Properties#########
|
||||||
|
###Basic
|
||||||
|
rdfs:range
|
||||||
|
a owl:ObjectProperty .
|
||||||
|
rdfs:domain
|
||||||
|
a owl:ObjectProperty .
|
||||||
|
owl:topObjectProperty
|
||||||
|
a owl:ObjectProperty .
|
||||||
|
|
||||||
|
###Vitro properties without which individual templates throw errors as are required
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ns/vitro/public#mainImage>
|
||||||
|
a owl:ObjectProperty ;
|
||||||
|
rdfs:range <http://vitro.mannlib.cornell.edu/ns/vitro/public#File> ;
|
||||||
|
rdfs:subPropertyOf <http://vitro.mannlib.cornell.edu/ns/vitro/public#mainImage> , owl:topObjectProperty .
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#primaryLink>
|
||||||
|
a owl:ObjectProperty ;
|
||||||
|
rdfs:label "Primary Link"@en-US ;
|
||||||
|
rdfs:range <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Link> ;
|
||||||
|
rdfs:subPropertyOf <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#primaryLink> , owl:topObjectProperty ;
|
||||||
|
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#customEntryFormAnnot>
|
||||||
|
"defaultLinkForm.jsp"^^xsd:string ;
|
||||||
|
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#forceStubDeletionAnnot>
|
||||||
|
"true"^^xsd:boolean ;
|
||||||
|
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot>
|
||||||
|
"true"^^xsd:boolean ;
|
||||||
|
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot>
|
||||||
|
"false"^^xsd:boolean ;
|
||||||
|
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#stubObjectPropertyAnnot>
|
||||||
|
"true"^^xsd:boolean .
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#additionalLink>
|
||||||
|
a owl:ObjectProperty ;
|
||||||
|
rdfs:label "Additional Link"@en-US ;
|
||||||
|
rdfs:range <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Link> ;
|
||||||
|
rdfs:subPropertyOf <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#additionalLink> , owl:topObjectProperty ;
|
||||||
|
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#customEntryFormAnnot>
|
||||||
|
"defaultLinkForm.jsp"^^xsd:string ;
|
||||||
|
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#forceStubDeletionAnnot>
|
||||||
|
"true"^^xsd:boolean ;
|
||||||
|
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot>
|
||||||
|
"true"^^xsd:boolean ;
|
||||||
|
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot>
|
||||||
|
"false"^^xsd:boolean ;
|
||||||
|
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#stubObjectPropertyAnnot>
|
||||||
|
"true"^^xsd:boolean .
|
||||||
|
|
||||||
|
###Display model
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#hasElement>
|
||||||
|
a owl:ObjectProperty .
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#excludeClass>
|
||||||
|
a owl:ObjectProperty .
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#toPage>
|
||||||
|
a owl:ObjectProperty .
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#forClassGroup>
|
||||||
|
a owl:ObjectProperty .
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#hasDataGetter>
|
||||||
|
a owl:ObjectProperty .
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#getIndividualsForClass>
|
||||||
|
a owl:ObjectProperty .
|
||||||
|
|
||||||
|
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#restrictResultsByClass>
|
||||||
|
a owl:ObjectProperty .
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,185 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE rdf:RDF [
|
||||||
|
<!ENTITY display "http://vitro.mannlib.cornell.edu/ontologies/display/1.1#">
|
||||||
|
<!ENTITY owl "http://www.w3.org/2002/07/owl#">
|
||||||
|
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||||
|
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#">
|
||||||
|
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#">
|
||||||
|
<!ENTITY vitro "http://vitro.mannlib.cornell.edu/ns/vitro/0.7#">
|
||||||
|
]>
|
||||||
|
|
||||||
|
<rdf:RDF xml:base="http://vitro.mannlib.cornell.edu/ontologies/display/1.1/"
|
||||||
|
xmlns:display="&display;"
|
||||||
|
xmlns:owl="&owl;"
|
||||||
|
xmlns:rdf="&rdf;"
|
||||||
|
xmlns:rdfs="&rdfs;"
|
||||||
|
xmlns:vitro="&vitro;">
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#authorInAuthorship">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-authorInAuthorship.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#educationalTraining">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-educationalTraining.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#informationResourceInAuthorship">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-informationResourceInAuthorship.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#personInPosition">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-personInPosition.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#organizationForPosition">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-organizationForPosition.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#organizationForTraining">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-organizationForTraining.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#mailingAddress">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-mailingAddress.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#awardOrHonor">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-awardOrHonor.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#advisorIn">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-advisorIn.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#researchAreaOf">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-researchAreaOf.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
******************************************************************
|
||||||
|
all roles use same config...is there a better way to specify this?
|
||||||
|
** core:hasClinicalRole
|
||||||
|
** core:hasLeaderRole
|
||||||
|
** core:hasMemberRole
|
||||||
|
** core:hasOutreachProviderRole
|
||||||
|
** core:hasServiceProviderRole
|
||||||
|
** core:hasResearcherRole
|
||||||
|
** core:hasTeacherRole
|
||||||
|
** core:hasOrganizerRole
|
||||||
|
** core:hasAttendeeRole
|
||||||
|
these three are an exception, and share a separate config
|
||||||
|
** core:hasInvestigatorRole
|
||||||
|
** core:hasCo-PrincipalInvestigatorRole
|
||||||
|
** core:hasPrincipalInvestigatorRole
|
||||||
|
******************************************************************
|
||||||
|
-->
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasClinicalRole">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-hasRole.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasLeaderRole">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-hasRole.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasMemberRole">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-hasRole.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasOutreachProviderRole">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-hasRole.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasServiceProviderRole">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-hasRole.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasResearcherRole">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-hasRole.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasTeacherRole">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-hasRole.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasOrganizerRole">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-hasRole.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasEditorRole">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-hasEditReviewRole.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasReviewerRole">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-hasEditReviewRole.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasPresenterRole">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-hasPresenterRole.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasAttendeeRole">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-hasAttendeeRole.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<!-- The next three roles use a different config -->
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasInvestigatorRole">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-hasInvestigatorRole.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasCo-PrincipalInvestigatorRole">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-hasInvestigatorRole.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasPrincipalInvestigatorRole">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-hasInvestigatorRole.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
******************************************************************
|
||||||
|
end roles (from person) config
|
||||||
|
******************************************************************
|
||||||
|
-->
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#realizedRole">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-relatedRole.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#contributingRole">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-relatedRole.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#linkedRole">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-relatedRole.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#dateTimeInterval">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-dateTimeInterval.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#dateTimeValue">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-dateTimeValue.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#start">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-dateTimeValue.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#end">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-dateTimeValue.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#webpage">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-webpage.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasAssociatedConcept">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-hasAssociatedConcept.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasSubjectArea">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-hasAssociatedConcept.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasResearchArea">
|
||||||
|
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-hasAssociatedConcept.xml</display:listViewConfigFile>
|
||||||
|
</rdf:Description>
|
||||||
|
|
||||||
|
</rdf:RDF>
|
Loading…
Add table
Add a link
Reference in a new issue