mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Removed "on demand" addition of TITLED and UIFACETS aspects to files and folders during display of details dialog (now that import speed is "acceptable"
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@4001 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -436,24 +436,6 @@ public class AVMBrowseBean implements IContextListener
|
||||
public void setAVMNodeDescriptor(AVMNodeDescriptor avmRef)
|
||||
{
|
||||
AVMNode avmNode = new AVMNode(avmRef);
|
||||
// TODO: remove this once we can add the aspect quickly in the ImportWebsiteDialog!
|
||||
if (avmNode.isDirectory())
|
||||
{
|
||||
if (this.nodeService.hasAspect(avmNode.getNodeRef(), ContentModel.ASPECT_UIFACETS) == false)
|
||||
{
|
||||
this.nodeService.addAspect(avmNode.getNodeRef(), ContentModel.ASPECT_UIFACETS, null);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (this.nodeService.hasAspect(avmNode.getNodeRef(), ContentModel.ASPECT_TITLED) == false)
|
||||
{
|
||||
// add titled aspect for the read/edit properties screens
|
||||
Map<QName, Serializable> titledProps = new HashMap<QName, Serializable>(1, 1.0f);
|
||||
titledProps.put(ContentModel.PROP_TITLE, avmNode.getName());
|
||||
this.nodeService.addAspect(avmNode.getNodeRef(), ContentModel.ASPECT_TITLED, titledProps);
|
||||
}
|
||||
}
|
||||
this.avmNode = avmNode;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user