07-27-2007 02:30 AM
08-03-2007 05:07 AM
<#macro dir node depth>
<#list node.children as c>
<tr>
<td width=16>
<#if c.isDocument>
<a href="${url.context}${c.url}" target="new"><img src="${url.context}${c.icon16}" alt="${c.name}" title="${c.name}" border=0></a>
<#else>
<img src="${url.context}${c.icon16}" alt="${c.name}" title="${c.name}" border=0>
</#if>
</td>
<td>
<font size='${4 - depth}'>${c.name}</div>
</td>
<td>
${c.properties.modified?datetime}
</td>
</tr>
<#if c.isContainer && c.children?size != 0>
<@dir node=c depth=depth+1/>
</#if>
</#list>
</#macro>
<table>
<tr><th></th><th>Name</th><th>Modified</th></tr>
<@dir node=userhome depth=0/>
</table>
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.