1. Made changes to wordings per Katy's request.
2. Fixed the separator issue for list of coauthors csv file. 3. Made style fix for person level vis.
This commit is contained in:
parent
821da68e85
commit
7440b856f1
5 changed files with 6 additions and 9 deletions
|
@ -258,9 +258,7 @@ public class VisualizationRequestHandler {
|
|||
coAuthorsMerged.append(currCoAuthor.getNodeName() + coAuthorSeparator);
|
||||
}
|
||||
|
||||
StringUtils.removeEnd(coAuthorsMerged.toString(), coAuthorSeparator);
|
||||
|
||||
return coAuthorsMerged.toString();
|
||||
return StringUtils.removeEnd(coAuthorsMerged.toString(), coAuthorSeparator);
|
||||
}
|
||||
|
||||
private Map<String, Set<Node>> getCoAuthorsStats(VisVOContainer authorNodesAndEdges) {
|
||||
|
|
|
@ -602,9 +602,7 @@ public class VisualizationCodeGenerator {
|
|||
+ "=" + URLEncoder.encode(VisualizationFrameworkConstants.STANDALONE_RENDER_MODE_URL_VALUE,
|
||||
VisualizationController.URL_ENCODING_SCHEME).toString();
|
||||
|
||||
System.out.println("context parth full n/w " + contextPath);
|
||||
|
||||
fullTimelineLink = "<a href='" + fullTimelineNetworkURL + "'>View all publications over career and co-author network</a><br />";
|
||||
fullTimelineLink = "<a href='" + fullTimelineNetworkURL + "'>View all VIVO publications and corresponding co-author network</a>.<br />";
|
||||
|
||||
valueObjectContainer.setFullTimelineNetworkLink(fullTimelineNetworkURL);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue