| Web Script: org/alfresco/indexfailures.get |
| Generated from /share/service/script/org/alfresco/indexfailures.get on Jun 13, 2026 9:38:19 PM |
| Script Properties | |
| Id: | org/alfresco/indexfailures.get |
| Short Name: | Failed Web Scripts Index |
| Description: | Retrieve an index of all failed Web Scripts |
| Authentication: | none |
| Transaction: | none |
| Method: | GET |
| URL Template: | /index/failures |
| Format Style: | any |
| Default Format: | html |
| Negotiated Formats: | [undefined] |
| Implementation: | class org.alfresco.web.scripts.bean.Index |
| Extensions: | [undefined] |
| [No implementation files] |
| File: org/alfresco/indexfailures.get.desc.xml |
<webscript> <shortname>Failed Web Scripts Index</shortname> <description>Retrieve an index of all failed Web Scripts</description> <url>/index/failures</url> <lifecycle>internal</lifecycle> </webscript> |
| File: org/alfresco/indexfailures.get.html.ftl |
<#import "/org/alfresco/webscripts.lib.html.ftl" as wsLib/>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<@wsLib.head>Index of Failed Web Scripts</@wsLib.head>
<body>
<div>
<@wsLib.indexheader size=failures?size>Index of Failed Web Scripts</@wsLib.indexheader>
<br>
<@wsLib.home/>
<br>
<table>
<tr><td>Path</td><td>Failure</td></tr>
<#list failures?keys as path>
<tr><td>${path}</td><td>${failures[path]}</td></tr>
</#list>
</table>
</div>
</body>
</html> |