diff --git a/webapp/ontologies/app/application.owl b/webapp/ontologies/app/application.owl
deleted file mode 100644
index 18f1d8b90..000000000
--- a/webapp/ontologies/app/application.owl
+++ /dev/null
@@ -1,134 +0,0 @@
-
-
-
-
-
-
-
-
-]>
-
-
-
-
-
-
-
-
-
-
- This represents a menu item or other general navigation item.
-
-
-
-
-
-
-
-
-
-
-
-
-
- individual-menu.ftl
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Indicates that a page requires a body template.
-
-
-
-
-
-
-
-
- Values from HttpRequest.getPathInfo() will be mapped to values from urlMapping.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/webapp/ontologies/app/loadedAtStartup/displayModelListViews.rdf b/webapp/ontologies/app/loadedAtStartup/displayModelListViews.rdf
deleted file mode 100644
index 4a17524f5..000000000
--- a/webapp/ontologies/app/loadedAtStartup/displayModelListViews.rdf
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
-]>
-
-
-
-
-
- listViewConfig-hasElement.xml
-
-
-
\ No newline at end of file
diff --git a/webapp/ontologies/app/menu.n3 b/webapp/ontologies/app/menu.n3
deleted file mode 100644
index 098fc8a74..000000000
--- a/webapp/ontologies/app/menu.n3
+++ /dev/null
@@ -1,35 +0,0 @@
-# $This file is distributed under the terms of the license in /doc/license.txt$
-
-@prefix owl: .
-@prefix display: .
-@prefix rdf: .
-
-### This file defines the default menu for vitro. ###
-
-#### Default Menu ####
-
-display:DefaultMenu
- a display:MainMenu ;
- display:hasElement display:HomeMenuItem .
-
-#### Menu Items for Default Menu ####
-
-display:HomeMenuItem
- a display:NavigationElement ;
- display:menuPosition 1;
- display:linkText "Home";
- display:toPage display:Home .
-
-########## Pages ############
-
-display:Home
- a display:HomePage ;
- a display:Page ;
- display:title "Home" ;
- display:urlMapping "/" ;
- display:hasDataGetter display:homeDataGetter .
-
-########## Data Getter ############
-
-
- a .
\ No newline at end of file
diff --git a/webapp/ontologies/app/menuload/displayDisplay.n3 b/webapp/ontologies/app/menuload/displayDisplay.n3
deleted file mode 100644
index bda8b4566..000000000
--- a/webapp/ontologies/app/menuload/displayDisplay.n3
+++ /dev/null
@@ -1,96 +0,0 @@
-@prefix rdfs: .
-@prefix xsd: .
-@prefix owl: .
-@prefix rdf: .
-
-
-
- """# $This file is distributed under the terms of the license in /doc/license.txt$
-
-@prefix owl: .
-@prefix display: .
-@prefix rdf: .
-@prefix core: .
-@prefix vivoweb: .
-
-### 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\" .
-""" .
diff --git a/webapp/ontologies/app/menuload/displayTBOX.n3 b/webapp/ontologies/app/menuload/displayTBOX.n3
deleted file mode 100644
index 14d647f80..000000000
--- a/webapp/ontologies/app/menuload/displayTBOX.n3
+++ /dev/null
@@ -1,176 +0,0 @@
-# $This file is distributed under the terms of the license in /doc/license.txt$
-
-@prefix rdfs: .
-@prefix xsd: .
-@prefix owl: .
-@prefix rdf: .
-
-
-#########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
-
- a owl:Class ;
-
- "individual-menu.ftl"^^xsd:string .
-
-
- a owl:Class .
-
-
- a owl:Class .
-
-
- a owl:Class .
-
-
- a owl:Class .
-
-
- a owl:Class .
-
-
- a owl:Class .
-
-
- a owl:Class .
-
-
-
-########Data Properties#########
-
-###Basic
-
-rdfs:comment
- a owl:DatatypeProperty .
-
-rdfs:label
- a owl:DatatypeProperty .
-
-owl:versionInfo
- a owl:DatatypeProperty .
-
-###Vitro model
-
-
- a owl:DatatypeProperty .
-
- a owl:DatatypeProperty .
-
-
- a owl:DatatypeProperty .
-
-###Display model
-
-
- a owl:DatatypeProperty .
-
- a owl:DatatypeProperty .
-
-
- a owl:DatatypeProperty .
-
-
- a owl:DatatypeProperty .
-
-
- a owl:DatatypeProperty ;
-
- "1"^^xsd:int .
-
-
- a owl:DatatypeProperty .
-
-
- a owl:DatatypeProperty .
-
-
- 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
-
-
- a owl:ObjectProperty ;
- rdfs:range ;
- rdfs:subPropertyOf , owl:topObjectProperty .
-
-
- a owl:ObjectProperty ;
- rdfs:label "Primary Link"@en-US ;
- rdfs:range ;
- rdfs:subPropertyOf , owl:topObjectProperty ;
-
- "defaultLinkForm.jsp"^^xsd:string ;
-
- "true"^^xsd:boolean ;
-
- "true"^^xsd:boolean ;
-
- "false"^^xsd:boolean ;
-
- "true"^^xsd:boolean .
-
-
- a owl:ObjectProperty ;
- rdfs:label "Additional Link"@en-US ;
- rdfs:range ;
- rdfs:subPropertyOf , owl:topObjectProperty ;
-
- "defaultLinkForm.jsp"^^xsd:string ;
-
- "true"^^xsd:boolean ;
-
- "true"^^xsd:boolean ;
-
- "false"^^xsd:boolean ;
-
- "true"^^xsd:boolean .
-
-###Display model
-
- a owl:ObjectProperty .
-
-
- a owl:ObjectProperty .
-
-
- a owl:ObjectProperty .
-
-
- a owl:ObjectProperty .
-
-
- a owl:ObjectProperty .
-
-
- a owl:ObjectProperty .
-
-
- a owl:ObjectProperty .
-
-
diff --git a/webapp/ontologies/search/vitroSearchProhibited.n3 b/webapp/ontologies/search/vitroSearchProhibited.n3
deleted file mode 100644
index ba3ed6838..000000000
--- a/webapp/ontologies/search/vitroSearchProhibited.n3
+++ /dev/null
@@ -1,27 +0,0 @@
-# $This file is distributed under the terms of the license in /doc/license.txt$
-
-# All instances of a class can be excluded from the search index
-# by adding a vitroDisplay:excludeClass property between
-# vitroDisplay:SearchIndex and the URI of the class
-# that you would like to exclude.
-
-# All .n3 or .rdf files in this directory will be used to configure
-# the search exclusions. Each file must be a valid file in the format
-# specified by its extension. Each file will be loaded individually and
-# must be a complete stand alone example of its format. Each file must contain all
-# the necessary prefixes, namespaces and preambles required by the format
-# specified by its extension.
-
-# If you would like to add classes to the
-# exclusions, add a file to this directory ending in .n3 with
-# N3 statements similar to this example.
-
-#
-# @prefix owl: .
-# @prefix vitroDisplay: .
-# @prefix rdf: .
-# @prefix example: .
-#
-# vitroDisplay:SearchIndex
-# rdf:type owl:Thing ;
-# vitroDisplay:excludeClass example:classToExclude ;
\ No newline at end of file
diff --git a/webapp/ontologies/system/vitro-0.7.owl b/webapp/ontologies/system/vitro-0.7.owl
deleted file mode 100644
index 67db4843e..000000000
--- a/webapp/ontologies/system/vitro-0.7.owl
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
- ]>
-
-
-
-
-
-
-
-
-
- Vitro internals
- 0.7
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/webapp/ontologies/system/vitroPublic.owl b/webapp/ontologies/system/vitroPublic.owl
deleted file mode 100644
index d1f51520a..000000000
--- a/webapp/ontologies/system/vitroPublic.owl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-]>
-
-
-
-
-
-
- Vitro public constructs
- 0.1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file