diff --git a/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoAgentContextNodeFields.java b/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoAgentContextNodeFields.java index bf3dc040..2b92bea3 100644 --- a/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoAgentContextNodeFields.java +++ b/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoAgentContextNodeFields.java @@ -35,29 +35,33 @@ public class VivoAgentContextNodeFields extends ContextNodeFields{ //queries for foaf:Agent static { - /* Position */ + /* Positions for People */ queriesForAgent.add(prefix + "SELECT " + "(str(?ContextNodeProperty) as ?contextNodeProperty) WHERE {" + - " ?uri rdf:type foaf:Agent ; ?b ?c . " + + " ?uri rdf:type foaf:Agent . " + + " ?uri ?b ?c . " + " ?c rdf:type core:Position . " + " ?c core:hrJobTitle ?ContextNodeProperty . }"); queriesForAgent.add(prefix + "SELECT " + "(str(?ContextNodeProperty) as ?contextNodeProperty) WHERE {" + - " ?uri rdf:type foaf:Agent ; ?b ?c . " + + " ?uri rdf:type foaf:Agent . " + + " ?uri ?b ?c . " + " ?c rdf:type core:Position . " + " ?c core:involvedOrganizationName ?ContextNodeProperty . }"); queriesForAgent.add(prefix + "SELECT " + "(str(?ContextNodeProperty) as ?contextNodeProperty) WHERE {" + - " ?uri rdf:type foaf:Agent ; ?b ?c . " + + " ?uri rdf:type foaf:Agent . " + + " ?uri ?b ?c . " + " ?c rdf:type core:Position . " + " ?c core:positionInOrganization ?i . ?i rdfs:label ?ContextNodeProperty . }"); queriesForAgent.add(prefix + "SELECT " + "(str(?ContextNodeProperty) as ?contextNodeProperty) WHERE {" + - " ?uri rdf:type foaf:Agent ; ?b ?c . " + + " ?uri rdf:type foaf:Agent . " + + " ?uri ?b ?c . " + " ?c rdf:type core:Position . " + " ?c core:titleOrRole ?ContextNodeProperty . }"); diff --git a/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoDocumentModifiers.java b/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoDocumentModifiers.java index 2d0ac1ca..569a407a 100644 --- a/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoDocumentModifiers.java +++ b/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoDocumentModifiers.java @@ -15,9 +15,20 @@ import edu.cornell.mannlib.vitro.webapp.rdfservice.RDFServiceFactory; import edu.cornell.mannlib.vitro.webapp.rdfservice.impl.RDFServiceUtils; import edu.cornell.mannlib.vitro.webapp.search.solr.documentBuilding.CalculateParameters; import edu.cornell.mannlib.vitro.webapp.search.solr.documentBuilding.DocumentModifier; +import edu.cornell.mannlib.vitro.webapp.search.solr.documentBuilding.ExcludeBasedOnNamespace; +import edu.cornell.mannlib.vitro.webapp.search.solr.documentBuilding.SearchIndexExcluder; public class VivoDocumentModifiers implements javax.servlet.ServletContextListener{ + /** + * Exclude from the search index individuals who's URIs start with these namespaces. + */ + private static final String[] INDIVIDUAL_NS_EXCLUDES={ + //bdc34: seems that there are a lot of odd OBO things in the search, exclude them + "http://purl.obolibrary.org/obo/" + }; + + @SuppressWarnings("unchecked") @Override public void contextInitialized(ServletContextEvent sce) { @@ -26,14 +37,35 @@ 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 SolrSetup + * This adds the code for VIVO specific additions to the building + * of solr Documents. */ + List modifiers = (List)context.getAttribute("DocumentModifiers"); + if( modifiers == null ){ + modifiers = new ArrayList(); + context.setAttribute("DocumentModifiers", modifiers); + } - List modifiers = new ArrayList(); - modifiers.add(new CalculateParameters(dataset)); // - modifiers.add(new VivoAgentContextNodeFields(rdfServiceFactory)); - modifiers.add(new VivoInformationResourceContextNodeFields(rdfServiceFactory)); + modifiers.add(new CalculateParameters(dataset)); + modifiers.add( new VivoISFBasicFields( rdfServiceFactory )); + modifiers.add( new VivoISFAdvisingFields( rdfServiceFactory )); + modifiers.add( new VivoISFEducationFields( rdfServiceFactory )); + modifiers.add( new VivoISFGrantFields( rdfServiceFactory )); + modifiers.add( new VivoISFMemberFields( rdfServiceFactory )); + modifiers.add(new VivoInformationResourceContextNodeFields(rdfServiceFactory)); - context.setAttribute("DocumentModifiers", modifiers); + /* + * Add VIVO specific code that excludes Individuals from the search index. + */ + List excludes = + (List)context.getAttribute("SearchIndexExcludes"); + + if( excludes == null ){ + excludes = new ArrayList(); + context.setAttribute("SearchIndexExcludes", excludes); + } + + excludes.add(new ExcludeBasedOnNamespace(INDIVIDUAL_NS_EXCLUDES )); } @Override diff --git a/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoISFAdvisingFields.java b/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoISFAdvisingFields.java new file mode 100644 index 00000000..d82608a0 --- /dev/null +++ b/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoISFAdvisingFields.java @@ -0,0 +1,52 @@ +package edu.cornell.mannlib.vitro.webapp.search.solr; + +import java.util.ArrayList; +import java.util.List; + +import edu.cornell.mannlib.vitro.webapp.rdfservice.RDFServiceFactory; +import edu.cornell.mannlib.vitro.webapp.search.solr.documentBuilding.ContextNodeFields; + +/** + * DocumentModifier for adding rdfs:labels of individuals related via + * a advising relationship. + * + * @author bdc34 + * + */ +public class VivoISFAdvisingFields extends ContextNodeFields { + + private static String VIVONS = "http://vivoweb.org/ontology/core#"; + + protected static final String prefix = + " prefix rdf: \n" + + " prefix core: <" + VIVONS + "> \n" + + " prefix foaf: \n" + + " prefix rdfs: \n" + + " prefix obo: \n" ; + + static List queries = new ArrayList(); + static{ + queries.add( makeQueryForPeople() ); + } + + public VivoISFAdvisingFields(RDFServiceFactory rdfServiceFactory){ + super(queries,rdfServiceFactory); + } + + /** + * This query will get all the labels for the other + * person in the relationship. + */ + private static String makeQueryForPeople(){ + return prefix + + "SELECT \n" + + "(str(?result) as ?result) WHERE \n" + + "{\n" + + " ?uri core:relatedBy ?rel . \n" + + " ?rel rdf:type core:AdvisingRelationship . \n" + + " ?rel core:relates ?other . \n" + + " ?other rdfs:label ?result . \n" + + "}"; + } + +} diff --git a/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoISFBasicFields.java b/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoISFBasicFields.java new file mode 100644 index 00000000..846de8ef --- /dev/null +++ b/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoISFBasicFields.java @@ -0,0 +1,71 @@ +package edu.cornell.mannlib.vitro.webapp.search.solr; + +import java.util.ArrayList; +import java.util.List; + +import edu.cornell.mannlib.vitro.webapp.rdfservice.RDFServiceFactory; +import edu.cornell.mannlib.vitro.webapp.search.solr.documentBuilding.ContextNodeFields; + +/** + * DocumentModifier to populate Solr fields for the basic ISF relationships. + * + * This will add the all rdfs:labels of the related individuals to the solr document. + * + * @author bdc34 + */ +public class VivoISFBasicFields extends ContextNodeFields { + + private static String VIVONS = "http://vivoweb.org/ontology/core#"; + + /** + * Subtypes of vivo:Relationship that get handled by this class. + */ + private static String[] RELATIONSHIP_TYPES = { + //VIVONS + "Relationship", + VIVONS + "Postion", + VIVONS + "Authorship", + VIVONS + "Collaboration", + VIVONS + "Affiliation" + }; + + static List queries = new ArrayList(); + + public VivoISFBasicFields(RDFServiceFactory rdfServiceFactory){ + super(queries,rdfServiceFactory); + } + + protected static final String prefix = + " prefix rdf: \n" + + " prefix core: <" + VIVONS + "> \n" + + " prefix foaf: \n" + + " prefix rdfs: \n" + + " prefix obo: \n" ; + + + + static { + + /* make a string of the RELATIONSHIP_TYPES for use in + * a SPARQL IN clause */ + String types = ""; + for( int i = 0 ; i < RELATIONSHIP_TYPES.length ; i++ ){ + types += RELATIONSHIP_TYPES[i]; + if( i != RELATIONSHIP_TYPES.length - 1 ){ + types += ", "; + } + } + + queries.add( + prefix + + "SELECT \n" + + "(str(?result) as ?result) WHERE \n" + + "{\n" + + " ?uri core:relatedBy ?rel . \n" + + " ?rel rdf:type ?type . \n" + + " ?rel core:relates ?other . \n" + + " ?other rdfs:label ?result . \n" + + " FILTER ( ?type IN ( " + types + " ) )\n" + + "}" ); + } + +} diff --git a/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoISFEducationFields.java b/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoISFEducationFields.java new file mode 100644 index 00000000..018672e0 --- /dev/null +++ b/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoISFEducationFields.java @@ -0,0 +1,56 @@ +package edu.cornell.mannlib.vitro.webapp.search.solr; + +import java.util.ArrayList; +import java.util.List; + +import edu.cornell.mannlib.vitro.webapp.rdfservice.RDFServiceFactory; +import edu.cornell.mannlib.vitro.webapp.search.solr.documentBuilding.ContextNodeFields; + +public class VivoISFEducationFields extends ContextNodeFields { + private static String VIVONS = "http://vivoweb.org/ontology/core#"; + + protected static final String prefix = + " prefix rdf: \n" + + " prefix core: <" + VIVONS + "> \n" + + " prefix foaf: \n" + + " prefix rdfs: \n" + + " prefix obo: \n" ; + + public VivoISFEducationFields(RDFServiceFactory rdfServiceFactory){ + super(queries,rdfServiceFactory); + } + + /** + * This query will get all the labels for the degree. + */ + private static String queryForDegree = + prefix + + "SELECT \n" + + "(str(?result) as ?result) WHERE \n" + + "{\n" + + " ?uri core:relates ?deg . \n" + + " ?deg rdf:type core:AwardedDegree . \n" + + " ?deg rdfs:label ?result . \n" + + "}"; + + /** + * This will get all labels for the organization. + */ + private static String queryForOrganization = + prefix + + "SELECT \n" + + "(str(?result) as ?result) WHERE \n" + + "{\n" + + " ?uri core:relates ?deg . \n" + + " ?deg rdf:type core:AwardedDegree . \n" + + " ?deg core:assignedBy ?org . \n" + + " ?org rdfs:label ?result . \n" + + "}"; + + static List queries = new ArrayList(); + + static{ + queries.add( queryForDegree ); + queries.add( queryForOrganization ); + } +} diff --git a/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoISFGrantFields.java b/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoISFGrantFields.java new file mode 100644 index 00000000..3b6dd8f9 --- /dev/null +++ b/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoISFGrantFields.java @@ -0,0 +1,159 @@ +package edu.cornell.mannlib.vitro.webapp.search.solr; + +import java.util.ArrayList; +import java.util.List; + +import edu.cornell.mannlib.vitro.webapp.rdfservice.RDFServiceFactory; +import edu.cornell.mannlib.vitro.webapp.search.solr.documentBuilding.ContextNodeFields; + +/* + * 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 + */ +public class VivoISFGrantFields extends ContextNodeFields { + private static String VIVONS = "http://vivoweb.org/ontology/core#"; + + protected static final String prefix = + " prefix rdf: \n" + + " prefix core: <" + VIVONS + "> \n" + + " prefix foaf: \n" + + " prefix rdfs: \n" + + " prefix obo: \n" ; + + public VivoISFGrantFields(RDFServiceFactory rdfServiceFactory){ + super(queries,rdfServiceFactory); + } + + /** + * Query to add people's names to the grant's Solr Document. + * ?uri is the URI of a grant. + */ + private static String peopleForGrant = + prefix + + "SELECT (str(?result) as ?result) WHERE {\n" + + " ?uri rdf:type core:Grant . \n" + + " ?uri core:relates ?person . \n" + + " ?person rdf:type foaf:Person . \n" + + " ?person rdfs:label ?result . \n" + + "}"; + + /** + * Query to add the grant's name to the people's Solr Document. + * ?uri is the URI of a person. + */ + private static String grantsForPerson = + prefix + + "SELECT \n" + + "(str(?result) as ?result) WHERE \n" + + "{\n" + + " ?uri rdf:type foaf:Person . \n" + + " ?grant core:relates ?uri . \n" + + " ?grant rdf:type core:Grant . \n" + + " ?grant rdfs:label ?result . \n" + + "}"; + + /** + * Query to add the grant's name to the Organization's Solr Document. + * ?uri is the URI of an Organization. + */ + private static String grantsForOrganization = + prefix + + "SELECT (str(?result) as ?result) WHERE {\n" + + " ?uri rdf:type foaf:Organization . \n" + + " ?grant core:relates ?uri . \n" + + " ?grant rdf:type core:Grant . \n" + + " ?grant rdfs:label ?result . \n" + + "}"; + + /** + * Query to add the organization's name to the grant's Solr Document. + * ?uri is the URI of a grant. + */ + private static String organizationsForGrant = + prefix + + "SELECT (str(?result) as ?result) WHERE {\n" + + " ?uri rdf:type core:Grant . \n" + + " ?uri core:relates ?org . \n" + + " ?org rdf:type foaf:Organization . \n" + + " ?org rdfs:label ?result . \n" + + "}"; + + /** + * Query to add the grant's names to the project's Solr Document. + * ?uir is the URI of a Project. + */ + private static String grantsForProject = + prefix + + "SELECT (str(?result) as ?result) WHERE {\n" + + " ?uri rdf:type core:Project . \n" + + " ?role obo:BFO_0000054 ?uri . \n" + + " ?grant core:relates ?role . \n" + + " ?grant rdf:type core:Grant . \n" + + " ?grant rdfs:label ?result . \n" + + "}"; + + /** + * Query to add the people's names to the project's Solr Document. + * ?uri is the URI of a Project. + */ + private static String peopleForProject = + prefix + + "SELECT (str(?result) as ?result) WHERE {\n" + + " ?uri rdf:type core:Project . \n" + + " ?role obo:BFO_0000054 ?uri . \n" + + " ?role obo:RO_0000053 ?person . \n" + + " ?person rdf:type foaf:Person . \n" + + " ?person rdfs:label ?result . \n" + + "}"; + + /** + * Query to add the project's name to the grant's Solr Document. + * ?uri is the URI of a grant. + */ + private static String projectsForGrant = + prefix + + "SELECT \n" + + "(str(?result) as ?result) WHERE \n" + + "{\n" + + " ?uri rdf:type core:Grant. \n" + + " ?uri core:relates ?role . \n" + + " ?role obo:BFO_0000054 ?project . \n" + + " ?project rdf:type core:Project . \n" + + " ?project rdfs:label ?result . \n" + + "}"; + + /** + * Query to add the project's name to the people's Solr Document. + * ?uri is the URI of a person. + */ + private static String projectsForPerson = + prefix + + "SELECT (str(?result) as ?result) WHERE {\n" + + " ?uri rdf:type foaf:Person . \n" + + " ?uri obo:RO_0000053 ?role . \n" + + " ?role obo:BFO_0000054 ?project . \n" + + " ?project rdf:type core:Project . \n" + + " ?project rdfs:label ?result . \n" + + "}"; + + static List queries = new ArrayList(); + + static{ + queries.add( peopleForGrant ); + queries.add( grantsForPerson ); + queries.add( grantsForOrganization ); + queries.add( organizationsForGrant ); + queries.add( grantsForProject ); + queries.add( peopleForProject ); + queries.add( projectsForGrant ); + queries.add( projectsForPerson ); + } +} diff --git a/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoISFMemberFields.java b/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoISFMemberFields.java new file mode 100644 index 00000000..d12ab647 --- /dev/null +++ b/src/edu/cornell/mannlib/vitro/webapp/search/solr/VivoISFMemberFields.java @@ -0,0 +1,60 @@ +package edu.cornell.mannlib.vitro.webapp.search.solr; + +import java.util.ArrayList; +import java.util.List; + +import edu.cornell.mannlib.vitro.webapp.rdfservice.RDFServiceFactory; +import edu.cornell.mannlib.vitro.webapp.search.solr.documentBuilding.ContextNodeFields; + +/** + * This class will: + * add people's names to organization's Solr Documents. + * add organization names to people's Solr Documents. + * + * @author bdc34 + * + */ +public class VivoISFMemberFields extends ContextNodeFields { + private static String VIVONS = "http://vivoweb.org/ontology/core#"; + + protected static final String prefix = + " prefix rdf: \n" + + " prefix core: <" + VIVONS + "> \n" + + " prefix foaf: \n" + + " prefix rdfs: \n" + + " prefix obo: \n" ; + + public VivoISFMemberFields(RDFServiceFactory rdfServiceFactory){ + super(queries,rdfServiceFactory); + } + + /** + * Add people's names to organization's Solr Documents. + */ + private static String peopleForOrganization = + prefix + + "SELECT (str(?result) as ?result) WHERE {\n" + + " ?uri rdf:type foaf:Organization . \n" + + " ?role vivo:roleContrigutesTo ?uri . \n" + + " ?person obo:RO_0000053 ?role . \n" + + " ?person rdfs:label ?result .\n" + + "}"; + + /** + * add organization names to people's Solr Documents. + */ + private static String organizationForPeople = + prefix + + "SELECT (str(?result) as ?result) WHERE {\n" + + " ?uri rdf:type foaf:Person . \n" + + " ?uri obo:RO_0000053 / vivo:roleContrigutesTo / rdfs:label ?result . \n" + + "}"; + + + static List queries = new ArrayList(); + + static{ + queries.add( peopleForOrganization ); + queries.add( organizationForPeople ); + } +} diff --git a/test/edu/cornell/mannlib/vitro/webapp/search/solr/VIVO146_DataSet1.n3 b/test/edu/cornell/mannlib/vitro/webapp/search/solr/VIVO146_DataSet1.n3 new file mode 100644 index 00000000..5e65951f --- /dev/null +++ b/test/edu/cornell/mannlib/vitro/webapp/search/solr/VIVO146_DataSet1.n3 @@ -0,0 +1,6610 @@ +@prefix pvs: . +@prefix geo: . +@prefix scires: . +@prefix foaf: . +@prefix fabio: . +@prefix vlocal: . +@prefix dcterms: . +@prefix vitro: . +@prefix event: . +@prefix bibo: . +@prefix c4o: . +@prefix vitro-public: . +@prefix skos: . +@prefix vivo: . +@prefix dcelem: . +@prefix ero: . + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a vivo:FacultyPosition ; + + "Instructor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Catlos, Brian Aivars" . + + + a vivo:FacultyPosition ; + + "Lecturer" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "3" . + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Osborne, Myles Gregory" . + + + + "Dike, Steven" . + + + + "Weston, Timothy B" . + + + + "Gerber, Matthew Dean" . + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Kingsberg, Miriam L." . + + + a vivo:Department , foaf:Organization , , foaf:Agent , vivo:AcademicDepartment , ; + + "History" ; + vlocal:deptId "10238" ; + vivo:organizationForPosition + , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ; + vivo:subOrganizationWithin + ; + vivo:webpage . + + + + "Mann, Ralph E" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Fenn, Elizabeth Anne" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Medak-Saltzman, Danika Fawn" . + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Andrews, Thomas G" . + + + a vivo:FacultyAdministrativePosition ; + + "Assoc Chair" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Buffington, Robert Marshall" . + + + + "Paradis, David" . + + + + "Hanna, Martha" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Yonemoto, Marcia A" . + + + + "Babicz, Martin Charles" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Shiue, Carol Hua" . + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "3" . + + + + "Lim, Sungyun A." . + + + + "Maeda, Daryl" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Hunt, Peter" . + + + + "College of Arts & Sciences" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Mcgranahan, Carole" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Pittenger, Mark" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Byerly, Carol R" . + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Sutter, Paul Shriver" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a vivo:FacultyPosition ; + + "Instructor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Dauverd, Celine" . + + + + "Limerick, Patricia N" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "3" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Wei, William" . + + + a vivo:FacultyPosition ; + + "Lecturer" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Hammer, Paul E. J." . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a vivo:FacultyAdministrativePosition ; + + "Assoc Chair" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Gross, David L" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Gautam, Sanjay Kumar" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Carlos, Ann M" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Perez, Emma" . + + + + "Chambers, Lee Virginia" . + + + + "Shneer, David" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Young, Phoebe S. K." . + + + + "Chester, Lucy P" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Lester, Anne E" . + + + + "Kim, Kwangmin" . + + + + "Ferry, Robert J" . + + + + "Bruce, Scott" . + + + + "Kent, Susan K" . + + + + "Willis, John Matthew" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Sohi, Seema" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Anderson, Virginia D" . + + + + "Anderson, Fred W" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "3" . + + + + "Mukherjee, Mithi" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Zeiler, Thomas W" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a vivo:FacultyAdministrativePosition ; + + "Chair" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Lenski, Noel E" . + + + + "Jackson, John Philip, Jr." . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + +################## additional crawled LD ########################3 + + + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Kingsberg, Miriam L." . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Instructor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Paradis, David" . + + + + "History" . + + + + + "Area Studies (Arts/Humanities)" . + + + + "History" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Language and/or Literature, Medieval" . + + + + "Folk/Ethnic Studies" . + + + + "Jewish History" . + + + + "History of Science & Technology" . + + + a vivo:FacultyMember , foaf:Person , , foaf:Agent ; + + "Catlos, Brian Aivars" ; + vitro-public:mainImage + ; + vivo:educationalTraining + , , ; + vivo:email "Brian.Catlos@Colorado.EDU" ; + vivo:freetextKeyword + "ethno-religious identity, muslim-christian-jewish relations, medieval history, mediterranean studies, minority-majority relations, conflict and peace, cultural transmission, european history, iberia, jewish history, islamic history, religious ideology, political history, economic history, social history, archival studies" ; + vivo:geographicFocus + geo:Czech_Republic_the , geo:Italy , geo:Canada , geo:France , geo:Germany , geo:Spain , geo:Portugal , geo:Turkey , geo:United_Kingdom_of_Great_Britain_and_Northern_Ireland__the ; + vivo:hasResearchArea + , , , , , , , , , , , , , , , , , , , , , ; + vivo:personInPosition + , , ; + vivo:preferredTitle "Associate Professor" ; + vivo:researchOverview + "Dr. Catlos specializes in ethnic and religious identity and relations (e.g.: Muslim-Christian-Jewish relations) in the pre-Modern Mediterranean, with an emphasis on issues relating to conflict and accommodation and minority-majority relations in both the Christian and Islamic worlds. His work is strongly revisionist and challenges established paradigms of ethnic and religious conflict and cooperation. A particular field of specialization is medieval Iberia. He is a primarily a social and economic historian, and a historian of religion, although his methodology is strongly inter-disciplinary. He is a leading figure in the emerging field of Mediterranean Studies, both in terms of theorizing the Mediterranean as a historical paradigm and in organizing and directing research projects." ; + vivo:webpage ; + foaf:firstName "BRIAN" ; + foaf:lastName "CATLOS" . + + + + "History of Law" . + + + + "Military History" . + +geo:United_Kingdom_of_Great_Britain_and_Northern_Ireland__the + + "United Kingdom"^^ . + +geo:Turkey + + "Turkey"^^ . + + + + "Arts/Humanities/Cultural Activities" . + + + a vivo:FacultyAdministrativePosition ; + + "Assoc Chair" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "3" . + +geo:Italy + + "Italy"^^ . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Spanish Language/Literature" . + + + + "Latin Paleography" . + + + + "Italian History" . + + + + "Cultural History" . + + + + "Religious Studies" . + +geo:Portugal + + "Portugal"^^ . + + + + "Religious Studies" . + + + + "Medieval History" . + + + + "Historical Documents" . + + + + "History" . + +geo:Czech_Republic_the + + "Czech Republic"^^ . + + + + "Religious History" . + + + + "Iberian Studies" . + + + + "Economic History" . + +geo:Spain + + "Spain"^^ . + + + + "Arabic Language/Literature" . + +geo:Canada + + "Canada"^^ . + +geo:France + + "France"^^ . + +geo:Germany + + "Germany"^^ . + + + + "Social History" . + + + + "European History" . + + + + + "Babicz, Martin Charles" . + + + a vivo:FacultyPosition ; + + "Lecturer" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "3" . + + + + "Carlos, Ann M" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Willis, John Matthew" . + + + + "History" . + + + + + "Twentieth Century History" . + +geo:Kenya + + "Kenya"^^ . + +geo:Africa + + "Africa"^^ . + + + a vivo:FacultyMember , foaf:Person , foaf:Agent , ; + + "Osborne, Myles Gregory" ; + vitro-public:mainImage + ; + vivo:educationalTraining + , , , , ; + vivo:email "Myles.Osborne@Colorado.EDU" ; + vivo:geographicFocus + geo:Kenya , geo:Africa , geo:United_Kingdom_of_Great_Britain_and_Northern_Ireland__the ; + vivo:hasResearchArea + ; + vivo:personInPosition + ; + vivo:preferredTitle "Assistant Professor" ; + foaf:firstName "MYLES" ; + foaf:lastName "OSBORNE" . + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + +geo:United_Kingdom_of_Great_Britain_and_Northern_Ireland__the + + "United Kingdom"^^ . + + + + "History" . + + + + + "Honors RAP" . + + + + "Twentieth Century History" . + + + + "Ethnography" . + + + + "History" . + + + a vivo:FacultyPosition ; + + "Instructor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + a vivo:FacultyPosition ; + + "Instructor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a vivo:FacultyMember , foaf:Person , foaf:Agent , ; + + "Dike, Steven" ; + vitro-public:mainImage + ; + vivo:educationalTraining + , , , ; + vivo:email "steven.dike@Colorado.EDU" ; + vivo:freetextKeyword + "Modern American history, intellectual history, history of anthropology, history of poverty, culture of poverty, Puerto Rican history" ; + vivo:hasResearchArea + , , , , , ; + vivo:personInPosition + , ; + vivo:preferredTitle "Instructor" ; + vivo:researchOverview + "Dr. Dike is writing a book about Oscar Lewis, the anthropologist who coined the phrase 'culture of poverty,' and who was one of the leading American anthropologists of the 1950s and 1960s. The book covers the debates about the culture of poverty, Lewis's involvement with Puerto Rican nationalists, an analysis of Lewis's methods, and the renaissance of the culture of poverty in modern poverty discourse. His research interests include labor and working class history, intellectual history, the history of anthropology, and the history of Puerto Rico." ; + foaf:firstName "STEVEN" ; + foaf:lastName "DIKE" . + + + + "Anthropology" . + + + + "Social History" . + + + + "Intellectual History" . + + + + "History" . + + + + + "Area Studies (Arts/Humanities)" . + + + + "History" . + + + + "International Education" . + +geo:China + + "China"^^ . + + + + "East (Far East) Asia" . + + + + "Center for Asian Studies" . + + + + "Nationalism" . + + + + "Asia" . + + + + "Asian Religions" . + + + + "Politics of Education" . + + + + "History Education" . + +geo:Asia + + "Asia"^^ . + + + a vivo:FacultyAdministrativePosition ; + + "Assoc Faculty Director" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Cultural History" . + + + a foaf:Person , vivo:FacultyMember , foaf:Agent , ; + + "Weston, Timothy B" ; + vitro-public:mainImage + ; + vivo:educationalTraining + , , ; + vivo:email "timothy.b.weston@Colorado.EDU" ; + vivo:geographicFocus + geo:China , geo:Asia ; + vivo:hasResearchArea + , , , , , , , , , , , , , , , , , , , , , , , , ; + vivo:personInPosition + , , ; + vivo:preferredTitle "Associate Professor" ; + foaf:firstName "TIMOTHY" ; + foaf:lastName "WESTON" . + + + a vivo:FacultyAdministrativePosition ; + + "Faculty Director" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "3" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Urban History" . + + + + "History" . + + + + "Political History" . + + + + "Hong Kong" . + + + + "Humanities, General/Other" . + + + + "Tibet" . + + + + "China (People's Republic)" . + + + + "Non-Western History" . + + + + "Social Sciences--Humanistic Emphasis" . + + + + "Twentieth Century History" . + + + + "Social History" . + + + + "Taiwan" . + + + + "Intellectual History" . + + + + "Modern History" . + + + + "Chinese Language/Literature" . + + + + "Culture" . + + + + "Journalism" . + + + + + "History" . + +geo:France + + "France"^^ . + + + + "European History" . + + + a vivo:FacultyMember , foaf:Person , , foaf:Agent ; + + "Gerber, Matthew Dean" ; + vivo:educationalTraining + , , ; + vivo:email "Matthew.Gerber@Colorado.EDU" ; + vivo:freetextKeyword + "social history, cultural history, political history, legal history, early modern Europe, early modern France, bastardy, illegitimacy, violence, terror, colonialism, race" ; + vivo:geographicFocus + geo:France ; + vivo:hasResearchArea + , , , , ; + vivo:personInPosition + ; + vivo:preferredTitle "Associate Professor" ; + vivo:researchOverview + "Dr. Gerber's research is focused on the role of law in the social and political development of early modern Europe (1500-1789). His first book,'Bastards: Politics, Family, and Law in Early Modern France' (Oxford University Press, 2012), explores the changing legal condition and practical treatment of children born out of wedlock in France between 1555 and 1789. His second book project investigates the formation of early modern French colonial law and its tendency to disrupt metropolitan legal system in the second half of the eighteenth century. He is also researching the political uses of terror and the delegitimization of particular forms of violence in the early modern era." ; + foaf:firstName "MATTHEW" ; + foaf:lastName "GERBER" . + + + + "Social History" . + + + + "Modern History" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "History of Law" . + + + + "History" . + + + + + "Sohi, Seema" . + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "History" . + + + + + "History" . + +geo:Thailand + + "Thailand"^^ . + +geo:Myanmar + + "Myanmar"^^ . + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + +geo:China + + "China"^^ . + +geo:western_Europe + + "western Europe"^^ . + + + + "Non-Western History" . + +geo:Canada + + "Canada"^^ . + + + + "Twentieth Century History" . + +geo:Asia + + "Asia"^^ . + + + + "Social History" . + + + a vivo:FacultyMember , foaf:Person , foaf:Agent , ; + + "Kingsberg, Miriam L." ; + vivo:educationalTraining + , , ; + vivo:email "Miriam.Kingsberg@Colorado.EDU" ; + vivo:freetextKeyword + "history of modern Japan and East Asia" ; + vivo:geographicFocus + geo:Canada , geo:Thailand , geo:Myanmar , geo:China , geo:Asia , geo:western_Europe ; + vivo:hasResearchArea + , , , ; + vivo:personInPosition + ; + vivo:preferredTitle "Assistant Professor" ; + vivo:researchOverview + "Miriam Kingsberg's forthcoming book, 'Moral Nation: Modern Japan and Narcotics in Global History' (University of California Press, 2013), uses the case of Japan to argue that narcotics served as the basis of an evolving attempt to define political legitimacy in empires and nations in the late nineteenth and early twentieth centuries. Her new research examines the history of anthropology in transwar Japan." ; + foaf:firstName "MIRIAM" ; + foaf:lastName "KINGSBERG" . + + + + "History" . + + + + + "Integrative Physiology" . + + + + "Honors Program" . + + + + "Economics" . + + + a vivo:FacultyAdministrativePosition ; + + "Faculty Director" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "3" . + + + + "Ecology and Evolutionary Biology" . + + + + "Farrand RAP" . + + + + "Jewish Studies" . + + + + "Art and Art History" . + + + + "Physics" . + + + + "Carlos, Ann M" . + + + + "Center of the American West" . + + + a vivo:FacultyAdministrativePosition ; + + "Associate Dean" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Program for Writing and Rhetoric" . + + + + "Political Science" . + + + + "Geography" . + + + + "History" . + + + + "Communication" . + + + + "Miramontes Arts & Science Program (MASP)" . + + + a vivo:FacultyAdministrativePosition ; + + "Associate Dean" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Classics" . + + + + "Mathematics" . + + + + "Theatre and Dance" . + + + a vivo:FacultyPosition ; + + "Dean" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "LGBT Certificate Program" . + + + + "Linguistics" . + + + + "Muller-Sievers, Helmut" . + + + + "Sewall RAP" . + + + + "Chemistry and Biochemistry" . + + + + "Geological Sciences" . + + + + "Boonin, David Isaac" . + + + + "Film Studies" . + + + a vivo:FacultyAdministrativePosition ; + + "Faculty Director" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "British and Irish Studies" . + + + + "Psychology and Neuroscience" . + + + + "Spanish and Portuguese" . + + + + "Dufour, Darna L" . + + + + "Germanic and Slavic Languages and Literatures" . + + + + "Astrophysical and Planetary Sciences (APS)" . + + + + "Center for Astrophysics & Space Astronomy (CASA)" . + + + + "Atmospheric and Oceanic Sciences (ATOC)" . + + + + "Conference on World Affairs" . + + + + "Jackson, Michele H." . + + + + "Anthropology" . + + + + "Bradley, Adam Francis" . + + + + "International Affairs Program" . + + + + "French & Italian" . + + + + "Honors RAP" . + + + + "English" . + + + + "Kraus, Mary J" . + + + a foaf:Organization , foaf:Agent , , vivo:College , ; + + "College of Arts & Sciences" ; + vlocal:deptId "10153" ; + vivo:hasSubOrganization + , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ; + vivo:organizationForPosition + , , , , , , , ; + vivo:webpage . + + + + "Women and Gender Studies" . + + + a vivo:FacultyAdministrativePosition ; + + "Associate Dean" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + a vivo:FacultyPosition ; + + "Endowed/Named Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "4" . + + + + "Religious Studies" . + + + + "Leigh, Steven Robert" . + + + + "Applied Mathematics" . + + + + "Peace and Conflict Studies" . + + + + "Ethnic Studies" . + + + + "INVST Community Studies" . + + + + "Speech, Language & Hearing Science (SLHS)" . + + + + "Center for Integrated Plasma Studies (CIPS)" . + + + + "Molecular, Cellular & Developmental Biology (MCDB)" . + + + + "Asian Languages and Civilizations" . + + + + "Baker RAP" . + + + + "Humanities" . + + + + "Philosophy" . + + + + "Sociology" . + + + a vivo:FacultyAdministrativePosition ; + + "Associate Dean" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Environmental Studies Program" . + + + + + "American History" . + +geo:Australia + + "Australia"^^ . + + + + "Social History" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a vivo:FacultyMember , foaf:Person , foaf:Agent , ; + + "Mann, Ralph E" ; + vivo:educationalTraining + , , ; + vivo:email "Ralph.Mann@Colorado.EDU" ; + vivo:freetextKeyword + "nineteenth century American history, Appalachian, Civil War, Western mining communities" ; + vivo:geographicFocus + geo:Australia ; + vivo:hasResearchArea + , ; + vivo:personInPosition + ; + vivo:preferredTitle "Associate Professor" ; + vivo:researchOverview + "Dr. Mann's current research is focused on subsistence and Civil War in the Appalachian South. Issues central to this research are: gender and farming, hunting and animals, guerrilla warfare and neighborhoods, the coming of mining and timbering, and the rise of a Progressive leadership. Questions of historical memory in a subliterate Appalachian society are also relevant. He also begun a project on Appalachian hunters and folkloric images of animals." ; + foaf:firstName "RALPH" ; + foaf:lastName "MANN" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Pittenger, Mark" . + + + + "History" . + + + + + "Bioterrorism" . + + + + "Native Americans" . + + + a vivo:FacultyMember , foaf:Person , , foaf:Agent ; + + "Fenn, Elizabeth Anne" ; + vitro-public:mainImage + ; + vivo:educationalTraining + , , ; + vivo:email "Elizabeth.Fenn@Colorado.EDU" ; + vivo:freetextKeyword + "early American West, Native American history, colonial American history, history of the American Revolution, epidemic disease in American history, Mandan Indians, smallpox, environmental history" ; + vivo:hasResearchArea + , , , , , , ; + vivo:personInPosition + ; + vivo:preferredTitle "Associate Professor" ; + vivo:researchOverview + "Professor Fenn's field of study is the early American West, focusing on epidemic disease, Native American, and environmental history. Her aim is to develop a continent-wide analysis that incorporates Native Americans as well as African, British, Spanish, French, Dutch, and Russian colonizers into a narrative that reflects the demographic and geographic realities of the early contact era. Her 2001 book Pox Americana: The Great Smallpox Epidemic of 1775-82 (Hill and Wang), unearthed the devastating effects of a terrible smallpox epidemic that coursed across the North American continent during the years of the American Revolution. Her current book project, Encounters at the Heart of the World: A History of the Mandan People (Hill and Wang, forthcoming), analyzes the experience of North Dakota's Mandan Indians from 1100 to 1845." ; + vivo:webpage ; + foaf:firstName "ELIZABETH" ; + foaf:lastName "FENN" . + + + + "Epidemiology" . + + + + "Ethnohistory" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "History of Medicine" . + + + + "American History" . + + + + "Social History" . + + + + "History" . + + + + + "Yonemoto, Marcia A" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "History" . + + + + + "Native Americans" . + + + + "Ethnic Studies" . + + + + "History" . + + + + "Women's Studies" . + + + + "Ethnic Studies" . + + + a foaf:Person , vivo:FacultyMember , , foaf:Agent ; + + "Medak-Saltzman, Danika Fawn" ; + vivo:educationalTraining + , , ; + vivo:email "danika.medak-saltzman@Colorado.EDU" ; + vivo:freetextKeyword + "American Indian women, cultural studies, national memory, Indigenous histories, Indigenous feminisms, Comparative Ethnic Studies, Race and representation, Visual and material culture, Transnational movement of American colonial policies particularly in the case of Japan, Historical Silences, Postcolonial science fiction, Indigenous Futurisms in Native horror, sci-fi and fantasy narratives" ; + vivo:geographicFocus + geo:Canada ; + vivo:hasResearchArea + , , , , , , , , , , , ; + vivo:personInPosition + , ; + vivo:preferredTitle "Assistant Professor" ; + vivo:researchOverview + "Medak-Saltzman is an interdisciplinary comparative Ethnic Studies scholar. She takes race in general, and American Indian/Indigenous peoples historical experiences in particular, as her objects of study. Her research and teaching interests are focused on Native women, Indigenous histories and feminisms, visual and material culture, and the transnational movement of U.S. colonial policies particularly to Japan which is the subject of her current book project. Her second book project will examine how Native peoples are portrayed and are portraying themselves in horror, sci-fi and fantasy films. While her current manuscript and second book topic seem divergent, they are both focused on reevaluating representations of Native people and recognizing that both in the past and in the present Native peoples have managed to negotiate difficult situations and visualize/create futures even in spite of persistent colonial narratives that mandate Native disappearance." ; + vivo:webpage ; + foaf:firstName "DANIKA" ; + foaf:lastName "MEDAK-SALTZMAN" . + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Material Culture" . + + + + "Visual Arts" . + + + + "Social Sciences--Humanistic Emphasis" . + +geo:Canada + + "Canada"^^ . + + + + "Cinema/Video" . + + + + "Law and Social Change" . + + + + "Social Movements" . + + + + "Aboriginal Studies" . + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "American Studies" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Medak-Saltzman, Danika Fawn" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "History" . + + + + "Mann, Ralph E" . + + + + + "Anderson, Fred W" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Lim, Sungyun A." . + + + + "History" . + + + + a foaf:Person , vivo:FacultyMember , , foaf:Agent ; + + "Andrews, Thomas G" ; + vitro-public:mainImage + ; + vivo:educationalTraining + , , ; + vivo:email "Thomas.Andrews@Colorado.EDU" ; + vivo:freetextKeyword + "environmental history, history of the U.S. West, Native American history, history of human-animal interactions, labor history, history education, US social history in 19th and 20th century" ; + vivo:geographicFocus + geo:United_Kingdom_of_Great_Britain_and_Northern_Ireland__the ; + vivo:hasResearchArea + , , , , , ; + vivo:personInPosition + ; + vivo:preferredTitle "Associate Professor" ; + vivo:researchOverview + "My past work has focused on the social and environmental history of the Rocky Mountain West. My current work focuses on human interactions with non-human animals across a broad sweep of US history." ; + foaf:firstName "THOMAS" ; + foaf:lastName "ANDREWS" . + + + + "North American History" . + + + + "History Education" . + + + + "History of Science & Technology" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "American History" . + + + + "Fossil Fuels, Coal" . + + + + "Social History" . + +geo:United_Kingdom_of_Great_Britain_and_Northern_Ireland__the + + "United Kingdom"^^ . + + + + "History" . + + + + a vivo:FacultyAdministrativePosition ; + + "Assoc Chair" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Sutter, Paul Shriver" . + + + + "History" . + + + + + "Area Studies (Arts/Humanities)" . + +geo:Argentina + + "Argentina"^^ . + + + a vivo:FacultyAdministrativePosition ; + + "Faculty Director" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Non-Western History" . + + + + "Arts/Humanities/Cultural Activities" . + + + + "Twentieth Century History" . + + + + "North American History" . + + + + "Women and Gender Studies" . + +geo:South_America + + "South America"^^ . + +geo:northern_America + + "northern America"^^ . + + + + "Latin American Languages/Literature" . + + + + "Latin American History" . + + + a foaf:Person , vivo:FacultyMember , , foaf:Agent ; + + "Buffington, Robert Marshall" ; + vivo:educationalTraining + , , ; + vivo:email "Robert.Buffington@Colorado.EDU" ; + vivo:freetextKeyword + "history of modern mexico, crime and punishment, gender and sexuality, masculinities, us-mexico borderlands, migration" ; + vivo:geographicFocus + geo:South_America , geo:northern_America , geo:Argentina , geo:Mexico ; + vivo:hasResearchArea + , , , , , , , , , , , ; + vivo:personInPosition + , , ; + vivo:preferredTitle "Associate Professor" ; + vivo:researchOverview + "Dr. Buffington's research involves several distinct historical fields. He has done extensive work on the history of crime and punishment in modern Mexico and Latin America with a focus on elite attitudes towards the criminality of different social groups. A nearly-finished book project examines changing notions of masculinity for working-class men in early twentieth-century Mexico City. He is also co-editing a global history of sexuality which will include a co-written chapter on the recent history of sex trafficking. He also works on the history of the U.S.-Mexico borderlands and Mexican migration to the United States." ; + vivo:webpage ; + foaf:firstName "ROBERT" ; + foaf:lastName "BUFFINGTON" . + + + + "Cultural History" . + + + + "Social History" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "3" . + +geo:Mexico + + "Mexico"^^ . + + + + "Urban History" . + + + + "Modern History" . + + + + "Intellectual History" . + + + + "History" . + + +geo:Italy + + "Italy"^^ . + + + a vivo:FacultyPosition ; + + "Instructor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a foaf:Person , vivo:FacultyMember , foaf:Agent , ; + + "Paradis, David" ; + vivo:educationalTraining + , , , ; + vivo:email "paradis@Colorado.EDU" ; + vivo:geographicFocus + geo:Italy ; + vivo:hasResearchArea + ; + vivo:personInPosition + ; + vivo:preferredTitle "Instructor" ; + foaf:firstName "DAVID" ; + foaf:lastName "PARADIS" . + + + + "Medieval History" . + + + + "History" . + + + + + "France" . + + + + "History" . + +geo:United_Kingdom_of_Great_Britain_and_Northern_Ireland__the + + "United Kingdom"^^ . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + +geo:Canada + + "Canada"^^ . + + + + "Twentieth Century History" . + +geo:France + + "France"^^ . + + + + "Academic Affairs" . + + + + "Cultural History" . + + + a vivo:FacultyAdministrativePosition ; + + "Faculty Director" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "European History" . + + + a foaf:Person , vivo:FacultyMember , foaf:Agent , ; + + "Hanna, Martha" ; + vitro-public:mainImage + ; + vivo:educationalTraining + , , ; + vivo:email "martha.hanna@Colorado.EDU" ; + vivo:freetextKeyword + "social and cultural history of the first world war, history of marriage and family life in wartime" ; + vivo:geographicFocus + geo:Canada , geo:France , geo:United_Kingdom_of_Great_Britain_and_Northern_Ireland__the ; + vivo:hasResearchArea + , , , , ; + vivo:personInPosition + , ; + vivo:preferredTitle "Professor" ; + vivo:researchOverview + "Dr. Hanna's research analyzes the effects of the First World War on marriage and family life, from a transnational perspective. She is currently undertaking a book-length study of how military mobilization affected the marriages and family-life of soldiers in Canada, the United Kingdom, and France between 1914 and 1918." ; + foaf:firstName "MARTHA" ; + foaf:lastName "HANNA" . + + + + "History" . + + + + + "Shneer, David" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "History" . + + + + a vivo:FacultyMember , foaf:Person , foaf:Agent , ; + + "Yonemoto, Marcia A" ; + vivo:educationalTraining + , , ; + vivo:email "Yonemoto@Colorado.EDU" ; + vivo:freetextKeyword + "Cultural and social history of Japan in the early modern period (c. 1590-1868)" ; + vivo:geographicFocus + geo:Japan , geo:Asia ; + vivo:hasResearchArea + , , , , , , , , , , , , ; + vivo:personInPosition + ; + vivo:preferredTitle "Associate Professor" ; + foaf:firstName "MARCIA" ; + foaf:lastName "YONEMOTO" . + + + + "Area Studies (Arts/Humanities)" . + + + + "Japan" . + + + + "History" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Japanese Language/Literature" . + + + + "Non-Western Art" . + + + + "East (Far East) Asia" . + + + + "Cartography" . + + + + "Non-Western History" . + + + + "Literary Criticism" . + + + + "Art Criticism" . + +geo:Japan + + "Japan"^^ . + + + + "Geography" . + +geo:Asia + + "Asia"^^ . + + + + "Fiction" . + + + + "Culture" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Instructor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + a vivo:FacultyPosition ; + + "Instructor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "3" . + + + a foaf:Person , vivo:FacultyMember , , foaf:Agent ; + + "Babicz, Martin Charles" ; + vivo:email "Martin.Babicz@Colorado.EDU" ; + vivo:freetextKeyword + "Colonial governments during the American Revolution, Baseball in America" ; + vivo:personInPosition + , , ; + vivo:preferredTitle "Instructor" ; + vivo:researchOverview + "I am researching the connection between self-governing charter colonies in the 1760s and 1770s and the American Revolution. I am also researching the connection between baseball and American life." ; + foaf:firstName "MARTIN" ; + foaf:lastName "BABICZ" . + + + + "Libby RAP" . + + + + "Communications RAP" . + + + a vivo:FacultyPosition ; + + "Lecturer" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Sutter, Paul Shriver" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Perez, Emma" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Economics" . + +geo:Netherlands_the + + "Netherlands"^^ . + +geo:China + + "China"^^ . + + + a vivo:FacultyMember , foaf:Person , foaf:Agent , ; + + "Shiue, Carol Hua" ; + vitro-public:mainImage + ; + vivo:educationalTraining + , ; + vivo:email "shiue@Colorado.EDU" ; + vivo:freetextKeyword + "Economic History of China, History of Development and Economic Growth, Domestic and International Trade History of China, Economic History of Europe,Comparative Economic History" ; + vivo:geographicFocus + geo:Netherlands_the , geo:China , geo:Asia , geo:Germany , geo:Singapore , geo:Europe ; + vivo:hasResearchArea + ; + vivo:personInPosition + , ; + vivo:preferredTitle "Associate Professor" ; + vivo:researchOverview + "Professor Shiue's research interests are in the economic history of market development and trade in China, the political economy of famine relief, and long-run comparisons of living standards and institutional differences. Another focus of her research is on migration, kinship organization, and social mobility. She has recently published articles on the economic history of international trade in China in the 19th century and the legacy of foreign imperialism in China." ; + vivo:webpage ; + foaf:firstName "CAROL" ; + foaf:lastName "SHIUE" . + +geo:Asia + + "Asia"^^ . + +geo:Germany + + "Germany"^^ . + +geo:Singapore + + "Singapore"^^ . + +geo:Europe + + "Europe"^^ . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Economics" . + + + + "History" . + + + + + "Osborne, Myles Gregory" . + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "History" . + + + + + "Jackson, John Philip, Jr." . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "History" . + + + + + "Lenski, Noel E" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "3" . + + + + "History" . + + + + + "Area Studies (Arts/Humanities)" . + + + + "Japan" . + + + + "History" . + + + + "Korea" . + + + a foaf:Person , vivo:FacultyMember , , foaf:Agent ; + + "Lim, Sungyun A." ; + vivo:educationalTraining + , , , ; + vivo:email "Sungyun.Lim@Colorado.EDU" ; + vivo:freetextKeyword + "history of colonial Korea, Japanese colonial legal policy, history of women and family in Korea and Japan, law and gender" ; + vivo:geographicFocus + geo:Japan , geo:Asia , geo:Republic_of_Korea__the ; + vivo:hasResearchArea + , , , , , , , , , , ; + vivo:personInPosition + ; + vivo:preferredTitle "Assistant Professor" ; + foaf:firstName "SUNGYUN" ; + foaf:lastName "LIM" . + + + + "International and Comparative Law" . + + + + "Women's History" . + + + + "History of Law" . + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Twentieth Century History" . + + + + "Asia" . + + + + "Law and Society" . + +geo:Japan + + "Japan"^^ . + +geo:Asia + + "Asia"^^ . + +geo:Republic_of_Korea__the + + "South Korea"^^ . + + + + "Modern History" . + + + + "History" . + + + + + "Area Studies (Arts/Humanities)" . + + + + "History" . + + + + "Folk/Ethnic Studies" . + + + + "Ethnic Studies" . + + + + "American History" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "3" . + + + a foaf:Person , vivo:FacultyMember , , foaf:Agent ; + + "Maeda, Daryl" ; + vivo:educationalTraining + , , , ; + vivo:email "daryl.maeda@Colorado.EDU" ; + vivo:freetextKeyword + "Asian American studies, Asian American history, comparative ethnic studies, social movements, the 1960s" ; + vivo:hasResearchArea + , , , , , , ; + vivo:personInPosition + , , ; + vivo:preferredTitle "Associate Professor" ; + vivo:researchOverview + "Dr. Maeda's research focuses on social movements by people of color of the 1960s and 1970s." ; + vivo:webpage ; + foaf:firstName "DARYL" ; + foaf:lastName "MAEDA" . + + + + "Twentieth Century History" . + + + + "North American History" . + + + + "Cultural History" . + + + a vivo:FacultyAdministrativePosition ; + + "Chair" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Hammer, Paul E. J." . + + + + "History" . + + + + + "Ancient/Classical History" . + + + + "Political History" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Classics" . + +geo:Ireland + + "Ireland"^^ . + + + + "History of Law" . + +geo:United_Kingdom_of_Great_Britain_and_Northern_Ireland__the + + "United Kingdom"^^ . + + + + "Military History" . + + + a foaf:Person , vivo:FacultyMember , foaf:Agent , ; + + "Hunt, Peter" ; + vivo:educationalTraining + , , ; + vivo:email "peter.hunt@Colorado.EDU" ; + vivo:geographicFocus + geo:Ireland , geo:Germany , geo:Australia , geo:United_Kingdom_of_Great_Britain_and_Northern_Ireland__the ; + vivo:hasResearchArea + , , , , , ; + vivo:personInPosition + , ; + vivo:preferredTitle "Professor" ; + vivo:researchOverview + "I study Greek history. My areas of specialization are foreign policy thinking, warfare, and slavery in the classical period." ; + foaf:firstName "PETER" ; + foaf:lastName "HUNT" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + +geo:Germany + + "Germany"^^ . + + + + "Demography" . + + + + "Social History" . + +geo:Australia + + "Australia"^^ . + + + + "History" . + + + + + "Integrative Physiology" . + + + + "Honors Program" . + + + + "Economics" . + + + a vivo:FacultyAdministrativePosition ; + + "Faculty Director" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "3" . + + + + "Ecology and Evolutionary Biology" . + + + + "Farrand RAP" . + + + + "Jewish Studies" . + + + + "Art and Art History" . + + + + "Physics" . + + + + "Carlos, Ann M" . + + + + "Center of the American West" . + + + a vivo:FacultyAdministrativePosition ; + + "Associate Dean" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Program for Writing and Rhetoric" . + + + + "Political Science" . + + + + "Geography" . + + + + "History" . + + + + "Communication" . + + + + "Miramontes Arts & Science Program (MASP)" . + + + a vivo:FacultyAdministrativePosition ; + + "Associate Dean" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Classics" . + + + + "Mathematics" . + + + + "Theatre and Dance" . + + + a vivo:FacultyPosition ; + + "Dean" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "LGBT Certificate Program" . + + + + "Linguistics" . + + + + "Muller-Sievers, Helmut" . + + + + "Sewall RAP" . + + + + "Chemistry and Biochemistry" . + + + + "Geological Sciences" . + + + + "Boonin, David Isaac" . + + + + "Film Studies" . + + + a vivo:FacultyAdministrativePosition ; + + "Faculty Director" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "British and Irish Studies" . + + + + "Psychology and Neuroscience" . + + + + "Spanish and Portuguese" . + + + + "Dufour, Darna L" . + + + + "Germanic and Slavic Languages and Literatures" . + + + + "Astrophysical and Planetary Sciences (APS)" . + + + + "Center for Astrophysics & Space Astronomy (CASA)" . + + + + "Atmospheric and Oceanic Sciences (ATOC)" . + + + + "Conference on World Affairs" . + + + + "Jackson, Michele H." . + + + + "Anthropology" . + + + + "Bradley, Adam Francis" . + + + + "International Affairs Program" . + + + + "French & Italian" . + + + + "Honors RAP" . + + + + "English" . + + + + "Kraus, Mary J" . + + + a foaf:Organization , foaf:Agent , , vivo:College , ; + + "College of Arts & Sciences" ; + vlocal:deptId "10153" ; + vivo:hasSubOrganization + , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ; + vivo:organizationForPosition + , , , , , , , ; + vivo:webpage . + + + + "Women and Gender Studies" . + + + a vivo:FacultyAdministrativePosition ; + + "Associate Dean" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + a vivo:FacultyPosition ; + + "Endowed/Named Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "4" . + + + + "Religious Studies" . + + + + "Leigh, Steven Robert" . + + + + "Applied Mathematics" . + + + + "Peace and Conflict Studies" . + + + + "Ethnic Studies" . + + + + "INVST Community Studies" . + + + + "Speech, Language & Hearing Science (SLHS)" . + + + + "Center for Integrated Plasma Studies (CIPS)" . + + + + "Molecular, Cellular & Developmental Biology (MCDB)" . + + + + "Asian Languages and Civilizations" . + + + + "Baker RAP" . + + + + "Humanities" . + + + + "Philosophy" . + + + + "Sociology" . + + + a vivo:FacultyAdministrativePosition ; + + "Associate Dean" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Environmental Studies Program" . + + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Young, Phoebe S. K." . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Refugees" . + + + + "History" . + +geo:Netherlands_the + + "Netherlands"^^ . + + + + "Tibet" . + + + + "Anthropology" . + +geo:Canada + + "Canada"^^ . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a vivo:FacultyMember , foaf:Person , , foaf:Agent ; + + "Mcgranahan, Carole" ; + vitro-public:mainImage + ; + vivo:educationalTraining + , , ; + vivo:email "carole.mcgranahan@Colorado.EDU" ; + vivo:freetextKeyword + "cultural anthropology, history, Tibet, Himalayas, history and memory, empire and colonialism, feminist studies, political anthropology, refugees and citizenship, memories of war, US empire" ; + vivo:geographicFocus + geo:Canada , geo:Netherlands_the , geo:Nepal , geo:India ; + vivo:hasResearchArea + , , , ; + vivo:personInPosition + , ; + vivo:preferredTitle "Associate Professor" ; + vivo:researchOverview + "I am a cultural anthropologist and historian specializing in contemporary Tibet. My research focuses on issues of colonialism and empire, history and memory, power and politics, refugees and citizenship, nationalism, senses of belonging, gender, war, and anthropology as theoretical storytelling. Since 1994, I have conducted research in Tibetan refugee communities in India and Nepal on the history and politics of the guerilla army Chushi Gangdrug, culminating in my 2010 book Arrested Histories: Tibet, the CIA, and Histories of a Forgotten War. Thinking of 20th-21st century Tibetan histories and experiences as imperial in a global sense is a key part of my work in relation to the CIA, British India, and the People's Republic of China. My work on Tibet as out-of-bounds empire can be found in my co-edited book Imperial Formations. Currently, I am in the midst of launching a new research project on citizenship with Tibetans in New York City, Toronto, India, and Nepal." ; + vivo:webpage ; + foaf:firstName "CAROLE" ; + foaf:lastName "MCGRANAHAN" . + +geo:Nepal + + "Nepal"^^ . + +geo:India + + "India"^^ . + + + + "History" . + + + + "Cultural/Social Anthropology" . + + + + + "Andrews, Thomas G" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Cultural History" . + + + + "American History" . + + + a foaf:Person , vivo:FacultyMember , foaf:Agent , ; + + "Pittenger, Mark" ; + vivo:educationalTraining + , , , ; + vivo:email "Mark.Pittenger@Colorado.EDU" ; + vivo:freetextKeyword + "History of American radicalism, evolutionary social thought, ideas about poverty and class, liberal religious thought and social activism" ; + vivo:hasResearchArea + , , ; + vivo:personInPosition + ; + vivo:preferredTitle "Professor" ; + vivo:researchOverview + "Professor Pittenger has published books on the impact of the Darwinian revolution on American socialist thought and political practice, and on undercover investigations of American poverty and labor in the nineteenth and twentieth centuries. He is currently researching connections between Unitarian theological and social thought and social activism in the late nineteenth and early twentieth centuries." ; + vivo:webpage ; + foaf:firstName "MARK" ; + foaf:lastName "PITTENGER" . + + + + "Intellectual History" . + + + + "History" . + + + + + "Anderson, Virginia D" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Lester, Anne E" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Wei, William" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Lecturer" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a foaf:Person , vivo:FacultyMember , , foaf:Agent ; + + "Byerly, Carol R" ; + vivo:email "Carol.Byerly@Colorado.EDU" ; + vivo:hasResearchArea + , , , ; + vivo:personInPosition + ; + vivo:preferredTitle "Lecturer" ; + foaf:firstName "CAROL" ; + foaf:lastName "BYERLY" . + + + + "History of Medicine" . + + + + "American History" . + + + + "Social History" . + + + + "Military History" . + + + + "History" . + + + + + "Kim, Kwangmin" . + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "History" . + + + + + "History" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "History of Science & Technology" . + + + + "American History" . + + + a vivo:FacultyMember , foaf:Person , foaf:Agent , ; + + "Sutter, Paul Shriver" ; + vitro-public:mainImage + ; + vivo:educationalTraining + , ; + vivo:email "paul.sutter@Colorado.EDU" ; + vivo:freetextKeyword + "environmental history" ; + vivo:geographicFocus + geo:Canada , geo:France , geo:Germany ; + vivo:hasResearchArea + , , , , , ; + vivo:personInPosition + , ; + vivo:preferredTitle "Associate Professor" ; + vivo:researchOverview + "Paul Sutter is an environmental historian whose research has focused on the American wilderness movement, southern environmental history, U.S. imperial environmental history, and other topics. He is currently working on two book projects. The first, tentatively titled Pulling the Teeth of the Tropics: Environment, Disease, Race, and the U.S. Sanitary Program in Panama, 1904-1914, interprets American expansion and imperial public health through the lens of environmental history. The second, tentatively titled Let Us Now Praise Famous Gullies: Georgias Little Grand Canyon and the Soils of the South, examines the history of soil erosion and conservation in the U.S. South through the unlikely history of Providence Canyon State Park, which preserves a network of spectacular erosion gullies." ; + vivo:webpage ; + foaf:firstName "PAUL" ; + foaf:lastName "SUTTER" . + + + + "Agricultural History" . + +geo:Canada + + "Canada"^^ . + + + a vivo:FacultyAdministrativePosition ; + + "Assoc Chair" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + +geo:France + + "France"^^ . + +geo:Germany + + "Germany"^^ . + + + + "History of Medicine" . + + + + "Modern History" . + + + + "History" . + + + + + "Gerber, Matthew Dean" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Instructor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Dike, Steven" . + + + + "History" . + + + + + "Religious History" . + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Iberian Studies" . + + + + "Economic History" . + + + + "Renaissance History" . + + + + "Renaissance Studies" . + +geo:Turkey + + "Turkey"^^ . + + + + "Non-Western History" . + + + + "Italian History" . + + + + "Cultural History" . + + + a vivo:FacultyMember , foaf:Person , foaf:Agent , ; + + "Dauverd, Celine" ; + vivo:educationalTraining + , , , ; + vivo:email "Celine.Dauverd@Colorado.EDU" ; + vivo:freetextKeyword + "Merchants and empires in early modern Europe and the Mediterranean; Italian merchants; The Habsburg crown; Economic and cultural implications of migration in Renaissance Italy, Cross-cultural relations between Muslims and Christians in XV century Turkey; Spanish religious culture in early modern times" ; + vivo:geographicFocus + geo:Europe , geo:Turkey ; + vivo:hasResearchArea + , , , , , , , , , , , , ; + vivo:personInPosition + ; + vivo:preferredTitle "Assistant Professor" ; + vivo:researchOverview + "Dauverd's work focuses on the intersection between imperialism, migration, religious culture, and trade in the early modern Mediterranean. Four historical processes dominate her work: the establishment of economic and cultural linkages between Italian traders and the Spanish crown; the insertion of merchants into the socio-cultural landscape of southern Italy, the predominant role of religion in politics and economics, and the function of southern Italy as one of the nodes of both Spanish imperialism and Italian commercial hegemony. Dauverd's other work focuses on Spanish spiritual culture in southern italy during the Renaissance, assessing to what degree rituals, processions, and the representation of the Eucharist assisted Spain in its articulation of power." ; + foaf:firstName "CELINE" ; + foaf:lastName "DAUVERD" . + + + + "Social History" . + + + + "European History" . + + + + "Urban History" . + +geo:Europe + + "Europe"^^ . + + + + "Intellectual History" . + + + + "Medieval History" . + + + + "History" . + + + + + "Deserts and Arid Zones" . + + + + "United States" . + + + + "Folk/Ethnic Studies" . + + + + "Environmental Studies" . + + + + "USA, Midwest" . + + + + "American History" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "USA, Northwest" . + + + + "USA, Southwest" . + + + a vivo:FacultyAdministrativePosition ; + + "Faculty Director" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Center of the American West" . + + + a vivo:FacultyMember , foaf:Person , , foaf:Agent ; + + "Limerick, Patricia N" ; + vitro-public:mainImage + ; + vivo:educationalTraining + , , , ; + vivo:email "patricia.limerick@Colorado.EDU" ; + vivo:hasResearchArea + , , , , , , , , ; + vivo:personInPosition + , ; + vivo:preferredTitle "Professor" ; + vivo:webpage ; + foaf:firstName "PATRICIA" ; + foaf:lastName "LIMERICK" . + + + + "North America" . + + + + "History" . + + + + + "Buffington, Robert Marshall" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "3" . + + + + "History" . + + + + + "Zeiler, Thomas W" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "History" . + + + + + "Area Studies (Arts/Humanities)" . + + + + "Hong Kong" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "History" . + +geo:China + + "China"^^ . + + + + "Folk/Ethnic Studies" . + + + + "China (People's Republic)" . + + + + "East (Far East) Asia" . + + + + "Arts/Humanities/Cultural Activities" . + + + + "Asia" . + +geo:Asia + + "Asia"^^ . + + + + "Social History" . + + + + "International/Geographical Regions" . + + + + "Taiwan" . + + + + "Modern History" . + + + + "Chinese Language/Literature" . + + + a foaf:Person , vivo:FacultyMember , foaf:Agent , ; + + "Wei, William" ; + vitro-public:mainImage + ; + vivo:educationalTraining + , , ; + vivo:email "william.wei@Colorado.EDU" ; + vivo:freetextKeyword + "Modern Chinese history, Asian American history, revolution/counterrevolution, and social movements." ; + vivo:geographicFocus + geo:China , geo:Asia ; + vivo:hasResearchArea + , , , , , , , , , , , , ; + vivo:personInPosition + ; + vivo:preferredTitle "Professor" ; + vivo:researchOverview + "Dr. William Wei's current research in on the history and culture of Asians in Colorado since the 19th century. Among other things, his study will challenge the various myths about Asians that have been used to justify their victimization in and exclusion from America." ; + foaf:firstName "WILLIAM" ; + foaf:lastName "WEI" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Lecturer" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Byerly, Carol R" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a vivo:FacultyMember , foaf:Person , foaf:Agent , ; + + "Hammer, Paul E. J." ; + vivo:educationalTraining + , , ; + vivo:email "Paul.Hammer@Colorado.EDU" ; + vivo:freetextKeyword + "Early modern British history, Tudor history" ; + vivo:geographicFocus + geo:Europe , geo:United_Kingdom_of_Great_Britain_and_Northern_Ireland__the ; + vivo:hasResearchArea + , ; + vivo:personInPosition + ; + vivo:preferredTitle "Professor" ; + vivo:researchOverview + "Dr Hammer's work focuses on Tudor England and especially high politics, military matters and elite political culture. He is currently completing a book on the political struggle which occurred in the closing years of the reign of Elizabeth I and resulted in the so-called Essex Rising of 8 Feb. 1601 and the subsequent trial and execution of the earl of Essex and several of his associates. This work is characterised by detailed use of an unprecedented range of original manuscript materials." ; + vivo:webpage ; + foaf:firstName "PAUL" ; + foaf:lastName "HAMMER" . + + + + "British History" . + +geo:Europe + + "Europe"^^ . + + + + "Military History" . + +geo:United_Kingdom_of_Great_Britain_and_Northern_Ireland__the + + "United Kingdom"^^ . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Catlos, Brian Aivars" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Dauverd, Celine" . + + + + "History" . + + + + + "Chambers, Lee Virginia" . + + + a vivo:FacultyAdministrativePosition ; + + "Assoc Chair" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "History" . + + + + + "Twentieth Century History" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Cultural History" . + + + + "European History" . + + + + "Intellectual History" . + + + a foaf:Person , vivo:FacultyMember , foaf:Agent , ; + + "Gross, David L" ; + vivo:educationalTraining + , , , ; + vivo:email "david.l.gross@Colorado.EDU" ; + vivo:freetextKeyword + "european intellectual history, history of europe in the l9th and 20th centuries" ; + vivo:hasResearchArea + , , , , ; + vivo:personInPosition + ; + vivo:preferredTitle "Professor" ; + vivo:researchOverview + "Professor Gross's current research focuses on the religious critique of culture in the 20th century. He is interested in the particular ways in which a religious critique of culture differs from various secular forms of cultural critique (e.g., liberal, Marxist, etc.). Of special concern is what the religious critique has to say about the values embedded in contemporary popular or consumer culture." ; + vivo:webpage ; + foaf:firstName "DAVID" ; + foaf:lastName "GROSS" . + + + + "Western Civilization" . + + + + "History" . + + + + + "Hanna, Martha" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "History" . + + + + + "Shiue, Carol Hua" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "History" . + + + + + "Ancient/Classical History" . + + + + "Religious History" . + + + + "History" . + + + + "Religious Literature" . + + + + "Non-Western History" . + + + a foaf:Person , vivo:FacultyMember , , foaf:Agent ; + + "Gautam, Sanjay Kumar" ; + vivo:educationalTraining + , , , ; + vivo:email "Sanjay.Gautam@Colorado.EDU" ; + vivo:hasResearchArea + , , , , , , , , , ; + vivo:personInPosition + ; + vivo:preferredTitle "Assistant Professor" ; + foaf:firstName "SANJAY" ; + foaf:lastName "GAUTAM" . + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Literary History" . + + + + "Cultural History" . + + + + "India" . + + + + "Intellectual History" . + + + + "Medieval History" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Chambers, Lee Virginia" . + + + + "History" . + + + + + "Native Americans" . + + + + "Economics" . + + + + "Ethnohistory" . + + + + "Canadian Studies" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + +geo:Canada + + "Canada"^^ . + + + + "Behavioral/Social Sciences" . + + + + "College of Arts & Sciences" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "3" . + + + a vivo:FacultyMember , foaf:Person , , foaf:Agent ; + + "Carlos, Ann M" ; + vitro-public:mainImage + ; + vivo:educationalTraining + , , ; + vivo:email "ann.carlos@Colorado.EDU" ; + vivo:freetextKeyword + "Development of early capital markets, bankruptcy in early modern england, effects of commercial fur trade on native peoples in eighteenth century Canada" ; + vivo:geographicFocus + geo:Canada , geo:Japan , geo:Australia , geo:Europe ; + vivo:hasResearchArea + , , , , , ; + vivo:personInPosition + , , ; + vivo:preferredTitle "Professor" ; + vivo:researchOverview + "Dr. Carlos' research is focused on aspects of the development of financial markets in early modern England. She focuses in particular on early stock market development and on the ways in which participants used that market. A particular focus of this research is on the depth and breadth of market activity especially for those considered outsiders, such as women and jews. Dr. Carlos also works on interactions between Europeans and native peoples in Canada during the first century of a commercial trade. Her work examines native's as consumers of European products, the role of depletion and the impact of property rights on how native peoples pursued the trade." ; + foaf:firstName "ANN" ; + foaf:lastName "CARLOS" . + + + + "International Economics" . + + + + "Finance" . + +geo:Japan + + "Japan"^^ . + + + a vivo:FacultyAdministrativePosition ; + + "Associate Dean" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + +geo:Australia + + "Australia"^^ . + +geo:Europe + + "Europe"^^ . + + + + "History" . + + + + + "Chester, Lucy P" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "History" . + + + + + "Area Studies (Arts/Humanities)" . + + + + "History" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "United States" . + + + + "Folk/Ethnic Studies" . + + + + "American History" . + + + + "Mexico" . + + + + "Cultural History" . + + + + "Oral History" . + + + a vivo:FacultyMember , foaf:Person , , foaf:Agent ; + + "Perez, Emma" ; + vivo:educationalTraining + , , ; + vivo:email "Emma.Perez@Colorado.EDU" ; + vivo:freetextKeyword + "Chicana/o history, queer theory, feminist theory, creative writing--fiction, decolonial knowledge and theory, postcolonial studies, US-Mexico history, race and sexuality studies" ; + vivo:geographicFocus + geo:northern_Europe , geo:Spain ; + vivo:hasResearchArea + , , , , , , , , , , , , , , , , , , , , ; + vivo:personInPosition + , ; + vivo:preferredTitle "Professor" ; + vivo:researchOverview + "Dr. Prez's research is an interdisciplinary study of race and sexuality through history, theory and fiction. She continues to publish essays grounded in feminist and queer theory. She is also conducting research for a speculative novel that foregrounds immigration and border crossing." ; + vivo:webpage ; + foaf:firstName "EMMA" ; + foaf:lastName "PEREZ" . + + + + "Historical Documents" . + + + + "History" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + +geo:northern_Europe + + "northern Europe"^^ . + + + + "Ethnic Studies" . + + + + "Minorities and Disadvantaged" . + + + + "Ethnic Studies" . + +geo:Spain + + "Spain"^^ . + + + + "Cross-Cultural Studies" . + + + + "Criticism" . + + + + "Creative Writing" . + + + + "Twentieth Century History" . + + + + "Pre-Columbian Studies" . + + + + "Racism/Race Relations" . + + + + "Social History" . + + + + "Cultural Diversity" . + + + + "Culture" . + + + + "Fiction" . + + + + + "Women's Studies" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Cultural History" . + + + + "American History" . + + + + "Social History" . + + + a vivo:FacultyMember , foaf:Person , foaf:Agent , ; + + "Chambers, Lee Virginia" ; + vivo:educationalTraining + , , ; + vivo:email "lee.chambers@colorado.edu" ; + vivo:freetextKeyword + "Social history of the family, Cultural ideals of femininity and masculinity, women's public activism, and American history from 1790 to 1860" ; + vivo:hasResearchArea + , , , ; + vivo:personInPosition + , ; + vivo:preferredTitle "Associate Professor" ; + vivo:researchOverview + "Dr. Chamber's research interests cover three temporal periods and three topical areas: American women's history (singlehood, siblicity, and social activism) from 1790-1860; the workings of gender and the family in the Early Republic and Antebellum Periods (U.S. 1780-1845) and Cold War (1947-1974). A book manuscript on sibling relations and anti-slavery politics among the Westons of Weymouth, Massachusetts is under consideration for publication at a major university press. A second book manuscript on the cultural construction of political womanhood in antebellum America with a focus on Boston abolitionist Maria Weston Chapman (1806-1885). Research continues on the family and community life of Los Alamos, N.M. during the Cold War, 1947-1984." ; + vivo:webpage ; + foaf:firstName "LEE" ; + foaf:lastName "CHAMBERS" . + + + a vivo:FacultyAdministrativePosition ; + + "Assoc Chair" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "History" . + + + + a vivo:FacultyAdministrativePosition ; + + "Faculty Director" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "3" . + +geo:Netherlands_the + + "Netherlands"^^ . + + + a vivo:FacultyPosition ; + + "Endowed Chair" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "4" . + + + + "Jewish History" . + +geo:Argentina + + "Argentina"^^ . + + + a foaf:Person , vivo:FacultyMember , foaf:Agent , ; + + "Shneer, David" ; + vitro-public:mainImage + ; + vivo:educationalTraining + , , ; + vivo:email "david.shneer@Colorado.EDU" ; + vivo:freetextKeyword + "20TH Century European History, Jewish History, Contemporary Jewish Society" ; + vivo:geographicFocus + geo:Canada , geo:Sweden , geo:Netherlands_the , geo:Germany , geo:Argentina , geo:Russian_Federation__the , geo:Israel , geo:United_Kingdom_of_Great_Britain_and_Northern_Ireland__the ; + vivo:hasResearchArea + , , , , ; + vivo:personInPosition + , , , ; + vivo:preferredTitle "Professor and Singer Chair in Jewish History" ; + foaf:firstName "DAVID" ; + foaf:lastName "SHNEER" . + + + + "Yiddish Language/Literature" . + +geo:United_Kingdom_of_Great_Britain_and_Northern_Ireland__the + + "United Kingdom"^^ . + + + + "Jewish Studies" . + +geo:Canada + + "Canada"^^ . + +geo:Sweden + + "Sweden"^^ . + + + + "Twentieth Century History" . + + + + "Russian History" . + +geo:Germany + + "Germany"^^ . + +geo:Russian_Federation__the + + "Russian Federation"^^ . + +geo:Israel + + "Israel"^^ . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Photography" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Limerick, Patricia N" . + + + + "History" . + + + + + "Hunt, Peter" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "History" . + + + + + "Classroom Instruction" . + + + + "Honors Program" . + + + + "History" . + + + + "Educational/Instructional Technology" . + + + + "Environmental Studies" . + + + + "American History" . + + + + "USA, Southwest" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Twentieth Century History" . + + + + "Chicanos" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "North American History" . + + + a vivo:FacultyMember , foaf:Person , , foaf:Agent ; + + "Young, Phoebe S. K." ; + vitro-public:mainImage + ; + vivo:educationalTraining + , , ; + vivo:email "phoebe.young@Colorado.EDU" ; + vivo:freetextKeyword + "American cultural history, environment, public memory, popular culture, ethnicity, scholarship of teaching and learning, American West, outdoor recreation, homelessness" ; + vivo:hasResearchArea + , , , , , , , , , , , ; + vivo:personInPosition + , ; + vivo:preferredTitle "Associate Professor" ; + vivo:researchOverview + "Young is a historian of the 19th and 20th-century U.S. with interests in culture, the environment, public memory, and the American West. Her current work concerns the history of camping and sleeping outside since the mid-19th century and examines the shifting understandings of nature as public space. This will result in the publication of a book with Oxford Univ. Press (expected 2014). She is co-editor of an anthology on Rendering Nature and Culture in American History (Univ. of Pennsylvania Press, expected 2013); this includes a new essay on the tent and the Occupy movement. Her 2006 book, California Vieja: Culture and Memory in a Modern American Place (Univ. of Calif. Press) discussed built environment, ethnic identity, and regional culture. Both works concern the process of place-making through the historical relationships between material spaces, social practice, and cultural expression." ; + vivo:webpage ; + foaf:firstName "PHOEBE" ; + foaf:lastName "YOUNG" . + + + + "Cultural History" . + + + + "Cultural Diversity" . + + + + "Historic Preservation/Restoration" . + + + + "History" . + + + + + "Conflict/Dispute Resolution" . + +geo:southern_Asia + + "southern Asia"^^ . + + + + "Political Geography" . + + + + "United Kingdom (Great Britain & Northern Ireland)" . + + + + "International Relations/Diplomacy" . + + + + "British History" . + + + + "Southern Asia" . + +geo:western_Asia + + "western Asia"^^ . + + + + "International Affairs Program" . + + + + "International Security" . + + + + "International Affairs" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Cartography" . + + + + "Non-Western History" . + + + + "Pakistan" . + + + + "Middle/Near East" . + + + a vivo:FacultyMember , foaf:Person , foaf:Agent , ; + + "Chester, Lucy P" ; + vivo:educationalTraining + , , , ; + vivo:email "Lucy.Chester@Colorado.EDU" ; + vivo:geographicFocus + geo:southern_Asia , geo:Pakistan , geo:western_Asia , geo:Israel , geo:India ; + vivo:hasResearchArea + , , , , , , , , , , , , , ; + vivo:personInPosition + , ; + vivo:preferredTitle "Associate Professor" ; + vivo:researchOverview + "Professor Chester's work focuses on South Asian history and British imperial history, and she is currently conducting research that takes her into Middle Eastern history. Her book project, tentatively titled 'Networks of Decolonization: Britain's Withdrawal from South Asia and the Palestine Mandate,' examines imperial and anti-colonial links between these two cases. In 2012, she conducted research in India funded by the American Institute for Indian Studies, was awarded a grant by the American Institute of Pakistan Studies to conduct research in Pakistan (but was unable to travel to Pakistan due to security restrictions), and was awarded a Center for Humanities and the Arts fellowship at CU." ; + vivo:webpage ; + foaf:firstName "LUCY" ; + foaf:lastName "CHESTER" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + +geo:Pakistan + + "Pakistan"^^ . + +geo:Israel + + "Israel"^^ . + + + + "India" . + + + + "Israel" . + +geo:India + + "India"^^ . + + + + "History" . + + + + + "Fenn, Elizabeth Anne" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "History" . + + + + "Women's Studies" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "History of Law" . + +geo:United_Kingdom_of_Great_Britain_and_Northern_Ireland__the + + "United Kingdom"^^ . + + + + "English" . + + + + "Urban Studies" . + +geo:France + + "France"^^ . + + + + "Poverty and the Poor" . + + + + "Medieval Studies" . + + + + "Social History" . + + + + "European History" . + + + + "Religious Studies" . + + + + "Urban History" . + + + a vivo:FacultyMember , foaf:Person , , foaf:Agent ; + + "Lester, Anne E" ; + vivo:educationalTraining + , , ; + vivo:email "anne.lester@Colorado.EDU" ; + vivo:geographicFocus + geo:France , geo:United_Kingdom_of_Great_Britain_and_Northern_Ireland__the ; + vivo:hasResearchArea + , , , , , , , , , , ; + vivo:personInPosition + , ; + vivo:preferredTitle "Associate Professor" ; + foaf:firstName "ANNE" ; + foaf:lastName "LESTER" . + + + + "Medieval History" . + + + + "History" . + + + + + "Islamic Studies" . + + + + "History" . + +geo:eastern_Asia + + "eastern Asia"^^ . + + + a vivo:FacultyMember , foaf:Person , , foaf:Agent ; + + "Kim, Kwangmin" ; + vivo:educationalTraining + , , ; + vivo:email "Kwangmin.Kim@Colorado.EDU" ; + vivo:geographicFocus + geo:eastern_Asia , geo:China ; + vivo:hasResearchArea + , , , , , , , , ; + vivo:personInPosition + ; + vivo:preferredTitle "Assistant Professor" ; + foaf:firstName "KWANGMIN" ; + foaf:lastName "KIM" . + +geo:China + + "China"^^ . + + + + "Central Asia" . + + + + "China (People's Republic)" . + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "East (Far East) Asia" . + + + + "Cultural History" . + + + + "Social History" . + + + + "Modern History" . + + + + "Medieval History" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Latin America" . + + + + "Venezuela" . + + + a foaf:Person , vivo:FacultyMember , foaf:Agent , ; + + "Ferry, Robert J" ; + vivo:educationalTraining + , , , ; + vivo:email "Robert.Ferry@Colorado.EDU" ; + vivo:geographicFocus + geo:Colombia , geo:Mexico ; + vivo:hasResearchArea + , , , , , , , ; + vivo:personInPosition + , ; + vivo:preferredTitle "Associate Professor" ; + foaf:firstName "ROBERT" ; + foaf:lastName "FERRY" . + + + + "Iberian Studies" . + + + + "Jewish History" . + + + + "Caribbean Sea" . + + + + "Honors RAP" . + + + + "Mexico" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + +geo:Colombia + + "Colombia"^^ . + + + + "Latin American History" . + +geo:Mexico + + "Mexico"^^ . + + + + "Canary Islands" . + + + + "History" . + + +geo:Belgium + + "Belgium"^^ . + + + + "History" . + + + + "Classics" . + + + a vivo:FacultyAdministrativePosition ; + + "Faculty Director" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "3" . + + + a foaf:Person , vivo:FacultyMember , foaf:Agent , ; + + "Bruce, Scott" ; + vitro-public:mainImage + ; + vivo:educationalTraining + , , ; + vivo:email "Scott.Bruce@Colorado.EDU" ; + vivo:geographicFocus + geo:Belgium , geo:France ; + vivo:hasResearchArea + , , , , , ; + vivo:personInPosition + , , ; + vivo:preferredTitle "Associate Professor" ; + foaf:firstName "SCOTT" ; + foaf:lastName "BRUCE" . + + + + "Center for Medieval and Early Modern Studies" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + +geo:France + + "France"^^ . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Cultural History" . + + + + "Medieval Studies" . + + + + "Religious Studies" . + + + + "European History" . + + + + "Medieval History" . + + + + "History" . + + + + a vivo:FacultyAdministrativePosition ; + + "Chair" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Cultural History" . + + + + "British History" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "European History" . + + + a foaf:Person , vivo:FacultyMember , foaf:Agent , ; + + "Kent, Susan K" ; + vitro-public:mainImage + ; + vivo:educationalTraining + , , , ; + vivo:email "susan.kent@Colorado.EDU" ; + vivo:hasResearchArea + , , , ; + vivo:personInPosition + , ; + vivo:preferredTitle "Professor" ; + foaf:firstName "SUSAN" ; + foaf:lastName "KENT" . + + + + "Modern History" . + + + + "History" . + + + + + "Area Studies (Arts/Humanities)" . + +geo:Netherlands_the + + "Netherlands"^^ . + +geo:United_Kingdom_of_Great_Britain_and_Northern_Ireland__the + + "United Kingdom"^^ . + + + + "Arabian Gulf" . + + + + "Non-Western History" . + + + + "Arab States" . + + + + "Middle/Near East" . + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a foaf:Person , vivo:FacultyMember , foaf:Agent , ; + + "Willis, John Matthew" ; + vivo:educationalTraining + , , ; + vivo:email "John.Willis@Colorado.EDU" ; + vivo:geographicFocus + geo:Netherlands_the , geo:Israel , geo:United_Kingdom_of_Great_Britain_and_Northern_Ireland__the , geo:India ; + vivo:hasResearchArea + , , , , , , ; + vivo:personInPosition + ; + vivo:preferredTitle "Assistant Professor" ; + foaf:firstName "JOHN" ; + foaf:lastName "WILLIS" . + +geo:Israel + + "Israel"^^ . + + + + "Social History" . + + + + "Modern History" . + +geo:India + + "India"^^ . + + + + "History" . + + + + + "Weston, Timothy B" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Mcgranahan, Carole" . + + + + "History" . + + + + a foaf:Person , vivo:FacultyMember , , foaf:Agent ; + + "Sohi, Seema" ; + vivo:educationalTraining + , , ; + vivo:email "Seema.Sohi@Colorado.EDU" ; + vivo:freetextKeyword + "Asian American studies, Asian American history, U.S. history, race, empire, anticolonialism, transnationalism, radicalism, borderlands" ; + vivo:geographicFocus + geo:Canada , geo:United_Kingdom_of_Great_Britain_and_Northern_Ireland__the , geo:India ; + vivo:hasResearchArea + , , , , , , ; + vivo:personInPosition + , ; + vivo:preferredTitle "Assistant Professor" ; + vivo:researchOverview + "Seema Sohi's current research project is a history of U.S. radicalism and antiradicalism in the early twentieth century, told through the lens of the Asian Indian anticolonial movement that emerged on the Pacific Coast of North America. Examining the racialization of Asian Indians in North America through the lens of antiradicalism, Sohi argues that Indian radical anticolonial politics played a constitutive role in the implementation and enforcement of exclusionary immigration laws and antiradical policies that helped pave the way for a series of politically repressive policies and practices in both the United States and India during the First World War. Further, she argues that transnational anti-Indian exclusionist campaigns were densely intertwined with the transnational antiradical practices of the U.S. and British states and that calls for Indian exclusion and political repression went hand in hand." ; + vivo:webpage ; + foaf:firstName "SEEMA" ; + foaf:lastName "SOHI" . + + + + "Area Studies (Arts/Humanities)" . + + + + "History" . + + + + "Folk/Ethnic Studies" . + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Ethnic Studies" . + + + + "Asian Languages/Literature" . + + + + "American History" . + +geo:United_Kingdom_of_Great_Britain_and_Northern_Ireland__the + + "United Kingdom"^^ . + +geo:Canada + + "Canada"^^ . + + + + "American Literature" . + + + + "Social History" . + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "History" . + +geo:India + + "India"^^ . + + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Ferry, Robert J" . + + + + "History" . + + + + + "USA, New England" . + + + + "Religious History" . + + + + "History" . + + + + "United States" . + + + a foaf:Person , vivo:FacultyMember , foaf:Agent , ; + + "Anderson, Virginia D" ; + vitro-public:mainImage + ; + vivo:educationalTraining + , , , , ; + vivo:email "Virginia.Anderson@Colorado.EDU" ; + vivo:freetextKeyword + "Colonial American History, History of the American Revolution" ; + vivo:hasResearchArea + , , , , , , , , , , , , , , , , , , ; + vivo:personInPosition + ; + vivo:preferredTitle "Professor" ; + vivo:researchOverview + "My research interests focus on the history of Colonial and Revolutionary America. My current research project is a book on the American Revolution. I also contribute sections on Colonial and Revolutionary American history to a college-level survey textbook." ; + foaf:firstName "VIRGINIA" ; + foaf:lastName "ANDERSON" . + + + + "Ethnohistory" . + + + + "Higher Education" . + + + + "British History" . + + + + "American History" . + + + + "Colonial America" . + + + + "USA, Southeast" . + + + + "USA, Northeast" . + + + + "African-American History" . + + + + "Agricultural History" . + + + + "Animal Ecology" . + + + + "North American History" . + + + + "Agriculture" . + + + + "Social History" . + + + + "North America" . + + + + "Historical Documents" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "History" . + + + + + "USA, New England" . + + + + "England" . + + + + "Honors Program" . + + + + "USA, Atlantic Central" . + + + + "History" . + + + + "United States" . + + + + "American History" . + + + + "Colonial America" . + + + + "Caribbean Sea" . + + + + "North American History" . + + + + "History Education" . + + + + "Atlantic Ocean" . + + + + "North America" . + + + + "History" . + + + + "Religious History" . + + + + "Scotland" . + + + + "Political History" . + + + + "Hemispheres" . + + + + "Economic History" . + + + + "United Kingdom (Great Britain & Northern Ireland)" . + + + + "British History" . + + + a vivo:FacultyMember , foaf:Person , foaf:Agent , ; + + "Anderson, Fred W" ; + vitro-public:mainImage + ; + vivo:educationalTraining + , , ; + vivo:email "fred.anderson@Colorado.EDU" ; + vivo:geographicFocus + geo:Canada ; + vivo:hasResearchArea + , , , , , , , , , , , , , , , , , , , , , , , , ; + vivo:personInPosition + , ; + vivo:preferredTitle "Professor" ; + foaf:firstName "FRED" ; + foaf:lastName "ANDERSON" . + + + + "USA, Southeast" . + + + a vivo:FacultyAdministrativePosition ; + + "Faculty Director" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "USA, Northeast" . + + + + "African-American History" . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Agricultural History" . + +geo:Canada + + "Canada"^^ . + + + + "Social History" . + + + + "Intellectual History" . + + + + + "Maeda, Daryl" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "3" . + + + + "History" . + + + + a vivo:FacultyMember , foaf:Person , foaf:Agent , ; + + "Mukherjee, Mithi" ; + vitro-public:mainImage + ; + vivo:educationalTraining + , , , ; + vivo:email "Mithi.Mukherjee@Colorado.EDU" ; + vivo:hasResearchArea + , , , , , , ; + vivo:personInPosition + ; + vivo:preferredTitle "Associate Professor" ; + foaf:firstName "MITHI" ; + foaf:lastName "MUKHERJEE" . + + + + "Non-Western History" . + + + + "History" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Cultural History" . + + + + "India" . + + + + "Modern History" . + + + + "Intellectual History" . + + + + "History of Law" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Gross, David L" . + + + + "History" . + + + + a vivo:FacultyAdministrativePosition ; + + "Faculty Director" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + a vivo:FacultyAdministrativePosition ; + + "Faculty Director" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "3" . + + + + "International Education" . + + + + "United States" . + +geo:China + + "China"^^ . + +geo:Spain + + "Spain"^^ . + + + + "International Relations/Diplomacy" . + + + + "American History" . + + + + "International Affairs Program" . + +geo:western_Europe + + "western Europe"^^ . + +geo:United_Kingdom_of_Great_Britain_and_Northern_Ireland__the + + "United Kingdom"^^ . + +geo:Italy + + "Italy"^^ . + + + + "Twentieth Century History" . + + + a vivo:FacultyMember , foaf:Person , foaf:Agent , ; + + "Zeiler, Thomas W" ; + vitro-public:mainImage + ; + vivo:educationalTraining + , , ; + vivo:email "thomas.zeiler@Colorado.EDU" ; + vivo:freetextKeyword + "US foreign relations, globalization, sports and history, economic diplomacy" ; + vivo:geographicFocus + geo:Italy , geo:France , geo:China , geo:Spain , geo:western_Europe , geo:United_Kingdom_of_Great_Britain_and_Northern_Ireland__the ; + vivo:hasResearchArea + , , , ; + vivo:personInPosition + , , ; + vivo:preferredTitle "Professor" ; + vivo:researchOverview + "I relate the many elements of American foreign relations to economic globalization and the international and domestic scenes. I seek out the linkages between the global economy (and its related cultural and political realms) to American policies, and do so as a historian operating in an arena occupied by social scientists. My research has been guided by the pursuit of understanding globalization as a historic phenomenon and relating it to the traditional field of U.S. foreign relations history and emerging trends in globalizing the study of American history itself. As well, I study World War II, and how sports intersects with diplomacy." ; + vivo:webpage ; + foaf:firstName "THOMAS" ; + foaf:lastName "ZEILER" . + +geo:France + + "France"^^ . + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "History" . + + + + + "Mukherjee, Mithi" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "History" . + + + + + "Gautam, Sanjay Kumar" . + + + a vivo:FacultyPosition ; + + "Assistant Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "History" . + + + + a vivo:FacultyAdministrativePosition ; + + "Chair" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "Kent, Susan K" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Bruce, Scott" . + + + + "History" . + + + + + "Ancient/Classical History" . + + + + "Religious History" . + +geo:Brazil + + "Brazil"^^ . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Classics" . + + + + "Byzantine History" . + +geo:Poland + + "Poland"^^ . + + + + "Language and/or Literature, Classical Greek" . + + + + "Language and/or Literature, Classical Latin" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "3" . + + + + "Language and/or Literature, Classical/Ancient" . + +geo:United_Kingdom_of_Great_Britain_and_Northern_Ireland__the + + "United Kingdom"^^ . + +geo:Italy + + "Italy"^^ . + +geo:France + + "France"^^ . + +geo:Germany + + "Germany"^^ . + + + a foaf:Person , vivo:FacultyMember , foaf:Agent , ; + + "Lenski, Noel E" ; + vitro-public:mainImage + ; + vivo:educationalTraining + , , ; + vivo:email "Lenski@Colorado.EDU" ; + vivo:geographicFocus + geo:Italy , geo:Brazil , geo:France , geo:Germany , geo:Poland , geo:Israel , geo:Australia , geo:United_Kingdom_of_Great_Britain_and_Northern_Ireland__the ; + vivo:hasResearchArea + , , , , , , , ; + vivo:personInPosition + , , ; + vivo:preferredTitle "Associate Professor" ; + foaf:firstName "NOEL" ; + foaf:lastName "LENSKI" . + + + a vivo:FacultyAdministrativePosition ; + + "Chair" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + +geo:Israel + + "Israel"^^ . + + + + "Social History" . + + + + "Jurisprudence" . + +geo:Australia + + "Australia"^^ . + + + + "History" . + + + + + "Communication" . + + + + "Sociology of Science" . + + + + "History of Science & Technology" . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "2" . + + + + "American History" . + + + + "History of Philosophy" . + + + + "History of Law" . + + + + "Social Sciences--Humanistic Emphasis" . + + + + "Twentieth Century History" . + +geo:Sweden + + "Sweden"^^ . + + + a vivo:FacultyPosition ; + + "Associate Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + a foaf:Person , vivo:FacultyMember , , foaf:Agent ; + + "Jackson, John Philip, Jr." ; + vivo:educationalTraining + , ; + vivo:email "john.p.jackson@Colorado.EDU" ; + vivo:freetextKeyword + "history of science, rhetoric of science, argumentation, historiography, racism" ; + vivo:geographicFocus + geo:Sweden ; + vivo:hasResearchArea + , , , , , , , , ; + vivo:personInPosition + , ; + vivo:preferredTitle "Associate Professor" ; + vivo:researchOverview + "Dr. Jackson studies the history and rhetoric of science. His interests focus on the the interactions of the biological and human science, particularly regarding the scientific study of race. His interests in communication focus on argumentation, rhetorical history, the rhetoric of inquiry, and the intersection of rhetoric and philosophy, particularly analytic philosophy and pragmatism. My historical interests are focused on the United States of the 20th century." ; + vivo:webpage ; + foaf:firstName "JOHN" ; + foaf:lastName "JACKSON" . + + + + "Racism/Race Relations" . + + + + "Intellectual History" . + + + + "History" . + + + + a vivo:FacultyPosition ; + + "Professor" ; + vivo:positionForPerson + ; + vivo:positionInOrganization + ; + vivo:rank "1" . + + + + "Kent, Susan K" . + + + + "History" . diff --git a/test/edu/cornell/mannlib/vitro/webapp/search/solr/VivoAgentContextNodeFieldsTest2.java b/test/edu/cornell/mannlib/vitro/webapp/search/solr/VivoAgentContextNodeFieldsTest2.java new file mode 100644 index 00000000..53c5222a --- /dev/null +++ b/test/edu/cornell/mannlib/vitro/webapp/search/solr/VivoAgentContextNodeFieldsTest2.java @@ -0,0 +1,82 @@ +/* $This file is distributed under the terms of the license in /doc/license.txt$ */ +package edu.cornell.mannlib.vitro.webapp.search.solr; + +import static org.junit.Assert.*; + +import java.io.InputStream; + +import org.apache.commons.lang.StringUtils; +import org.apache.solr.common.SolrInputDocument; +import org.junit.BeforeClass; +import org.junit.Test; + +import com.hp.hpl.jena.rdf.model.Model; +import com.hp.hpl.jena.rdf.model.ModelFactory; +import com.hp.hpl.jena.rdf.model.Property; +import com.hp.hpl.jena.rdf.model.RDFNode; +import com.hp.hpl.jena.rdf.model.ResourceFactory; + +import edu.cornell.mannlib.vitro.testing.AbstractTestClass; +import edu.cornell.mannlib.vitro.webapp.beans.Individual; +import edu.cornell.mannlib.vitro.webapp.beans.IndividualImpl; +import edu.cornell.mannlib.vitro.webapp.rdfservice.RDFService; +import edu.cornell.mannlib.vitro.webapp.rdfservice.RDFServiceFactory; +import edu.cornell.mannlib.vitro.webapp.rdfservice.impl.RDFServiceFactorySingle; +import edu.cornell.mannlib.vitro.webapp.rdfservice.impl.jena.model.RDFServiceModel; + +/** + * Second test for VivoAgentContextNodeFields. This is duplicated + * due to using a different data set in the test. + * + */ +public class VivoAgentContextNodeFieldsTest2 extends AbstractTestClass{ + + static String HISTORY_DEPT = "http://vivo.colorado.edu/deptid_10238" ; + + static RDFServiceFactory rdfServiceFactory; + + @BeforeClass + public static void setup(){ + Model m = ModelFactory.createDefaultModel(); + InputStream stream = VivoAgentContextNodeFieldsTest2 + .class.getResourceAsStream("./VIVO146_DataSet1.n3"); + assertTrue("Expected to find RDF data file " , stream != null ); + + long preloadSize = m.size(); + + m.read(stream, null, "N3"); + assertTrue("expected to load statements from file", m.size() > preloadSize ); + + System.out.println("size of m : " + m.size()); + + assertTrue("expect statements about HISTORY_DEPT", + m.contains(ResourceFactory.createResource(HISTORY_DEPT),(Property) null,(RDFNode) null)); + + RDFService rdfService = new RDFServiceModel(m); + rdfServiceFactory = new RDFServiceFactorySingle(rdfService); + } + + /** + * Test how many times history is returned for context nodes + * of the History department. + */ + @Test + public void testHistory(){ + Individual ind = new IndividualImpl(); + ind.setURI(HISTORY_DEPT); + + VivoAgentContextNodeFields vacnf = new VivoAgentContextNodeFields(rdfServiceFactory); + StringBuffer sb = vacnf.getValues( ind ); + + assertNotNull( sb ); + String value = sb.toString(); + + assertTrue("Expected to get some text back from " + + "VivoAgentContextNodeFields but got none" , !value.trim().isEmpty()); + + int count = StringUtils.countMatches(value.toLowerCase(),"history"); + System.out.println("histories: " + count); + System.out.println("'" + value + "'"); +// assertTrue("expected to have jane because SPCA advises jane", hasJane); + } +}