09-11-2007 04:46 AM
09-17-2007 07:46 AM
09-21-2007 09:10 AM
<#——————————————————————>
<#– Shows JPG and HTML-Files in a Smartspace –>
<#——————————————————————>
<H4> Prozess ${space.properties.title} </H4>
<#list space.children as child>
<#if child.isDocument && (child.mimetype = "image/png" || child.mimetype = "image/gif" || child.mimetype= "image/jpeg")>
<img src="/alfresco${child.url}">
</#if>
</#list>
<#list space.children as child>
<#if child.isDocument && (child.mimetype = "text/html")>
${child.content}
</#if>
</#list><#——————————————————————>
<#– Shows SWF-Flash-Files in a Smartspaces –>
<#——————————————————————>
<H4> Directory ${space.properties.title} </H4>
<H6> Click your Presentation </H6>
<#list space.children as child>
<#if child.isDocument && (child.mimetype = "application/x-shockwave-flash")>
<object>
<embed src="/alfresco${child.url}" type="application/x-shockwave-flash" height="600" width="800"/>
</object>
</#if>
</#list>09-21-2007 09:31 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.