Fixes to guest permissions and patch

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2251 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Andrew Hind
2006-01-30 16:50:58 +00:00
parent 5ccf3681e9
commit 6bcc456fcd
3 changed files with 28 additions and 8 deletions

View File

@@ -131,6 +131,9 @@
<property name="namespaceService">
<ref bean="namespaceService" />
</property>
<property name="messageSource">
<ref bean="guestMessageSource" />
</property>
</bean>
<bean id="patch.fixNodeSerializableValues" class="org.alfresco.repo.admin.patch.impl.NodePropertySerializablePatch" parent="basePatch" >
<property name="id"><value>patch.fixNodeSerializableValues</value></property>
@@ -144,6 +147,14 @@
</property>
</bean>
<bean id="guestMessageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
<property name="basenames">
<list>
<value>alfresco/messages/bootstrap-spaces</value>
</list>
</property>
</bean>
<!-- This component ensures that patches get applied on startup -->
<!-- The order is important here. All the self-registering patches must be defined before this bean -->
<bean id="patchExecuter"