As shown above this feature in the app is to delete a Resource from your profile. The action is done to delete any unnecessary resources created. THIS IS A PERMANENT ACTION which would delete ALL files in the resource and it cannot be retrieved again. So be careful as a copy of the Resource will not be retained by HydroShare ! But this feature works smoothly without any glitches, just try copying the resource ID from the HTTP hyperlink when you open your resource in Hydroshare.
Below are step by step instructions on how to delete a resource:
To try this on your own, you can use the code snippet below that is used in this demonstration.
from hs_restclient import HydroShare, HydroShareAuthBasic
auth = HydroShareAuthBasic(username='myusername', password='mypassword')
hs = HydroShare(auth=auth)
hs.deleteResource('ID OF RESOURCE GOES HERE')