mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-07 18:25:23 +00:00
11849: Code/doc clean-up 11850: Show Folders and Simple View buttons not showing correct caption for overridden default 11851: DocLib "move" action needs delete permission 11852: ETHREEOH-662 Incorrect display of 'Invite', 'Edit Site Details', 'Customize Site', 'Customize Dashboard' buttons group in several cases 11855: Removal of obsolete PageRenderer source and config 11856: Log4j added to classpath for Eclipse project build (for recent NTLM filter logging changes) 11857: Added logging settings for various useful connector/ntlm classes 11858: Fixed the passthru authentication logic when a domain name is not specified by the client. The first passthru server that does not have a domain name set will be used. 11868: Output errors message(s) when the Share URL is configured incorrectly 11871: Removed file checked in accidentally, this is generated by continuous build 11872: Changed the WebDAV user object session attribute so that it does not clash with the web-client user attribute. The WebDAV user object is not derived from the User object that the web-client uses. 11874: Fixed ETHREEOH-732: Enabling benchmark-override-context.xml leads to ClassNotFoundException 11875: Fixed ETHREEOH-733: Spring jar missing benchmark remote client git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@12484 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
84 lines
2.8 KiB
XML
84 lines
2.8 KiB
XML
<?xml version='1.0' encoding='UTF-8'?>
|
|
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
|
|
|
|
<beans>
|
|
|
|
<!-- Disable indexing. This is not normally recommended -->
|
|
<!--
|
|
<bean id="nodeIndexer" class="java.util.ArrayList" />
|
|
-->
|
|
|
|
<bean id="integrityChecker" class="org.alfresco.repo.node.integrity.IntegrityChecker">
|
|
<property name="policyComponent">
|
|
<ref bean="policyComponent"/>
|
|
</property>
|
|
<property name="dictionaryService">
|
|
<ref bean="dictionaryService" />
|
|
</property>
|
|
<property name="nodeService">
|
|
<ref bean="nodeService" />
|
|
</property>
|
|
<property name="enabled">
|
|
<value>false</value> <!-- on/off switch -->
|
|
</property>
|
|
<property name="traceOn">
|
|
<value>false</value> <!-- use only to trace problems -->
|
|
</property>
|
|
<property name="failOnViolation" >
|
|
<value>false</value> <!-- set to true to generate runtime exceptions upon violation -->
|
|
</property>
|
|
<property name="maxErrorsPerTransaction" >
|
|
<value>5</value> <!-- limit output (exception and log) to the first N violation messages -->
|
|
</property>
|
|
</bean>
|
|
|
|
<bean id="incompleteNodeTagger" class="org.alfresco.repo.node.integrity.IncompleteNodeTagger" >
|
|
<property name="policyComponent">
|
|
<ref bean="policyComponent"/>
|
|
</property>
|
|
<property name="dictionaryService">
|
|
<ref bean="dictionaryService" />
|
|
</property>
|
|
<property name="nodeService">
|
|
<ref bean="nodeService" />
|
|
</property>
|
|
</bean>
|
|
|
|
<bean id="actionsAspect" class="org.alfresco.repo.action.ActionsAspect">
|
|
<property name="nodeService">
|
|
<ref bean="nodeService"/>
|
|
</property>
|
|
<property name="policyComponent">
|
|
<ref bean="policyComponent"/>
|
|
</property>
|
|
<property name="ruleService">
|
|
<ref bean="ruleService"/>
|
|
</property>
|
|
</bean>
|
|
<bean id="rulesAspect" class="org.alfresco.repo.rule.RulesAspect">
|
|
<property name="nodeService">
|
|
<ref bean="nodeService"/>
|
|
</property>
|
|
<property name="policyComponent">
|
|
<ref bean="policyComponent"/>
|
|
</property>
|
|
<property name="ruleService">
|
|
<ref bean="ruleService"/>
|
|
</property>
|
|
</bean>
|
|
<bean id="rule-trigger-base" abstract="true">
|
|
<property name="policyComponent">
|
|
<ref bean="policyComponent"/>
|
|
</property>
|
|
<property name="nodeService">
|
|
<ref bean="nodeService"/>
|
|
</property>
|
|
<property name="authenticationComponent">
|
|
<ref bean="authenticationComponent"/>
|
|
</property>
|
|
<property name="dictionaryService">
|
|
<ref bean="dictionaryService"/>
|
|
</property>
|
|
</bean>
|
|
|
|
</beans> |