diff --git a/home/src/main/resources/config/example.applicationSetup.n3 b/home/src/main/resources/config/example.applicationSetup.n3 index eeb8678a9..6ead57a93 100644 --- a/home/src/main/resources/config/example.applicationSetup.n3 +++ b/home/src/main/resources/config/example.applicationSetup.n3 @@ -11,6 +11,7 @@ # ------------------------------------------------------------------------------ @prefix : . +@prefix vitroWebapp: . # ---------------------------- # @@ -19,8 +20,8 @@ # :application - a , - ; + a vitroWebapp:application.ApplicationImpl , + vitroWebapp:modules.Application ; :hasSearchEngine :instrumentedSearchEngineWrapper ; :hasSearchIndexer :basicSearchIndexer ; :hasImageProcessor :iioImageProcessor ; @@ -35,8 +36,8 @@ # :iioImageProcessor - a , - . + a vitroWebapp:imageprocessor.imageio.IIOImageProcessor , + vitroWebapp:modules.imageProcessor.ImageProcessor . # ---------------------------- # @@ -46,8 +47,8 @@ # :ptiFileStorage - a , - . + a vitroWebapp:filestorage.impl.FileStorageImplWrapper , + vitroWebapp:modules.fileStorage.FileStorage . # ---------------------------- # @@ -58,13 +59,13 @@ # :instrumentedSearchEngineWrapper - a , - ; + a vitroWebapp:searchengine.InstrumentedSearchEngineWrapper , + vitroWebapp:modules.searchEngine.SearchEngine ; :wraps :solrSearchEngine . :solrSearchEngine - a , - . + a vitroWebapp:searchengine.solr.SolrSearchEngine , + vitroWebapp:modules.searchEngine.SearchEngine . # ---------------------------- # @@ -74,8 +75,8 @@ # :basicSearchIndexer - a , - ; + a vitroWebapp:searchindex.SearchIndexerImpl , + vitroWebapp:modules.searchIndexer.SearchIndexer ; :threadPoolSize "10" . # ---------------------------- @@ -89,26 +90,26 @@ # :sdbContentTripleSource - a , - . + a vitroWebapp:triplesource.impl.sdb.ContentTripleSourceSDB , + vitroWebapp:modules.tripleSource.ContentTripleSource . #:tdbContentTripleSource -# a , -# ; +# a vitroWebapp:triplesource.impl.tdb.ContentTripleSourceTDB , +# vitroWebapp:modules.tripleSource.ContentTripleSource ; # # May be an absolute path, or relative to the Vitro home directory. # :hasTdbDirectory "tdbContentModels" . #:sparqlContentTripleSource -# a , -# ; +# a vitroWebapp:triplesource.impl.virtuoso.ContentTripleSourceSPARQL , +# vitroWebapp:modules.tripleSource.ContentTripleSource ; # # The URI of the SPARQL endpoint for your triple-store. # :hasEndpointURI "PUT_YOUR_SPARQL_ENDPOINT_URI_HERE" ; # # The URI to use for SPARQL UPDATE calls against your triple-store. # :hasUpdateEndpointURI "PUT_THE UPDATE_URI_HERE" . #:virtuosoContentTripleSource -# a , -# ; +# a vitroWebapp:triplesource.impl.virtuoso.ContentTripleSourceVirtuoso , +# vitroWebapp:modules.tripleSource.ContentTripleSource ; # # The URI of Virtuoso's SPARQL endpoint. # :hasEndpointURI "PUT_YOUR_VIRTUOSO_URI_HERE" ; # # The URI to use for SPARQL UPDATE calls against Virtuoso. @@ -123,8 +124,8 @@ # :tdbConfigurationTripleSource - a , - . + a vitroWebapp:triplesource.impl.tdb.ConfigurationTripleSourceTDB , + vitroWebapp:modules.tripleSource.ConfigurationTripleSource . # ---------------------------- # @@ -134,5 +135,5 @@ # :jfactTBoxReasonerModule - a , - . + a vitroWebapp:tboxreasoner.impl.jfact.JFactTBoxReasonerModule , + vitroWebapp:modules.tboxreasoner.TBoxReasonerModule . diff --git a/home/src/main/resources/rdf/display/everytime/searchIndexerConfigurationVitro.n3 b/home/src/main/resources/rdf/display/everytime/searchIndexerConfigurationVitro.n3 index 528157150..4c5a384c8 100644 --- a/home/src/main/resources/rdf/display/everytime/searchIndexerConfigurationVitro.n3 +++ b/home/src/main/resources/rdf/display/everytime/searchIndexerConfigurationVitro.n3 @@ -1,6 +1,8 @@ @prefix : . @prefix rdfs: . @prefix xsd: . +@prefix searchIndex: . + # # configure the SearchIndexer @@ -8,8 +10,8 @@ # Individuals with these types will be excluded from the search index :searchExcluder_typeExcluder - a , - ; + a searchIndex:exclusions.ExcludeBasedOnType , + searchIndex:exclusions.SearchIndexExcluder ; :excludes "http://www.w3.org/2002/07/owl#AnnotationProperty" , "http://www.w3.org/2002/07/owl#DatatypeProperty" , @@ -17,8 +19,8 @@ # Individuals with types from these namespaces will be excluded from the search index. :searchExcluder_namespaceExcluder - a , - ; + a searchIndex:exclusions.ExcludeBasedOnNamespace , + searchIndex:exclusions.SearchIndexExcluder ; :excludes "http://vitro.mannlib.cornell.edu/ns/vitro/0.7#" , "http://vitro.mannlib.cornell.edu/ns/vitro/public#" , @@ -27,38 +29,38 @@ # Individuals with URIs in these namespaces will be excluded from the search index. :searchExcluder_typeNamespaceExcluder - a , - ; + a searchIndex:exclusions.ExcludeBasedOnTypeNamespace , + searchIndex:exclusions.SearchIndexExcluder ; :excludes "http://vitro.mannlib.cornell.edu/ns/vitro/role#public" . :searchExcluder_syncingTypeExcluder - a , - . + a searchIndex:exclusions.SyncingExcludeBasedOnType , + searchIndex:exclusions.SearchIndexExcluder . # ------------------------------------ :uriFinder_forDataProperties - a , - . + a searchIndex:indexing.IndexingUriFinder , + searchIndex:indexing.AdditionalURIsForDataProperties . :uriFinder_forObjectProperties - a , - . + a searchIndex:indexing.IndexingUriFinder , + searchIndex:indexing.AdditionalURIsForObjectProperties . :uriFinder_forTypeStatements - a , - . + a searchIndex:indexing.IndexingUriFinder , + searchIndex:indexing.AdditionalURIsForTypeStatements . :uriFinder_forClassGroupChange - a , - . + a searchIndex:indexing.IndexingUriFinder , + searchIndex:indexing.URIsForClassGroupChange . # ------------------------------------ :documentModifier_AllNames - a , - ; + a searchIndex:documentBuilding.SelectQueryDocumentModifier , + searchIndex:documentBuilding.DocumentModifier ; rdfs:label "All labels are added to name fields." ; :hasTargetField "nameRaw" ; :hasSelectQuery """ @@ -70,8 +72,8 @@ """ . :documentModifier_NameFieldBooster - a , - ; + a searchIndex:documentBuilding.FieldBooster , + searchIndex:documentBuilding.DocumentModifier ; :hasTargetField "nameRaw" ; :hasTargetField "nameLowercase" ; :hasTargetField "nameUnstemmed" ; @@ -79,5 +81,5 @@ :hasBoost "1.2"^^xsd:float . :documentModifier_thumbnailImageUrl - a , - . + a searchIndex:documentBuilding.ThumbnailImageURL , + searchIndex:documentBuilding.DocumentModifier .