mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged V3.2 to HEAD
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@18314 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -296,14 +296,26 @@
|
|||||||
|
|
||||||
<import resource="classpath*:alfresco/extension/bootstrap/*-context.xml" />
|
<import resource="classpath*:alfresco/extension/bootstrap/*-context.xml" />
|
||||||
|
|
||||||
<!-- Start third party transformer Subsystem,
|
<!-- Start third party transformer Subsystem. -->
|
||||||
stated here so the index recovery can use open office transformation -->
|
|
||||||
<bean id="thirdparty" class="org.alfresco.repo.management.subsystems.ChildApplicationContextFactory" parent="abstractPropertyBackedBean">
|
<bean id="thirdparty" class="org.alfresco.repo.management.subsystems.ChildApplicationContextFactory" parent="abstractPropertyBackedBean">
|
||||||
<property name="autoStart">
|
<property name="autoStart">
|
||||||
<value>true</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
|
<bean id="OOoDirect" class="org.alfresco.repo.management.subsystems.ChildApplicationContextFactory" parent="abstractPropertyBackedBean">
|
||||||
|
<property name="autoStart">
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
|
</bean>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Bootstrap any enterprise contexts -->
|
||||||
|
<!-- This is placed at this point because we need the enterprise OOoJodConverter subsystem started
|
||||||
|
before reindexing begins. -->
|
||||||
|
<import resource="classpath*:alfresco/enterprise/bootstrap/*-context.xml" />
|
||||||
|
|
||||||
|
|
||||||
<!-- Perform index recovery before applying any patches -->
|
<!-- Perform index recovery before applying any patches -->
|
||||||
<!-- rebuild the index if required - before we check that it is there -->
|
<!-- rebuild the index if required - before we check that it is there -->
|
||||||
|
|
||||||
|
@@ -179,10 +179,10 @@
|
|||||||
</property>
|
</property>
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
<!-- Import the OpenOffice extractor worker from the third party subsystem -->
|
<!-- Import the OpenOffice extractor worker from the OOoDirect subsystem -->
|
||||||
<bean id="extracter.worker.OpenOffice" class="org.alfresco.repo.management.subsystems.SubsystemProxyFactory">
|
<bean id="extracter.worker.OpenOffice" class="org.alfresco.repo.management.subsystems.SubsystemProxyFactory">
|
||||||
<property name="sourceApplicationContextFactory">
|
<property name="sourceApplicationContextFactory">
|
||||||
<ref bean="thirdparty" />
|
<ref bean="OOoDirect" />
|
||||||
</property>
|
</property>
|
||||||
<property name="sourceBeanName">
|
<property name="sourceBeanName">
|
||||||
<value>extracter.worker.OpenOffice</value>
|
<value>extracter.worker.OpenOffice</value>
|
||||||
@@ -388,10 +388,10 @@
|
|||||||
</property>
|
</property>
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
<!-- Import the OpenOffice transformer worker from the third party subsystem -->
|
<!-- Import the OpenOffice transformer worker from the OOoDirect subsystem -->
|
||||||
<bean id="transformer.worker.OpenOffice" class="org.alfresco.repo.management.subsystems.SubsystemProxyFactory">
|
<bean id="transformer.worker.OpenOffice" class="org.alfresco.repo.management.subsystems.SubsystemProxyFactory">
|
||||||
<property name="sourceApplicationContextFactory">
|
<property name="sourceApplicationContextFactory">
|
||||||
<ref bean="thirdparty" />
|
<ref bean="OOoDirect" />
|
||||||
</property>
|
</property>
|
||||||
<property name="sourceBeanName">
|
<property name="sourceBeanName">
|
||||||
<value>transformer.worker.OpenOffice</value>
|
<value>transformer.worker.OpenOffice</value>
|
||||||
|
@@ -11,6 +11,9 @@
|
|||||||
<property name="failOnError">
|
<property name="failOnError">
|
||||||
<value>false</value>
|
<value>false</value>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="enabled">
|
||||||
|
<value>${ooo.enabled}</value>
|
||||||
|
</property>
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
<!-- We have to convert the user directory to an Open Office compatible URI -->
|
<!-- We have to convert the user directory to an Open Office compatible URI -->
|
@@ -0,0 +1,6 @@
|
|||||||
|
# External executable locations
|
||||||
|
ooo.exe=soffice
|
||||||
|
|
||||||
|
# This property determines whether the OOoDirect services are available.
|
||||||
|
# Allowed values: "true" or "false"
|
||||||
|
ooo.enabled=true
|
@@ -1,2 +0,0 @@
|
|||||||
# External executable locations
|
|
||||||
ooo.exe=soffice
|
|
Reference in New Issue
Block a user