04-27-2009 07:27 AM
<table>
<#assign l_space = companyhome.childByNamePath["My Space/Test Space"]>
<#list l_space.children as doc>
<#if doc.isDocument>
<tr>
<td>
<a class="title"href="/alfresco/${doc.url}">${doc.properties.title}</a>
</td>
</tr>
<tr>
<td style="padding-left:8px">
<#if (doc.content?length > 500)>
<small>${doc.content[0..500]}…</small>
[ 270 ]
<#else>
<small>${doc.content}</small>
</#if>
</td>
</tr>
<tr><td> <HR> </td></tr>
</#if>
</#list>
</table>
04-28-2009 05:29 AM
${cropContent(doc.properties.content, 500)}
${doc.properties["cm:content"].getContentAsText(500)}
04-28-2009 07:34 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.