Merged V2.0 to HEAD

svn merge svn://svn.alfresco.com:3691/alfresco/BRANCHES/V2.0@5212 svn://svn.alfresco.com:3691/alfresco/BRANCHES/V2.0@5220 .
      - Installer updates (minor)
      - VersionService implementation


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5221 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2007-02-27 01:01:03 +00:00
parent 7643ba276c
commit 2e252ee520
8 changed files with 231 additions and 29 deletions

View File

@@ -1,4 +1,5 @@
<view:view xmlns:view="http://www.alfresco.org/view/repository/1.0">
<view:view xmlns:view="http://www.alfresco.org/view/repository/1.0"
xmlns:ver="http://www.alfresco.org/model/versionstore/1.0">
<view:reference view:pathref="/">
<!-- Apply All access to Everyone on root node of light weight versin store -->
@@ -8,6 +9,7 @@
<view:permission>All</view:permission>
</view:ace>
</view:acl>
<ver:versionStoreRoot/>
</view:reference>
</view:view>

View File

@@ -112,6 +112,9 @@ patch.systemDescriptorContent.result=Added the version properties content to the
patch.systemDescriptorContent.err.no_version_properties=The version.properties resource could not be found.
patch.systemDescriptorContent.err.no_descriptor=The system descriptor could not be found.
patch.versionHistoryPerformance.description=Improves the performance of version history lookups.
patch.versionHistoryPerformance.result=Updated {0} version history objects to improve performance.
patch.multilingualBootstrap.description=Bootstraps the node that will hold the multilingual containers.
patch.wcmFolders.description=Ensures the existance of the WCM specific 'Web Projects' and 'Web Forms' folders.
@@ -131,4 +134,4 @@ patch.userAndPersonUserNamesAsIdentifiers.description=Reindex user:user and cm:p
patch.userAndPersonUserNamesAsIdentifiers.result=Reindexed user:user and cm:person uids as identifiers
patch.contentFormFolderType.description=Update WCM Content Form folder type.
patch.contentFormFolderType.result=Updated {0} WCM Content Form objects to 'wcm:formfolder' type.
patch.contentFormFolderType.result=Updated {0} WCM Content Form objects to 'wcm:formfolder' type.

View File

@@ -517,6 +517,16 @@
<ref bean="contentService" />
</property>
</bean>
<bean id="patch.versionHistoryPerformance" class="org.alfresco.repo.admin.patch.impl.VersionHistoryPerformancePatch" parent="basePatch" >
<property name="id"><value>patch.versionHistoryPerformance</value></property>
<property name="description"><value>patch.versionHistoryPerformance.description</value></property>
<property name="fixesFromSchema"><value>0</value></property>
<property name="fixesToSchema"><value>24</value></property>
<property name="targetSchema"><value>25</value></property>
<property name="versionService">
<ref bean="VersionService" />
</property>
</bean>
<bean id="patch.multilingualBootstrap" class="org.alfresco.repo.admin.patch.impl.GenericBootstrapPatch" parent="basePatch" >
<property name="id"><value>patch.multilingualBootstrap</value></property>
<property name="description"><value>patch.multilingualBootstrap.description</value></property>