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
|
@ -251,13 +251,13 @@ function nodeClickedJS(json){
|
|||
if (obj.url == egoURI) {
|
||||
|
||||
$("#authorName").addClass('author_name').removeClass('neutral_author_name');
|
||||
$('#num_works > .author_stats_text').text('Work(s)');
|
||||
$('#num_works > .author_stats_text').text('Publication(s)');
|
||||
$('#num_authors > .author_stats_text').text('Co-author(s)');
|
||||
|
||||
} else {
|
||||
|
||||
$("#authorName").addClass('neutral_author_name').removeClass('author_name');
|
||||
$('#num_works > .author_stats_text').text('Joint Work(s)');
|
||||
$('#num_works > .author_stats_text').text('Joint Publication(s)');
|
||||
$('#num_authors > .author_stats_text').text('Joint Co-author(s)');
|
||||
|
||||
}
|
||||
|
|
|
@ -216,7 +216,7 @@ table.sparkline_wrapper_table td, th {
|
|||
<div class="italicize"><span id="profileMoniker" class="author_moniker"></span></div>
|
||||
<div><a href="#" id="profileUrl">VIVO profile</a> | <a href="#" id="coAuthorshipVisUrl">Co-author network</a></div>
|
||||
<br />
|
||||
<div class="author_stats" id="num_works"><span class="numbers" style="width: 40px;" id="works"></span> <span class="author_stats_text">Work(s)</span></div>
|
||||
<div class="author_stats" id="num_works"><span class="numbers" style="width: 40px;" id="works"></span> <span class="author_stats_text">Publication(s)</span></div>
|
||||
<div class="author_stats" id="num_authors"><span class="numbers" style="width: 40px;" id="coAuthors"></span> <span class="author_stats_text">Co-author(s)</span></div>
|
||||
|
||||
<div class="author_stats" id="fPub" style="visibility:hidden"><span class="numbers" style="width:40px;" id="firstPublication"></span> <span>First Publication</span></div>
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
|
||||
/* ----------------- body start --------------------------- */
|
||||
#body{
|
||||
max-width:900px;
|
||||
min-width:800px;
|
||||
margin:0 auto;
|
||||
position:relative;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue