mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged V3.2 to HEAD
17410: Merged V3.1 to V3.2 16667: (record-only) Fix ETHREEOH-2477 - group-based perms (MT env) 16883: Fix ETHREEOH-1544 - cannot paste an item, if cut from another web project (modifyLock errror) 16918: Fix ETHREEOH-3053 - Deployment of non-stale file in a stale layered folder removes the file from FSR 16947: (record-only) Temporarily comment-out testSubmitChangedAssets1 (intermittent permission failure) 17162: Fix ETHREEOH-2850 - submitting delete of (web form) xml instance does not submit the associated deleted renditions 17319: Fix ETHREEOH-3111 - ManageReviewTaskDialog (fix-up contributed patch) 17418: Merged V3.1 to V3.2 17141: Fix ETHREEOH-3088: Cut/Paste into self causes stack overflow 17216: Fixed ETHREEOH-3170: DB errors on MSSQL with Snapshot Isolation enabled while CIFS copying 17255: Fixed ETHREEOH-3180: Error appears when trying to search resources on Manage Task page 17419: Fix for ETHREEOH-3296: Enterprise 3.X / Permissions Error When Cut & Paste on Sub-Folder 17421: Review and tweaks of DB script port 17423: Follow-on for ETHREEOH-3088 17424: Missed check-in for ETHREEOH-3032 (CHK-10240) 17437: ETHREEOH-2790 - OpenOffice-startup-context.xml needs to also initiate the connection to OpenOffice 17441: Build fix: Fix AVM permission inheritance to match DM and fix common permission dao component 17470: Fix for ETHREEOH-3350: Admin Console - Viewing user properties for user without home folder throws exception ___________________________________________________________________ Modified: svn:mergeinfo Merged /alfresco/BRANCHES/V3.1:r16667,16883,16918,16947,17141,17162,17216,17255,17319 Merged /alfresco/BRANCHES/V3.2:r17410,17418-17419,17421,17423-17424,17437,17441,17470 git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@18137 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2005-2009 Alfresco Software Limited.
|
||||
* Copyright (C) 2005-2009 Alfresco Software Limited.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
@@ -45,9 +45,9 @@ import org.alfresco.repo.domain.DbAuthority;
|
||||
import org.alfresco.repo.domain.DbPermission;
|
||||
import org.alfresco.repo.domain.Node;
|
||||
import org.alfresco.repo.domain.QNameDAO;
|
||||
import org.alfresco.repo.domain.avm.AVMNodeDAO;
|
||||
import org.alfresco.repo.domain.avm.AVMNodeEntity;
|
||||
import org.alfresco.repo.domain.patch.PatchDAO;
|
||||
import org.alfresco.repo.domain.avm.AVMNodeDAO;
|
||||
import org.alfresco.repo.domain.avm.AVMNodeEntity;
|
||||
import org.alfresco.repo.domain.patch.PatchDAO;
|
||||
import org.alfresco.repo.security.permissions.ACEType;
|
||||
import org.alfresco.repo.security.permissions.ACLCopyMode;
|
||||
import org.alfresco.repo.security.permissions.ACLType;
|
||||
@@ -113,12 +113,12 @@ public class AclDaoComponentImpl extends HibernateDaoSupport implements AclDaoCo
|
||||
|
||||
/** Access to QName entities */
|
||||
private QNameDAO qnameDAO;
|
||||
|
||||
/** Access to AVMNode queries */
|
||||
private AVMNodeDAO avmNodeDAO;
|
||||
|
||||
/** Access to additional Patch queries */
|
||||
private PatchDAO patchDAO;
|
||||
|
||||
/** Access to AVMNode queries */
|
||||
private AVMNodeDAO avmNodeDAO;
|
||||
|
||||
/** Access to additional Patch queries */
|
||||
private PatchDAO patchDAO;
|
||||
|
||||
/** a transactionally-safe cache to be injected */
|
||||
private SimpleCache<Long, AccessControlList> aclCache;
|
||||
@@ -174,17 +174,17 @@ public class AclDaoComponentImpl extends HibernateDaoSupport implements AclDaoCo
|
||||
{
|
||||
this.qnameDAO = qnameDAO;
|
||||
}
|
||||
|
||||
public void setPatchDAO(PatchDAO patchDAO)
|
||||
{
|
||||
this.patchDAO = patchDAO;
|
||||
}
|
||||
|
||||
public void setAvmNodeDAO(AVMNodeDAO avmNodeDAO)
|
||||
{
|
||||
this.avmNodeDAO = avmNodeDAO;
|
||||
}
|
||||
|
||||
|
||||
public void setPatchDAO(PatchDAO patchDAO)
|
||||
{
|
||||
this.patchDAO = patchDAO;
|
||||
}
|
||||
|
||||
public void setAvmNodeDAO(AVMNodeDAO avmNodeDAO)
|
||||
{
|
||||
this.avmNodeDAO = avmNodeDAO;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the ACL cache
|
||||
*
|
||||
@@ -1277,7 +1277,7 @@ public class AclDaoComponentImpl extends HibernateDaoSupport implements AclDaoCo
|
||||
{
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
|
||||
public AccessControlList getAccessControlList(Long id)
|
||||
{
|
||||
AccessControlList acl = aclCache.get(id);
|
||||
@@ -1434,7 +1434,7 @@ public class AclDaoComponentImpl extends HibernateDaoSupport implements AclDaoCo
|
||||
}
|
||||
else
|
||||
{
|
||||
// Assuem we are just resetting it to inherit as before
|
||||
// Assume we are just resetting it to inherit as before
|
||||
if (targetAcl.getInheritsFrom() != null)
|
||||
{
|
||||
inheritedAcl = (DbAccessControlList) getHibernateTemplate().get(DbAccessControlListImpl.class, targetAcl.getInheritsFrom());
|
||||
@@ -1786,14 +1786,14 @@ public class AclDaoComponentImpl extends HibernateDaoSupport implements AclDaoCo
|
||||
DbAccessControlList acl = (DbAccessControlList) getHibernateTemplate().get(DbAccessControlListImpl.class, id);
|
||||
return acl;
|
||||
}
|
||||
|
||||
|
||||
public List<Long> getAvmNodesByACL(final Long id)
|
||||
{
|
||||
|
||||
List<Long> avmNodeIds = avmNodeDAO.getAVMNodesByAclId(id);
|
||||
return avmNodeIds;
|
||||
}
|
||||
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
private List<AclChange> disableInheritanceImpl(Long id, boolean setInheritedOnAcl, DbAccessControlList acl)
|
||||
{
|
||||
@@ -2224,7 +2224,7 @@ public class AclDaoComponentImpl extends HibernateDaoSupport implements AclDaoCo
|
||||
/**
|
||||
* How many nodes are noew in store (approximate)
|
||||
*
|
||||
* @return - the number of new nodes - approximate
|
||||
* @return - the number of new nodes - approximate
|
||||
*/
|
||||
public Long getNewInStore()
|
||||
{
|
||||
@@ -2233,22 +2233,22 @@ public class AclDaoComponentImpl extends HibernateDaoSupport implements AclDaoCo
|
||||
}
|
||||
|
||||
/**
|
||||
* Find layered directories Used to improve performance during patching and cascading the effect of permission
|
||||
* Find layered directories Used to improve performance during patching and cascading the effect of permission
|
||||
* changes between layers
|
||||
*
|
||||
* @return - layered directories
|
||||
*/
|
||||
public List<Indirection> getLayeredDirectories()
|
||||
{
|
||||
List<AVMNodeEntity> ldNodeEntities = avmNodeDAO.getAllLayeredDirectories();
|
||||
|
||||
ArrayList<Indirection> indirections = new ArrayList<Indirection>(ldNodeEntities.size());
|
||||
|
||||
for (AVMNodeEntity ldNodeEntity : ldNodeEntities)
|
||||
List<AVMNodeEntity> ldNodeEntities = avmNodeDAO.getAllLayeredDirectories();
|
||||
|
||||
ArrayList<Indirection> indirections = new ArrayList<Indirection>(ldNodeEntities.size());
|
||||
|
||||
for (AVMNodeEntity ldNodeEntity : ldNodeEntities)
|
||||
{
|
||||
|
||||
Long from = ldNodeEntity.getId();
|
||||
String to = ldNodeEntity.getIndirection();
|
||||
Long from = ldNodeEntity.getId();
|
||||
String to = ldNodeEntity.getIndirection();
|
||||
Integer version = ldNodeEntity.getIndirectionVersion();
|
||||
indirections.add(new Indirection(from, to, version));
|
||||
}
|
||||
@@ -2256,21 +2256,21 @@ public class AclDaoComponentImpl extends HibernateDaoSupport implements AclDaoCo
|
||||
}
|
||||
|
||||
/**
|
||||
* Find layered files Used to improve performance during patching and cascading the effect of permission changes
|
||||
* Find layered files Used to improve performance during patching and cascading the effect of permission changes
|
||||
* between layers
|
||||
*
|
||||
* @return - layered files
|
||||
* @return - layered files
|
||||
*/
|
||||
public List<Indirection> getLayeredFiles()
|
||||
{
|
||||
List<AVMNodeEntity> lfNodeEntities = avmNodeDAO.getAllLayeredFiles();
|
||||
|
||||
ArrayList<Indirection> indirections = new ArrayList<Indirection>(lfNodeEntities.size());
|
||||
|
||||
for (AVMNodeEntity lfNodeEntity : lfNodeEntities)
|
||||
List<AVMNodeEntity> lfNodeEntities = avmNodeDAO.getAllLayeredFiles();
|
||||
|
||||
ArrayList<Indirection> indirections = new ArrayList<Indirection>(lfNodeEntities.size());
|
||||
|
||||
for (AVMNodeEntity lfNodeEntity : lfNodeEntities)
|
||||
{
|
||||
Long from = lfNodeEntity.getId();
|
||||
String to = lfNodeEntity.getIndirection();
|
||||
Long from = lfNodeEntity.getId();
|
||||
String to = lfNodeEntity.getIndirection();
|
||||
Integer version = lfNodeEntity.getIndirectionVersion();
|
||||
indirections.add(new Indirection(from, to, version));
|
||||
}
|
||||
|
Reference in New Issue
Block a user