mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-30 18:15:39 +00:00
17366: Fix for ETHREEOH-2761: UI - Cannot search in deleted items with more than 2 Japanese characters 17369: Fix for ETHREEOH-1771: Unable to use language-specific-index-and-search-context.xml 17383: Putting explicit version name on PDFRenderer.jar ___________________________________________________________________ Modified: svn:mergeinfo Merged /alfresco/BRANCHES/V3.2:r17366,17369,17383 git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@18133 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
48 lines
1.8 KiB
XML
48 lines
1.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>
|
|
<!-- This config will index tokens for all language searches and base language searches -->
|
|
<!-- By default the serach will only find ML docs and content in the correct language -->
|
|
<!-- ONLY USE THIS FOR CLEAN INSTALLATIONS UNTIL THERE IS A FIX TO SET LOCALE FOR ALL CONTENT -->
|
|
<!-- - or old content will be indexed with no locale and you will not find it ... -->
|
|
|
|
<!-- See MLAnalysisMode for all the available options -->
|
|
|
|
<bean id="admLuceneIndexerAndSearcherFactory"
|
|
parent="abstractLuceneIndexerAndSearcherFactory"
|
|
class="org.alfresco.repo.search.impl.lucene.ADMLuceneUnIndexedIndexAndSearcherFactory">
|
|
<property name="nodeService">
|
|
<ref bean="mlAwareNodeService" />
|
|
</property>
|
|
<property name="tenantService">
|
|
<ref bean="tenantService"/>
|
|
</property>
|
|
<property name="dictionaryService">
|
|
<ref bean="dictionaryService" />
|
|
</property>
|
|
<property name="nameSpaceService">
|
|
<ref bean="namespaceService" />
|
|
</property>
|
|
<property name="contentService">
|
|
<ref bean="contentService" />
|
|
</property>
|
|
<property name="queryRegister">
|
|
<ref bean="queryRegisterComponent" />
|
|
</property>
|
|
<property name="threadPoolExecutor">
|
|
<ref bean="indexThreadPoolExecutor"></ref>
|
|
</property>
|
|
<property name="bulkLoader">
|
|
<ref bean="nodeDaoServiceImpl"></ref>
|
|
</property>
|
|
<property name="defaultMLSearchAnalysisMode">
|
|
<value>EXACT_LANGUAGE</value>
|
|
</property>
|
|
|
|
</bean>
|
|
|
|
|
|
|
|
|
|
</beans> |