mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2216 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
45 lines
1.6 KiB
XML
45 lines
1.6 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>
|
|
|
|
<bean id="configSource" class="org.alfresco.config.source.UrlConfigSource">
|
|
<constructor-arg>
|
|
<list>
|
|
<value>classpath:alfresco/web-client-config.xml</value>
|
|
<value>classpath:alfresco/web-client-config-edit-properties.xml</value>
|
|
<value>classpath:alfresco/web-client-config-icons.xml</value>
|
|
</list>
|
|
</constructor-arg>
|
|
</bean>
|
|
|
|
<bean id="configService" class="org.alfresco.config.xml.XMLConfigService" init-method="init">
|
|
<constructor-arg>
|
|
<ref bean="configSource"/>
|
|
</constructor-arg>
|
|
</bean>
|
|
|
|
<!-- NOTE: This references a bean in the repository Spring configuration -->
|
|
<bean id="dataDictionary" class="org.alfresco.web.bean.repository.DataDictionary">
|
|
<constructor-arg>
|
|
<ref bean="DictionaryService"/>
|
|
</constructor-arg>
|
|
</bean>
|
|
|
|
<!-- the list of standard transformation mimetypes that are exposed in the UI -->
|
|
<bean id="webClientTransformMimetypes" class="java.util.ArrayList" >
|
|
<constructor-arg>
|
|
<list>
|
|
<value>text/html</value>
|
|
<value>application/pdf</value>
|
|
<value>text/plain</value>
|
|
<value>text/xml</value>
|
|
<value>application/x-shockwave-flash</value>
|
|
<value>image/gif</value>
|
|
<value>image/jpeg</value>
|
|
</list>
|
|
</constructor-arg>
|
|
</bean>
|
|
|
|
</beans>
|