Mimetypes available for transform action in the UI are now defined in an overrideable bean

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2216 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2006-01-26 13:46:46 +00:00
parent b36a235769
commit 9160578c9a
5 changed files with 70 additions and 54 deletions

View File

@@ -25,5 +25,20 @@
<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>