08-23-2007 04:52 PM
<aspects>
<aspect name="cu:sourceInformation">
<title>Source Information</title>
<properties>
<property name="cu:sourceTitle">
<type>d:text</type>
</property>
<property name="cu:imprint">
<type>d:text</type>
</property>
<property name="cu:mcode">
<type>d:text</type>
</property>
<property name="cu:isbn">
<type>d:text</type>
</property>
<property name="cu:isbn13">
<type>d:text</type>
</property>
</properties>
</aspect>
</aspects>
<#list folder.children as child><#if child.isDocument>${child.name}|${xmldate(child.properties.modified)}|${child.properties.description!""}|${child.properties.creator}|${child.properties["cu:isbn"]}<br /></#if></#list>
09-03-2007 07:10 AM
09-04-2007 10:33 AM
09-04-2007 11:07 AM
09-06-2007 12:01 PM
09-11-2007 10:39 AM
<table>
<#– Get a list of all the property names for the document –>
<#assign props = document.properties?keys>
<#list props as t>
<#– If the property exists –>
<#if document.properties[t]?exists>
<#– If it is a date, format it accordingly–>
<#if document.properties[t]?is_date>
<tr><td>${t} = ${document.properties[t]?date}</td></tr>
<#– If it is a boolean, format it accordingly–>
<#elseif document.properties[t]?is_boolean>
<tr><td>${t} = ${document.properties[t]?string("yes", "no")}</td></tr>
<#– Otherwise treat it as a string –>
<#else>
<tr><td>${t} = ${document.properties[t]}</td></tr>
</#if>
</#if>
</#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.