06-25-2008 06:44 AM
07-28-2008 06:52 AM
08-01-2008 07:00 AM
08-05-2008 06:38 AM
08-19-2008 02:07 PM
Can somebody send me the screen shot of audit report, please????
09-15-2008 09:00 AM
<#– Shows some general audit info about the current document –>
<#if document?exists>
<h4>Current Docuement Audit Info</h4>
<b>Name:</b> ${document.name}
<br>
<br>
<table border="1" width='100%' cellspacing="1" cellpadding="4">
<tr align="left" class="rowheader">
<th>Date</th>
<th>User</th>
<th>User Address</th>
<th>Action</th>
</tr>
<#list document.auditTrail as t>
<#if t.auditMethod?exists>
<#if t.auditMethod == "createNode" || t.auditMethod == "create" || t.auditMethod == "getWriter" || t.auditMethod == "checkout" || t.auditMethod == "unlock" || t.auditMethod == "lock" || t.auditMethod == "copy" || t.auditMethod == "checkin" || t.auditMethod == "move" || t.auditMethod=="getReader">
<tr>
<td>${t.date}</td>
<td>${t.userIdentifier}</td>
<td>${t.hostAddress}</td>
<#– Shows some USER FRINDLY info based on method –>
<#if t.auditMethod?exists>
<#if t.auditMethod == "create">
<td>Created</td>
</#if>
<#if t.auditMethod == "createNode" && t.methodArgumentsAsStrings[1] == "{http://www.alfresco.org/model/content/1.0}contains">
<td>Create</td>
</#if>
<#if t.auditMethod == "getWriter">
<td>Edit</td>
</#if>
<#if t.auditMethod == "getReader">
<td>Read</td>
</#if>
<#if t.auditMethod == "checkout" || t.auditMethod == "unlock">
<td>Check-Out</td>
</#if>
<#if t.auditMethod == "copy">
<td>Copy</td>
</#if>
<#if t.auditMethod == "checkin" || t.auditMethod == "lock">
<td>Check-In</td>
</#if>
<#if t.auditMethod == "move">
<td>Paste</td>
</#if>
<#if t.auditMethod == "createNode" && t.methodArgumentsAsStrings[2]== "{http://www.alfresco.org/model/forum/1.0}discussion">
<td>Discussion Create</td>
</#if>
<#else>
<td> </td>
</#if>
</tr>
</#if>
</#if>
</#list>
</table>
<#elseif space?exists>
<h4>Current Space Audit Info:</h4>
<b>Name:</b> ${space.name}<br><br>
<table border="1" width="100%" cellspacing="1" cellpadding="4">
<tr align="left" class="rowheader">
<th>Date</th>
<th>User</th>
<th>User Address</th>
<th>Action</th>
<th>Type</th>
<th>Name</th>
</tr>
<#list space.auditTrail as t>
<#if t.auditMethod == "create" || t.auditMethod == "getWriter" || t.auditMethod == "checkout" || t.auditMethod == "copy" || t.auditMethod == "checkin" || t.auditMethod == "move" || t.auditMethod=="getReader" ||t.auditMethod=="createNode" >
<tr>
<td>${t.date}</td>
<td>${t.userIdentifier}</td>
<td>${t.hostAddress}</td>
<#– Shows some USER FRINDLY info based on method –>
<#if t.auditMethod?exists>
<#if t.auditMethod == "create">
<td>Created </td>
<#if t.methodArgumentsAsStrings[2]=="{http://www.alfresco.org/model/content/1.0}folder">
<td> Folder </td>
<td>${t.methodArgumentsAsStrings[1]}</td>
<#else>
<td> File </td>
<td>${t.methodArgumentsAsStrings[1]}</td>
</#if>
</#if>
<#if t.auditMethod == "getWriter">
<td>Edit</td>
<td>File</td>
</#if>
<#if t.auditMethod == "getReader">
<td>Read</td>
<td>File</td>
</#if>
<#if t.auditMethod == "checkout">
<td>Check-out</td>
<td> File</td>
</#if>
<#if t.auditMethod == "copy">
<td> Copy</td>
<td> File</td>
<td><#assign i = t.methodArgumentsAsStrings[2]?last_index_of("}") >
${t.methodArgumentsAsStrings[2]?substring(i+1)}</td>
</#if>
<#if t.auditMethod == "checkin">
<td>Check-in</td>
<td> File</td>
</#if>
<#if t.auditMethod == "move">
<td> Paste</td>
<#if t.returnObjectAsString?exists>
<#assign fileinfo = t.returnObjectAsString >
<#if fileinfo?contains("true")><td>Folder</td> <#else><td>File</td> </#if>
</#if>
<td><#assign i = t.methodArgumentsAsStrings[2]?last_index_of("}") >
${t.methodArgumentsAsStrings[2]?substring(i+1)}</td>
</#if>
<#if t.auditMethod == "createNode">
<#if t.methodArgumentsAsStrings[2]?exists>
<td> Created</td>
<td> File</td>
<td>
<#assign i = t.methodArgumentsAsStrings[2]?last_index_of("}") >
${t.methodArgumentsAsStrings[2]?substring(i+1)}
</td>
</#if>
</#if>
<#else>
<td> </td>
</#if>
</tr>
</#if>
</#list>
</table>
</#if>09-18-2008 09:46 AM
10-10-2008 02:30 AM
10-10-2008 06:22 AM
10-10-2008 07:03 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.