ready to release
This commit is contained in:
parent
b776f1bbe7
commit
1ccb6f519f
|
@ -4,7 +4,7 @@
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [v1.4.2-SNAPSHOT] - 2021-04-06
|
## [v1.5.0] - 2021-04-06
|
||||||
|
|
||||||
Removed legacy auth dependency
|
Removed legacy auth dependency
|
||||||
|
|
||||||
|
|
2
pom.xml
2
pom.xml
|
@ -13,7 +13,7 @@
|
||||||
<artifactId>workspace-widget-portlet</artifactId>
|
<artifactId>workspace-widget-portlet</artifactId>
|
||||||
<packaging>war</packaging>
|
<packaging>war</packaging>
|
||||||
<name>workspace-widget-portlet Portlet</name>
|
<name>workspace-widget-portlet Portlet</name>
|
||||||
<version>1.4.2-SNAPSHOT</version>
|
<version>1.5.0</version>
|
||||||
<description>
|
<description>
|
||||||
Workspace Widget Portlet is a small Front-end component looking like G Drive which exposes the content of the user's workspace or VRE Folders in read only mode.
|
Workspace Widget Portlet is a small Front-end component looking like G Drive which exposes the content of the user's workspace or VRE Folders in read only mode.
|
||||||
</description>
|
</description>
|
||||||
|
|
|
@ -37,7 +37,7 @@ public class StorageHubServiceUtil {
|
||||||
* @param itemName
|
* @param itemName
|
||||||
* @param from
|
* @param from
|
||||||
* @param offset
|
* @param offset
|
||||||
* @return
|
* @return the list of items
|
||||||
*/
|
*/
|
||||||
public static List<WSItem> getItemChildren(AuthorizedUser authUser, String itemId, String itemName, int from, int offset) {
|
public static List<WSItem> getItemChildren(AuthorizedUser authUser, String itemId, String itemName, int from, int offset) {
|
||||||
WSItem toReturn = new WSItem(itemId, itemName, true);
|
WSItem toReturn = new WSItem(itemId, itemName, true);
|
||||||
|
@ -68,7 +68,7 @@ public class StorageHubServiceUtil {
|
||||||
}
|
}
|
||||||
toReturn.setChildren(children);
|
toReturn.setChildren(children);
|
||||||
Collections.sort(toReturn.getChildren(), new ItemComparator());
|
Collections.sort(toReturn.getChildren(), new ItemComparator());
|
||||||
_log.debug("*** Returning children size: "+toReturn.getChildren().size());
|
_log.debug("Returning children size: "+toReturn.getChildren().size());
|
||||||
return children;
|
return children;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
@ -166,7 +166,7 @@ public class StorageHubServiceUtil {
|
||||||
UmaJWTProvider.instance.set(umaToken.getRaw());
|
UmaJWTProvider.instance.set(umaToken.getRaw());
|
||||||
} catch (InvalidTokenException | MissingTokenException | RefreshException | NotAuthorizedException
|
} catch (InvalidTokenException | MissingTokenException | RefreshException | NotAuthorizedException
|
||||||
| UMAException e1) {
|
| UMAException e1) {
|
||||||
// TODO Auto-generated catch block
|
_log.warn("could not get UMA Token for context="+currentContext);
|
||||||
e1.printStackTrace();
|
e1.printStackTrace();
|
||||||
}
|
}
|
||||||
_log.debug("getVREFoldersId, context="+currentContext);
|
_log.debug("getVREFoldersId, context="+currentContext);
|
||||||
|
|
|
@ -7,7 +7,6 @@
|
||||||
pageContext.setAttribute("currentGroup", GroupLocalServiceUtil.getGroup(PortalUtil.getScopeGroupId(request)));
|
pageContext.setAttribute("currentGroup", GroupLocalServiceUtil.getGroup(PortalUtil.getScopeGroupId(request)));
|
||||||
String currentUsername = PortalUtil.getUser(request).getScreenName();
|
String currentUsername = PortalUtil.getUser(request).getScreenName();
|
||||||
pageContext.setAttribute("currentUsername", PortalUtil.getUser(request).getScreenName());
|
pageContext.setAttribute("currentUsername", PortalUtil.getUser(request).getScreenName());
|
||||||
;
|
|
||||||
%>
|
%>
|
||||||
<script src="<%=renderRequest.getContextPath()%>/js/datatables.min.js"></script>
|
<script src="<%=renderRequest.getContextPath()%>/js/datatables.min.js"></script>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue