07-21-2008 05:58 AM
<#list guesthome.childrenByXPath[".//*[subtypeOf('cm:content')]"] as child>
<#if (dateCompare(child.properties["cm:modified"], date, 1000*60*60*24*7) == 1) || (dateCompare(child.properties["cm:created"], date, 1000*60*60*24*7) == 1)>
<tr>
<td><a href="/alfresco${child.url}" target="new"><img src="/alfresco${child.icon16}" border=0></a></td>
<td><a href="/alfresco${child.url}" target="new">${child.properties.name}</a></td>
<td>${child.properties["cm:created"]?datetime}</td>
<td>${child.properties["cm:modified"]?datetime}</td>
</tr>
</#if>
</#list>
</table>
07-21-2008 06:17 AM
07-21-2008 10:00 AM
07-21-2008 10:33 AM
07-21-2008 10:45 AM
07-23-2008 08:40 AM
<table cellpadding=2 >
<tr>
<td></td>
<td><b>Nom</b></td>
<td><b>Date de creation</b></td>
<td><b>Date de modification</b></td>
<td><b>Chemin</b></td>
</tr>
<#list companyhome.childrenByLuceneSearch["ID:workspace\\:\\/\\/SpacesStore\\/be6e3c58-58a0-11dd-a934-afc6e4a37581"] as node>
<#list node.childrenByXPath[".//*[subtypeOf('cm:content')]"] as child>
<tr>
<td><a href="/alfresco${child.url}" target="new"><img src="/alfresco${child.icon16}" border=0></a></td>
<td><a href="/alfresco${child.url}" target="new">${child.properties.name}</a></td>
<td>${child.properties["cm:created"]?datetime}</td>
<td>${child.properties["cm:modified"]?datetime}</td>
<td>${child.displayPath}</td>
</tr>
</#list>
</#list>
</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.