mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Merged V2.1 to HEAD
6846: used ] instead of } in ${ldap.synchronisation.userIdAttributeName] 6856: Fixed 2 NPEs, one reported by MIT and one found by Jan (WCM-835) 6859: Truncate an existing file when uploading via FTP. WCM-836. 6869: Removed temporary files and folders from deploy-installer project 6870: Updated ignore property 6875: Fix for AWC-1605 6878: Fix for AWC-1587 6880: Fix for French language pack - locked_user message 6883: Fix for AWC-1565 6884: Relax trhe permissions required to get the parent links from a child node 6891: Fix for AR-1781 and AR-1782 (requires CHK-1451) 6892: Fixed AR-1777: Node status not updated for addition and removal of secondary associations (affects index tracking) 6893: Sample for replicating content store sample 6896: Added JVM shutdown check into inner loop to get faster breakout in the event of shutdown. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6899 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -30,6 +30,8 @@ import java.util.LinkedList;
|
||||
|
||||
import org.alfresco.model.ContentModel;
|
||||
import org.alfresco.repo.security.permissions.AccessDeniedException;
|
||||
import org.alfresco.service.cmr.security.AccessStatus;
|
||||
import org.alfresco.service.cmr.security.PermissionService;
|
||||
import org.alfresco.service.namespace.NamespacePrefixResolver;
|
||||
import org.alfresco.service.namespace.QName;
|
||||
import org.alfresco.util.ISO9075;
|
||||
@@ -193,7 +195,7 @@ public final class Path implements Iterable<Path.Element>, Serializable
|
||||
*
|
||||
* @return human readable form of the Path excluding the final element
|
||||
*/
|
||||
public String toDisplayPath(NodeService nodeService)
|
||||
public String toDisplayPath(NodeService nodeService, PermissionService permissionService)
|
||||
{
|
||||
StringBuilder buf = new StringBuilder(64);
|
||||
|
||||
@@ -207,22 +209,16 @@ public final class Path implements Iterable<Path.Element>, Serializable
|
||||
if (elementRef.getParentRef() != null)
|
||||
{
|
||||
Serializable nameProp = null;
|
||||
try
|
||||
if (permissionService.hasPermission(
|
||||
elementRef.getChildRef(), PermissionService.READ) == AccessStatus.ALLOWED)
|
||||
{
|
||||
nameProp = nodeService.getProperty(elementRef.getChildRef(), ContentModel.PROP_NAME);
|
||||
}
|
||||
catch (AccessDeniedException err)
|
||||
{
|
||||
// unable to access this property on the path - so we cannot display it's name
|
||||
}
|
||||
if (nameProp != null)
|
||||
{
|
||||
// use the name property if we find it
|
||||
// use the name property if we are allowed access to it
|
||||
elementString = nameProp.toString();
|
||||
}
|
||||
else
|
||||
{
|
||||
// revert to using QName if not found
|
||||
// revert to using QName if not
|
||||
elementString = elementRef.getQName().getLocalName();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user