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:
cdtank 2010-07-21 16:17:23 +00:00
parent 821da68e85
commit 7440b856f1
5 changed files with 6 additions and 9 deletions

View file

@ -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)');
}

View file

@ -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>&nbsp;&nbsp;<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>&nbsp;&nbsp;<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>&nbsp;&nbsp;<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>&nbsp;&nbsp;<span>First Publication</span></div>

View file

@ -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) {

View file

@ -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);

View file

@ -5,6 +5,7 @@
/* ----------------- body start --------------------------- */
#body{
max-width:900px;
min-width:800px;
margin:0 auto;
position:relative;