mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Merged V2.2 to HEAD
8405: Added causal exception to the runtime generated 8408: AR-2136, AR-2137, AR-2138 8410: WCM-1110, WCM-1111 8417: Stopped chiba:match() function from being inserted into bindings for xforms model elements of type xs:integer. 8419: Fixes for correct use of .empty in name spaces of QNames 8420: Finally fixes WCM-1108 and WCM-1109 8489: Merged V2.1 to V2.2 8482: Fix For AR-2163 8507: Merged V2.1 to V2.2 8504: Fix for AR-2165 - respect repo read only setting during authentication git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@8508 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -354,7 +354,7 @@ ALTER TABLE alf_qname DROP INDEX t_fk_alf_qn_ns;
|
||||
ALTER TABLE alf_qname DROP FOREIGN KEY t_fk_alf_qn_ns;
|
||||
|
||||
-- Remove the FILLER- values from the namespace uri
|
||||
UPDATE alf_namespace SET uri = 'empty' WHERE uri = 'FILLER-';
|
||||
UPDATE alf_namespace SET uri = '.empty' WHERE uri = 'FILLER-';
|
||||
UPDATE alf_namespace SET uri = SUBSTR(uri, 8) WHERE uri LIKE 'FILLER-%';
|
||||
|
||||
--
|
||||
|
@@ -355,7 +355,7 @@ DROP INDEX t_fk_alf_qn_ns;
|
||||
ALTER TABLE alf_qname DROP CONSTRAINT t_fk_alf_qn_ns;
|
||||
|
||||
-- Remove the FILLER- values from the namespace uri
|
||||
UPDATE alf_namespace SET uri = 'empty' WHERE uri = 'FILLER-';
|
||||
UPDATE alf_namespace SET uri = '.empty' WHERE uri = 'FILLER-';
|
||||
UPDATE alf_namespace SET uri = SUBSTR(uri, 8) WHERE uri LIKE 'FILLER-%';
|
||||
|
||||
--
|
||||
|
@@ -213,3 +213,10 @@ patch.wcmPermissionPatch.result=Updated ACLs: ACLS are moved to the staging area
|
||||
|
||||
patch.avmWebProjectInheritPermissions.description=Break inheritance of permissions on wca:webfolder object to hide access by default.
|
||||
patch.avmWebProjectInheritPermissions.result=Removed inheritance of permissions on all wca:webfolder objects.
|
||||
|
||||
|
||||
patch.wcmPostPermissionSnapshotPatch.description=Snapshot stores (after fixing ACLs so they are only set on the staging area store).
|
||||
patch.wcmPostPermissionSnapshotPatch.result=Snapshot complete after WCM ACL changes.
|
||||
|
||||
|
||||
|
||||
|
@@ -1390,6 +1390,30 @@
|
||||
<ref bean="avmSnapShotTriggeredIndexingMethodInterceptor" />
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
|
||||
<bean id="patch.wcmPostPermissionSnapshotPatch" class="org.alfresco.repo.admin.patch.impl.WCMPostPermissionSnapshotPatch" parent="basePatch" >
|
||||
<property name="id"><value>patch.wcmPostPermissionSnapshotPatch</value></property>
|
||||
<property name="description"><value>patch.wcmPostPermissionSnapshotPatch.description</value></property>
|
||||
<property name="fixesFromSchema"><value>0</value></property>
|
||||
<property name="fixesToSchema"><value>122</value></property>
|
||||
<property name="targetSchema"><value>123</value></property>
|
||||
<!-- helper beans -->
|
||||
<property name="avmService">
|
||||
<ref bean="AVMService" />
|
||||
</property>
|
||||
<property name="avmSnapShotTriggeredIndexingMethodInterceptor">
|
||||
<ref bean="avmSnapShotTriggeredIndexingMethodInterceptor" />
|
||||
</property>
|
||||
<property name="aclDaoComponent">
|
||||
<ref bean="aclDaoComponent" />
|
||||
</property>
|
||||
<property name="dependsOn" >
|
||||
<list>
|
||||
<ref bean="patch.wcmPermissionPatch" />
|
||||
</list>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<bean id="patch.avmWebProjectInheritPermissions02" class="org.alfresco.repo.admin.patch.impl.AVMWebProjectInheritPermissionsPatch" parent="basePatch">
|
||||
<property name="id"><value>patch.avmWebProjectInheritPermissions02</value></property>
|
||||
|
Reference in New Issue
Block a user