mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
. Confirmation screens for Undo All and Undo Selected items for a sandbox
- refactoring of revert functionality into Undo All and Undo Selected dialogs . Performance enhancement to Node class - to cache Path value from NodeService and changed appropriate class to use this . Fix to horribly broken values in AVMConstants git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4690 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -990,14 +990,14 @@ public class BrowseBean implements IContextListener
|
||||
|
||||
public NodePropertyResolver resolverPath = new NodePropertyResolver() {
|
||||
public Object get(Node node) {
|
||||
return nodeService.getPath(node.getNodeRef());
|
||||
return node.getNodePath();
|
||||
}
|
||||
};
|
||||
|
||||
public NodePropertyResolver resolverDisplayPath = new NodePropertyResolver() {
|
||||
public Object get(Node node) {
|
||||
// TODO: replace this with a method that shows the full display name - not QNames?
|
||||
return Repository.getDisplayPath( (Path)node.getProperties().get("path") );
|
||||
return Repository.getDisplayPath(node.getNodePath());
|
||||
}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user