22 lines
1,007 B
Text
22 lines
1,007 B
Text
# $This file is distributed under the terms of the license in /doc/license.txt$
|
|
|
|
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
|
@prefix vitroDisplay: <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 localNav: <http://vitro.mannlib.cornell.edu/ns/localnav#> .
|
|
|
|
# All instances of a class can be excluded from the lucene
|
|
# index by adding a vitroDisplay:excludeClass property between
|
|
# vitroDisplay:PrimaryLuceneIndex and the URI of the class
|
|
# that you would like to exclude.
|
|
|
|
vitroDisplay:PrimaryLuceneIndex
|
|
rdf:type owl:Thing ;
|
|
vitroDisplay:excludeClass core:Role ;
|
|
vitroDisplay:excludeClass core:AdvisingRelationship ;
|
|
vitroDisplay:excludeClass core:Authorship ;
|
|
vitroDisplay:excludeClass core:SubjectArea ;
|
|
vitroDisplay:excludeClass core:Position ;
|
|
vitroDisplay:excludeClass core:ResearchActivity ;
|
|
vitroDisplay:excludeClass core:EducationalTraining .
|