Inclusion of new files for menu management changes
This commit is contained in:
parent
6dc01e8b42
commit
9ba390f3f8
5 changed files with 544 additions and 1 deletions
177
productMods/WEB-INF/ontologies/app/application.n3
Normal file
177
productMods/WEB-INF/ontologies/app/application.n3
Normal file
|
@ -0,0 +1,177 @@
|
|||
# $This file is distributed under the terms of the license in /doc/license.txt$
|
||||
|
||||
#These are statements that should be added application.owl. For now adding these as a separate N3 file
|
||||
@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#> .
|
||||
|
||||
<http://www.w3.org/2002/07/owl#DatatypeProperty>
|
||||
a <http://www.w3.org/2002/07/owl#Class> .
|
||||
|
||||
<http://www.w3.org/2000/01/rdf-schema#comment>
|
||||
a <http://www.w3.org/2002/07/owl#DatatypeProperty> .
|
||||
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#forClassGroup>
|
||||
a <http://www.w3.org/2002/07/owl#ObjectProperty> .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#hasElement>
|
||||
a <http://www.w3.org/2002/07/owl#ObjectProperty> .
|
||||
|
||||
<http://www.w3.org/2002/07/owl#ObjectProperty>
|
||||
a <http://www.w3.org/2002/07/owl#Class> .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#MainMenu>
|
||||
a <http://www.w3.org/2002/07/owl#Class> ;
|
||||
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#customDisplayViewAnnot>
|
||||
"individual-menu.ftl"^^<http://www.w3.org/2001/XMLSchema#string> .
|
||||
|
||||
<http://www.w3.org/2000/01/rdf-schema#domain>
|
||||
a <http://www.w3.org/2002/07/owl#ObjectProperty> .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#excludeClass>
|
||||
a <http://www.w3.org/2002/07/owl#ObjectProperty> .
|
||||
|
||||
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#hasMenuText>
|
||||
a <http://www.w3.org/2002/07/owl#DatatypeProperty> .
|
||||
|
||||
|
||||
|
||||
<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\" .
|
||||
""" .
|
||||
|
||||
|
||||
<http://www.w3.org/2002/07/owl#versionInfo>
|
||||
a <http://www.w3.org/2002/07/owl#DatatypeProperty> .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#linkText>
|
||||
a <http://www.w3.org/2002/07/owl#DatatypeProperty> .
|
||||
|
||||
|
||||
|
||||
<http://www.w3.org/2000/01/rdf-schema#label>
|
||||
a <http://www.w3.org/2002/07/owl#DatatypeProperty> .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#HomePage>
|
||||
a <http://www.w3.org/2002/07/owl#Class> .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#listViewConfigFile>
|
||||
a <http://www.w3.org/2002/07/owl#DatatypeProperty> .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#mainMenu>
|
||||
a <http://www.w3.org/2002/07/owl#Class> .
|
||||
|
||||
|
||||
|
||||
<http://www.w3.org/2002/07/owl#Ontology>
|
||||
a <http://www.w3.org/2002/07/owl#Class> .
|
||||
|
||||
|
||||
<http://www.w3.org/2000/01/rdf-schema#range>
|
||||
a <http://www.w3.org/2002/07/owl#ObjectProperty> .
|
||||
|
||||
<http://www.w3.org/2002/07/owl#AnnotationProperty>
|
||||
a <http://www.w3.org/2002/07/owl#Class> .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#ClassGroupPage>
|
||||
a <http://www.w3.org/2002/07/owl#Class> .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#IndividualsForClassesPage>
|
||||
a <http://www.w3.org/2002/07/owl#Class> .
|
||||
|
||||
<http://www.w3.org/2002/07/owl#Class>
|
||||
a <http://www.w3.org/2002/07/owl#Class> .
|
||||
|
59
productMods/WEB-INF/ontologies/app/menuadditions.n3
Normal file
59
productMods/WEB-INF/ontologies/app/menuadditions.n3
Normal file
|
@ -0,0 +1,59 @@
|
|||
# $This file is distributed under the terms of the license in /doc/license.txt$
|
||||
|
||||
#These are statements that should be added menu.n3. For now adding these as a separate N3 file
|
||||
@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#> .
|
||||
|
||||
#Adding label for Default Menu
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#DefaultMenu>
|
||||
<http://www.w3.org/2000/01/rdf-schema#label>
|
||||
"Default Menu" .
|
||||
|
||||
#Instead of type, now using dataGetter which uses an object that specifies information for data getter
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#People>
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#hasDataGetter>
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#peopleDataGetter> .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#Research>
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#hasDataGetter>
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#researchDataGetter> .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#Organizations>
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#hasDataGetter>
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#organizationsDataGetter> .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#Events>
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#hasDataGetter>
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#eventsDataGetter> .
|
||||
|
||||
#The data getter objects used above
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#peopleDataGetter>
|
||||
a <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#ClassGroupPage> ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#forClassGroup>
|
||||
<http://vivoweb.org/ontology#vitroClassGrouppeople> .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#researchDataGetter>
|
||||
a <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#ClassGroupPage> ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#forClassGroup>
|
||||
<http://vivoweb.org/ontology#vitroClassGrouppublications> .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#organizationsDataGetter>
|
||||
a <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#ClassGroupPage> ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#forClassGroup>
|
||||
<http://vivoweb.org/ontology#vitroClassGrouporganizations> .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#eventsDataGetter>
|
||||
a <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#ClassGroupPage> ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#forClassGroup>
|
||||
<http://vivoweb.org/ontology#vitroClassGroupevents> .
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -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\" .
|
||||
""" .
|
212
productMods/WEB-INF/ontologies/app/menuload/displayTBOX.n3
Normal file
212
productMods/WEB-INF/ontologies/app/menuload/displayTBOX.n3
Normal file
|
@ -0,0 +1,212 @@
|
|||
@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#> .
|
||||
|
||||
owl:Ontology
|
||||
a owl:Class .
|
||||
|
||||
<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/ontologies/display/1.1#urlMapping>
|
||||
a owl:DatatypeProperty .
|
||||
|
||||
owl:AnnotationProperty
|
||||
a owl:Class .
|
||||
|
||||
rdfs:range
|
||||
a owl:ObjectProperty .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#requiresBodyTemplate>
|
||||
a owl:DatatypeProperty .
|
||||
|
||||
<http://vivo.library.cornell.edu/ns/0.1#n6248>
|
||||
a owl:Thing ;
|
||||
rdfs:label "testname"@en-US ;
|
||||
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank>
|
||||
"1"^^xsd:int ;
|
||||
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime>
|
||||
"2011-05-25T17:34:16"^^xsd:dateTime .
|
||||
|
||||
<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://vivo.library.cornell.edu/ns/0.1#n833>
|
||||
a owl:Thing ;
|
||||
rdfs:label "testname"@en-US ;
|
||||
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank>
|
||||
"1"^^xsd:int ;
|
||||
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime>
|
||||
"2011-05-26T13:23:49"^^xsd:dateTime .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#toPage>
|
||||
a owl:ObjectProperty .
|
||||
|
||||
rdfs:label
|
||||
a owl:DatatypeProperty .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#restrictResultsByClass>
|
||||
a owl:ObjectProperty .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank>
|
||||
a owl:DatatypeProperty .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#excludeClass>
|
||||
a owl:ObjectProperty .
|
||||
|
||||
<http://vivo.library.cornell.edu/ns/0.1#n3490>
|
||||
a owl:Thing ;
|
||||
rdfs:label "testname"@en-US ;
|
||||
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank>
|
||||
"1"^^xsd:int ;
|
||||
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime>
|
||||
"2011-05-26T10:30:02"^^xsd:dateTime .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#getIndividualsForClass>
|
||||
a owl:ObjectProperty .
|
||||
|
||||
owl:DatatypeProperty
|
||||
a owl:Class .
|
||||
|
||||
rdfs:comment
|
||||
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#intersectsWithClass>
|
||||
a owl:ObjectProperty .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#IndividualsForClassesPage>
|
||||
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#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#forClassGroup>
|
||||
a owl:ObjectProperty .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#hasClassIntersection>
|
||||
a owl:ObjectProperty .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#ClassIntersectionPage>
|
||||
a owl:Class .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#HomePage>
|
||||
a owl:Class .
|
||||
|
||||
<http://vivo.library.cornell.edu/ns/0.1#n1077>
|
||||
a owl:Thing ;
|
||||
rdfs:label "testname"@en-US ;
|
||||
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank>
|
||||
"1"^^xsd:int ;
|
||||
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime>
|
||||
"2011-05-26T13:53:52"^^xsd:dateTime .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#ClassGroupPage>
|
||||
a owl:Class .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#hasDataGetter>
|
||||
a owl:ObjectProperty .
|
||||
|
||||
owl:Class
|
||||
a owl:Class .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#hasElement>
|
||||
a owl:ObjectProperty .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#title>
|
||||
a owl:DatatypeProperty .
|
||||
|
||||
owl:ObjectProperty
|
||||
a owl:Class .
|
||||
|
||||
<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#ClassIntersection>
|
||||
a owl:Class .
|
||||
|
||||
rdfs:domain
|
||||
a owl:ObjectProperty .
|
||||
|
||||
owl:versionInfo
|
||||
a owl:DatatypeProperty .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#listViewConfigFile>
|
||||
a owl:DatatypeProperty .
|
||||
|
||||
<http://vivo.library.cornell.edu/ns/0.1#n7237>
|
||||
a owl:Thing ;
|
||||
rdfs:label "testname"@en-US ;
|
||||
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank>
|
||||
"1"^^xsd:int ;
|
||||
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime>
|
||||
"2011-05-26T13:34:02"^^xsd:dateTime .
|
||||
|
||||
<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 .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#DataGetter>
|
||||
a owl:Class .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#linkText>
|
||||
a owl:DatatypeProperty .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#NavigationElement>
|
||||
a owl:Class .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime>
|
||||
a owl:DatatypeProperty .
|
||||
|
||||
<http://vivo.library.cornell.edu/ns/0.1#n6377>
|
||||
a owl:Thing ;
|
||||
rdfs:label "testname"@en-US ;
|
||||
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank>
|
||||
"1"^^xsd:int ;
|
||||
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime>
|
||||
"2011-05-26T11:29:19"^^xsd:dateTime .
|
||||
|
||||
<http://vivo.library.cornell.edu/ns/0.1#n1847>
|
||||
a owl:Thing ;
|
||||
rdfs:label "testname"@en-US ;
|
||||
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank>
|
||||
"1"^^xsd:int ;
|
||||
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime>
|
||||
"2011-05-25T17:36:03"^^xsd:dateTime .
|
|
@ -1,7 +1,6 @@
|
|||
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
||||
|
||||
<#include "menupage-checkForData.ftl">
|
||||
|
||||
<#if !noData>
|
||||
<section id="menupage-intro" class="people" role="region">
|
||||
<h2>${page.title}</h2>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue