updates to include "prepare" method from base edit configuration since old prepare has been removed from edit request dispatch controller - also commented out agrovoc from appearing on the search page

This commit is contained in:
hjkhjk54 2011-12-01 21:11:04 +00:00
parent 556cd102f3
commit 4aee656ae6
12 changed files with 18 additions and 9 deletions

View file

@ -129,6 +129,8 @@ public class AddAssociatedConceptGenerator extends VivoBaseGenerator implements
//Adding term should return to this same page, not the subject //Adding term should return to this same page, not the subject
//Return takes the page back to the individual form //Return takes the page back to the individual form
editConfiguration.setUrlPatternToReturnTo(EditConfigurationUtils.getFormUrlWithoutContext(vreq)); editConfiguration.setUrlPatternToReturnTo(EditConfigurationUtils.getFormUrlWithoutContext(vreq));
//prepare
prepare(vreq, editConfiguration);
return editConfiguration; return editConfiguration;
} }

View file

@ -66,6 +66,7 @@ public class AddAuthorsToInformationResourceGenerator extends VivoBaseGenerator
//Adding additional data, specifically edit mode //Adding additional data, specifically edit mode
addFormSpecificData(editConfiguration, vreq); addFormSpecificData(editConfiguration, vreq);
prepare(vreq, editConfiguration);
return editConfiguration; return editConfiguration;
} }

View file

@ -92,7 +92,7 @@ public class AddEditWebpageFormGenerator extends BaseEditConfigurationGenerator
//might be null //might be null
config.addFormSpecificData("subjectName", getName( config, vreq)); config.addFormSpecificData("subjectName", getName( config, vreq));
prepare(vreq, config);
return config; return config;
} }

View file

@ -92,6 +92,7 @@ public class AddPublicationToPersonGenerator extends VivoBaseGenerator implement
// Adding additional data, specifically edit mode // Adding additional data, specifically edit mode
addFormSpecificData(editConfiguration, vreq); addFormSpecificData(editConfiguration, vreq);
prepare(vreq, editConfiguration);
return editConfiguration; return editConfiguration;
} }

View file

@ -168,6 +168,8 @@ public abstract class AddRoleToPersonTwoStageGenerator extends BaseEditConfigura
addPreprocessors(editConfiguration, vreq.getWebappDaoFactory()); addPreprocessors(editConfiguration, vreq.getWebappDaoFactory());
//Adding additional data, specifically edit mode //Adding additional data, specifically edit mode
addFormSpecificData(editConfiguration, vreq); addFormSpecificData(editConfiguration, vreq);
//prepare
prepare(vreq, editConfiguration);
return editConfiguration; return editConfiguration;
} }

View file

@ -119,6 +119,7 @@ public class AddUserDefinedConceptGenerator extends VivoBaseGenerator implement
//Adding term should return to this same page, not the subject //Adding term should return to this same page, not the subject
//Return takes the page back to the individual form //Return takes the page back to the individual form
editConfiguration.setUrlPatternToReturnTo(getUrlPatternToReturnTo(vreq)); editConfiguration.setUrlPatternToReturnTo(getUrlPatternToReturnTo(vreq));
prepare(vreq, editConfiguration);
return editConfiguration; return editConfiguration;
} }

View file

@ -76,7 +76,7 @@ public class ManageWebpagesForIndividualGenerator extends BaseEditConfigurationG
}else{ }else{
config.addFormSpecificData("subjectName", null); config.addFormSpecificData("subjectName", null);
} }
prepare(vreq, config);
return config; return config;
} }

View file

@ -78,7 +78,7 @@ public class NewIndividualFormGenerator extends BaseEditConfigurationGenerator i
//Note, the spaces are important - they were added by ProcessRdfFormController earlier //Note, the spaces are important - they were added by ProcessRdfFormController earlier
//as a means of ensuring the substitution worked correctly - as the regex expects spaces //as a means of ensuring the substitution worked correctly - as the regex expects spaces
config.setEntityToReturnTo(" ?newInd "); config.setEntityToReturnTo(" ?newInd ");
prepare(vreq, config);
return config; return config;
} }

View file

@ -222,7 +222,7 @@ public class OrganizationHasPositionHistoryGenerator extends VivoBaseGenerator
conf.addValidator(new DateTimeIntervalValidationVTwo("startField", conf.addValidator(new DateTimeIntervalValidationVTwo("startField",
"endField")); "endField"));
prepare(vreq, conf);
return conf; return conf;
} }
} }

View file

@ -179,6 +179,7 @@ public class PersonHasEducationalTraining extends VivoBaseGenerator implements
conf.addValidator(new DateTimeIntervalValidationVTwo("startField","endField")); conf.addValidator(new DateTimeIntervalValidationVTwo("startField","endField"));
//Adding additional data, specifically edit mode //Adding additional data, specifically edit mode
addFormSpecificData(conf, vreq); addFormSpecificData(conf, vreq);
prepare(vreq, conf);
return conf; return conf;
} }

View file

@ -158,7 +158,7 @@ public class PersonHasPositionHistoryGenerator extends VivoBaseGenerator impleme
//Adding additional data, specifically edit mode //Adding additional data, specifically edit mode
addFormSpecificData(conf, vreq); addFormSpecificData(conf, vreq);
prepare(vreq, conf);
return conf; return conf;
} }

View file

@ -38,8 +38,9 @@ public class ConceptSearchServiceUtils {
public static HashMap<String, VocabSourceDescription> getVocabSources() { public static HashMap<String, VocabSourceDescription> getVocabSources() {
HashMap<String, VocabSourceDescription> map = new HashMap<String, VocabSourceDescription>(); HashMap<String, VocabSourceDescription> map = new HashMap<String, VocabSourceDescription>();
map.put(UMLSVocabSource, new VocabSourceDescription("UMLS", UMLSVocabSource, "http://www.nlm.nih.gov/research/umls/", "Unified Medical Language System")); map.put(UMLSVocabSource, new VocabSourceDescription("UMLS", UMLSVocabSource, "http://www.nlm.nih.gov/research/umls/", "Unified Medical Language System"));
map.put(AgrovocVocabSource, new VocabSourceDescription("AGROVOC", AgrovocVocabSource, "http://www.fao.org/agrovoc/", "Agricultural Vocabulary")); //Commenting out agrovoc for now until implementation is updated
map.put(GemetVocabSource, new VocabSourceDescription("GEMET", GemetVocabSource, "http://www.eionet.europa.eu/gemet", "General Multilingual Environmental Thesaurus")); // map.put(AgrovocVocabSource, new VocabSourceDescription("AGROVOC", AgrovocVocabSource, "www.fao.org/agrovoc/", "Agricultural Vocabulary"));
map.put(GemetVocabSource, new VocabSourceDescription("GEMET", GemetVocabSource, "http://www.eionet.europa.eu/gemet", "GEneral Multilingual Environmental Thesaurus"));
return map; return map;
} }