diff --git a/.settings/org.eclipse.wst.common.component b/.settings/org.eclipse.wst.common.component index f233636..3f8ea4e 100644 --- a/.settings/org.eclipse.wst.common.component +++ b/.settings/org.eclipse.wst.common.component @@ -4,6 +4,9 @@ + + uses + uses diff --git a/distro/changelog.xml b/distro/changelog.xml index bb3755c..659e81c 100644 --- a/distro/changelog.xml +++ b/distro/changelog.xml @@ -1,19 +1,26 @@ - Integrated workspace explorer widget and replace light tree + Integrated workspace explorer widget and replace light tree + + Fix for Bug #195, Post dates lack the year + Revised the way we shorten posts' text when this is very long, - better heuristic used + better heuristic used + Fixed bug #320, Users tagging does not work if @ is in the - middle of already typed text, works for hashtags too + middle of already typed text, works for hashtags too + Revised mail notification message formatting, user text is now - more clear and visible + more clear and visible + Revised the way we provide back links for posts, removed assumption that News Feed is always present the default community - page, good for single VRE portals support + page, good for single VRE portals support + diff --git a/src/main/java/org/gcube/portlets/user/newsfeed/client/ui/TweetTemplate.java b/src/main/java/org/gcube/portlets/user/newsfeed/client/ui/TweetTemplate.java index 628988b..22761cb 100644 --- a/src/main/java/org/gcube/portlets/user/newsfeed/client/ui/TweetTemplate.java +++ b/src/main/java/org/gcube/portlets/user/newsfeed/client/ui/TweetTemplate.java @@ -213,7 +213,8 @@ public class TweetTemplate extends Composite { try { String formattedTime = DateTimeFormat.getFormat("MMMM dd, h:mm a").format(feed.getTime()); timeArea.setHTML(formattedTime); - + String formattedTimeWithYear = DateTimeFormat.getFormat("dd MMMM yyyy h:mm a ").format(feed.getTime()); + timeArea.setTitle(formattedTimeWithYear); if (! feed.getCommentsNo().equals("0")) { commentsNo.setHTML(feed.getCommentsNo()); commentsNo.setStyleName("comments-number");