mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
- New thumbnail transformation "imgpreview" that creates 400x400 previews.
- Document details preview works for webpreview and imgpreview - Helper method in alfresco.js for checking of an array contatins a value. - Helper method in alfresco.js for checking if sufficient flash player is installed. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@10476 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -50,7 +50,7 @@
|
|||||||
<property name="thumbnailDefinitions">
|
<property name="thumbnailDefinitions">
|
||||||
<list>
|
<list>
|
||||||
|
|
||||||
<!-- Small image thumbnail options -->
|
<!-- Small image thumbnail options -->
|
||||||
<bean class="org.alfresco.repo.thumbnail.ThumbnailDefinition">
|
<bean class="org.alfresco.repo.thumbnail.ThumbnailDefinition">
|
||||||
<property name="name" value="medium" />
|
<property name="name" value="medium" />
|
||||||
<property name="mimetype" value="image/jpeg"/>
|
<property name="mimetype" value="image/jpeg"/>
|
||||||
@@ -69,7 +69,7 @@
|
|||||||
<property name="placeHolderResourcePath" value="alfresco/thumbnail/thumbnail_placeholder_medium.jpg" />
|
<property name="placeHolderResourcePath" value="alfresco/thumbnail/thumbnail_placeholder_medium.jpg" />
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
<!-- Slingshot Document Library image thumbnail options -->
|
<!-- Slingshot Document Library image thumbnail options -->
|
||||||
<bean class="org.alfresco.repo.thumbnail.ThumbnailDefinition">
|
<bean class="org.alfresco.repo.thumbnail.ThumbnailDefinition">
|
||||||
<property name="name" value="doclib" />
|
<property name="name" value="doclib" />
|
||||||
<property name="mimetype" value="image/png"/>
|
<property name="mimetype" value="image/png"/>
|
||||||
@@ -90,7 +90,7 @@
|
|||||||
|
|
||||||
<!-- Web Preview thumbnail options -->
|
<!-- Web Preview thumbnail options -->
|
||||||
<bean class="org.alfresco.repo.thumbnail.ThumbnailDefinition">
|
<bean class="org.alfresco.repo.thumbnail.ThumbnailDefinition">
|
||||||
<property name="name" value="webpreview" />
|
<property name="name" value="webpreview" />
|
||||||
<property name="mimetype" value="application/x-shockwave-flash"/>
|
<property name="mimetype" value="application/x-shockwave-flash"/>
|
||||||
<property name="transformationOptions">
|
<property name="transformationOptions">
|
||||||
<bean class="org.alfresco.repo.content.transform.swf.SWFTransformationOptions">
|
<bean class="org.alfresco.repo.content.transform.swf.SWFTransformationOptions">
|
||||||
@@ -99,6 +99,25 @@
|
|||||||
</property>
|
</property>
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
|
<!-- Image preview thumbnail options -->
|
||||||
|
<bean class="org.alfresco.repo.thumbnail.ThumbnailDefinition">
|
||||||
|
<property name="name" value="imgpreview" />
|
||||||
|
<property name="mimetype" value="image/png"/>
|
||||||
|
<property name="transformationOptions">
|
||||||
|
<bean class="org.alfresco.repo.content.transform.magick.ImageTransformationOptions">
|
||||||
|
<property name="resizeOptions">
|
||||||
|
<bean class="org.alfresco.repo.content.transform.magick.ImageResizeOptions">
|
||||||
|
<property name="width" value="400"/>
|
||||||
|
<property name="height" value="400"/>
|
||||||
|
<property name="maintainAspectRatio" value="true"/>
|
||||||
|
<property name="resizeToThumbnail" value="true" />
|
||||||
|
</bean>
|
||||||
|
</property>
|
||||||
|
</bean>
|
||||||
|
</property>
|
||||||
|
<property name="placeHolderResourcePath" value="alfresco/thumbnail/thumbnail_placeholder_imgpreview.png" />
|
||||||
|
</bean>
|
||||||
|
|
||||||
<!-- User avatar image thumbnail options -->
|
<!-- User avatar image thumbnail options -->
|
||||||
<bean class="org.alfresco.repo.thumbnail.ThumbnailDefinition">
|
<bean class="org.alfresco.repo.thumbnail.ThumbnailDefinition">
|
||||||
<property name="name" value="avatar" />
|
<property name="name" value="avatar" />
|
||||||
|
BIN
config/alfresco/thumbnail/thumbnail_placeholder_imgpreview.png
Normal file
BIN
config/alfresco/thumbnail/thumbnail_placeholder_imgpreview.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.3 KiB |
Reference in New Issue
Block a user