Adding classgroups to menu pages. NIHVIVO-632

This commit is contained in:
bdc34 2010-12-22 15:31:33 +00:00
parent 12ddea8241
commit 0cbe566a90

View file

@ -4,7 +4,7 @@
@prefix display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> . @prefix display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix core: <http://vivoweb.org/ontology/core#> . @prefix core: <http://vivoweb.org/ontology/core#> .
@prefix vivoweb: <http://vivoweb.org/ontology#> .
### This file defines the default menu for vivo. ### ### This file defines the default menu for vivo. ###
@ -60,21 +60,29 @@ display:Home
display:Events display:Events
a display:Page ; a display:Page ;
a display:ClassGroupPage;
display:forClassGroup vivoweb:vitroClassGroupevents ;
display:title "Events" ; display:title "Events" ;
display:urlMapping "/events" . display:urlMapping "/events" .
display:Organizations display:Organizations
a display:Page ; a display:Page ;
a display:ClassGroupPage;
display:forClassGroup vivoweb:vitroClassGrouporganizations ;
display:title "Organizations" ; display:title "Organizations" ;
display:urlMapping "/organizations" . display:urlMapping "/organizations" .
display:People display:People
a display:Page ; a display:Page ;
a display:ClassGroupPage;
display:forClassGroup vivoweb:vitroClassGrouppeople ;
display:requiresBodyTemplate "menupage--classgroup-people.ftl" ; display:requiresBodyTemplate "menupage--classgroup-people.ftl" ;
display:title "People" ; display:title "People" ;
display:urlMapping "/people" . display:urlMapping "/people" .
display:Research display:Research
a display:Page ; a display:Page ;
a display:ClassGroupPage;
display:forClassGroup vivoweb:vitroClassGroupresearch ;
display:title "Research" ; display:title "Research" ;
display:urlMapping "/research" . display:urlMapping "/research" .