VIVO-742 Many changes to remove "solr" from the code base.

Comments, template names, Java classes, variables and method names (Java and JavaScript), etc.
This commit is contained in:
j2blake 2014-04-23 14:20:22 -04:00
parent 711afa44fa
commit 02bdddab23
14 changed files with 36 additions and 36 deletions

View file

@ -8,7 +8,7 @@ import edu.cornell.mannlib.vitro.webapp.rdfservice.RDFServiceFactory;
import edu.cornell.mannlib.vitro.webapp.search.documentBuilding.ContextNodeFields;
/**
* Class that adds text from context nodes to Solr Documents for
* Class that adds text from context nodes to Search Documents for
* foaf:Agent individuals.
*/
public class VivoAgentContextNodeFields extends ContextNodeFields{

View file

@ -44,9 +44,9 @@ public class VivoDocumentModifiers implements javax.servlet.ServletContextListen
Dataset dataset = DatasetFactory.create(ModelAccess.on(context).getJenaOntModel());
/* Put DocumentModifiers into servlet context for use later in startup by SolrSetup
/* Put DocumentModifiers into servlet context for use later in startup by SearchSetup
* This adds the code for VIVO specific additions to the building
* of solr Documents. */
* of search input Documents. */
List<DocumentModifier> modifiers = (List<DocumentModifier>)context.getAttribute("DocumentModifiers");
if( modifiers == null ){
modifiers = new ArrayList<DocumentModifier>();

View file

@ -9,9 +9,9 @@ import edu.cornell.mannlib.vitro.webapp.rdfservice.RDFServiceFactory;
import edu.cornell.mannlib.vitro.webapp.search.documentBuilding.ContextNodeFields;
/**
* DocumentModifier to populate Solr fields for the basic ISF relationships.
* DocumentModifier to populate Search index fields for the basic ISF relationships.
*
* This will add the all rdfs:labels of the related individuals to the solr document.
* This will add the all rdfs:labels of the related individuals to the search document.
*
* @author bdc34
*/

View file

@ -11,14 +11,14 @@ import edu.cornell.mannlib.vitro.webapp.search.documentBuilding.ContextNodeField
/*
* This DocumentModifier is for the ISF style grants.
* It will
* add people's names to the grant's Solr Document
* add the grant's name to the people's Solr Document
* add the grant's name to the Organization's Solr Document
* add the organization's name to the grant's Solr Document
* add the grant's names to the project's Solr Document
* add the people's names to the project's Solr Document
* add the project's name to the grant's Solr Document
* add the project's name to the people's Solr Document
* add people's names to the grant's search Document
* add the grant's name to the people's search Document
* add the grant's name to the Organization's search Document
* add the organization's name to the grant's search Document
* add the grant's names to the project's search Document
* add the people's names to the project's search Document
* add the project's name to the grant's search Document
* add the project's name to the people's search Document
*/
public class VivoISFGrantFields extends ContextNodeFields {
private static String VIVONS = "http://vivoweb.org/ontology/core#";
@ -35,7 +35,7 @@ public class VivoISFGrantFields extends ContextNodeFields {
}
/**
* Query to add people's names to the grant's Solr Document.
* Query to add people's names to the grant's search Document.
* ?uri is the URI of a grant.
*/
private static String peopleForGrant =
@ -48,7 +48,7 @@ public class VivoISFGrantFields extends ContextNodeFields {
"}";
/**
* Query to add the grant's name to the people's Solr Document.
* Query to add the grant's name to the people's search Document.
* ?uri is the URI of a person.
*/
private static String grantsForPerson =
@ -63,7 +63,7 @@ public class VivoISFGrantFields extends ContextNodeFields {
"}";
/**
* Query to add the grant's name to the Organization's Solr Document.
* Query to add the grant's name to the Organization's search Document.
* ?uri is the URI of an Organization.
*/
private static String grantsForOrganization =
@ -76,7 +76,7 @@ public class VivoISFGrantFields extends ContextNodeFields {
"}";
/**
* Query to add the organization's name to the grant's Solr Document.
* Query to add the organization's name to the grant's search Document.
* ?uri is the URI of a grant.
*/
private static String organizationsForGrant =
@ -89,7 +89,7 @@ public class VivoISFGrantFields extends ContextNodeFields {
"}";
/**
* Query to add the grant's names to the project's Solr Document.
* Query to add the grant's names to the project's search Document.
* ?uir is the URI of a Project.
*/
private static String grantsForProject =
@ -103,7 +103,7 @@ public class VivoISFGrantFields extends ContextNodeFields {
"}";
/**
* Query to add the people's names to the project's Solr Document.
* Query to add the people's names to the project's search Document.
* ?uri is the URI of a Project.
*/
private static String peopleForProject =
@ -117,7 +117,7 @@ public class VivoISFGrantFields extends ContextNodeFields {
"}";
/**
* Query to add the project's name to the grant's Solr Document.
* Query to add the project's name to the grant's search Document.
* ?uri is the URI of a grant.
*/
private static String projectsForGrant =
@ -133,7 +133,7 @@ public class VivoISFGrantFields extends ContextNodeFields {
"}";
/**
* Query to add the project's name to the people's Solr Document.
* Query to add the project's name to the people's search Document.
* ?uri is the URI of a person.
*/
private static String projectsForPerson =

View file

@ -10,8 +10,8 @@ import edu.cornell.mannlib.vitro.webapp.search.documentBuilding.ContextNodeField
/**
* This class will:
* add people's names to organization's Solr Documents.
* add organization names to people's Solr Documents.
* add people's names to organization's search Documents.
* add organization names to people's search Documents.
*
* @author bdc34
*
@ -31,7 +31,7 @@ public class VivoISFMemberFields extends ContextNodeFields {
}
/**
* Add people's names to organization's Solr Documents.
* Add people's names to organization's search Documents.
*/
private static String peopleForOrganization =
prefix +
@ -43,7 +43,7 @@ public class VivoISFMemberFields extends ContextNodeFields {
"}";
/**
* add organization names to people's Solr Documents.
* add organization names to people's search Documents.
*/
private static String organizationForPeople =
prefix +

View file

@ -8,7 +8,7 @@ import edu.cornell.mannlib.vitro.webapp.rdfservice.RDFServiceFactory;
import edu.cornell.mannlib.vitro.webapp.search.documentBuilding.ContextNodeFields;
/**
* Class that adds text from context nodes to Solr Documents for
* Class that adds text from context nodes to search index Documents for
* obo:IAO_0000030 individuals.
*
* @author bdc34