diff --git a/src/edu/cornell/mannlib/vitro/webapp/controller/harvester/CsvFileHarvestJob.java b/src/edu/cornell/mannlib/vitro/webapp/controller/harvester/CsvFileHarvestJob.java index 680ac6bd..28869704 100644 --- a/src/edu/cornell/mannlib/vitro/webapp/controller/harvester/CsvFileHarvestJob.java +++ b/src/edu/cornell/mannlib/vitro/webapp/controller/harvester/CsvFileHarvestJob.java @@ -423,8 +423,10 @@ class CsvFileHarvestJob implements FileHarvestJob { public String getTemplateFillInHelp() { String newline = "\n"; String help = ""; - help += "
A CSV, or Comma-Separated Values file, is a method of storing tabular data in plain text. The first line of a CSV file contains header information, while each subsequent line contains a data record.
" + newline; + help += "A CSV, or Comma-Separated Values file, is a method of storing tabular data in plain text. The first line of a CSV file contains header information, while each subsequent line contains a data record.
" + newline; help += "The template we provide contains only the header, which you will then fill in accordingly. For example, if the template contains the text \"firstName,lastName\", then you might add two more lines, \"John,Doe\" and \"Jane,Public\".
" + newline; + help += "People in the harvest are grouped by the \"PersonID\" field and matched with existing data using the \"Email\" and/or \"FullName\" fields.
" + newline; + help += "In the grant harvest grants, people, and departments are grouped by \"GrantID\",\"PIID\" and \"CoPIID\", \"AdminDepartmentID\" fields respectively and matched with existing data using the name fields.
" + newline; return help; }