NIHVIVO-1713 Suppress display of vitro:Keyword property on individual page. Wasn't working on old individual page; back end editing for this property is buggy; and the property itself will be removed in 1.3.

This commit is contained in:
rjy7 2011-01-14 21:33:38 +00:00
parent 5fb08f8062
commit cb0caee116
2 changed files with 0 additions and 24 deletions

View file

@ -160,27 +160,8 @@ public class IndividualTemplateModel extends BaseTemplateModel {
return individual.getURI(); return individual.getURI();
} }
public List<String> getKeywords() {
return individual.getKeywords();
}
public String getKeywordString() {
// Since this is a display method, the implementation should be moved out of IndividualImpl to here.
return individual.getKeywordString();
}
public String getLocalName() { public String getLocalName() {
return individual.getLocalName(); return individual.getLocalName();
} }
@Deprecated
public String getDescription() {
return individual.getDescription();
}
@Deprecated
public String getBlurb() {
return individual.getBlurb();
}
} }

View file

@ -59,11 +59,6 @@
<#-- Ontology properties --> <#-- Ontology properties -->
<#include "individual-properties.ftl"> <#include "individual-properties.ftl">
<#-- Keywords -->
<#if individual.keywords?has_content>
<p id="keywords">Keywords: ${individual.keywordString}</p>
</#if>
${stylesheets.add("/css/individual/individual.css")} ${stylesheets.add("/css/individual/individual.css")}
<#-- RY Figure out which of these scripts really need to go into the head, and which are needed at all (e.g., tinyMCE??) --> <#-- RY Figure out which of these scripts really need to go into the head, and which are needed at all (e.g., tinyMCE??) -->