Web Script: org/alfresco/index.post
Generated from /share/service/script/org/alfresco/index.post on Jun 13, 2026 9:37:56 PM

Script Properties
Id:org/alfresco/index.post
Short Name:Web Script Maintenance
Description:Maintain index of Web Scripts
Authentication:none
Transaction:none
Method:POST
URL Template:/index?reset={reset?}
URL Template:/?reset={reset?}
Format Style:any
Default Format:html
Negotiated Formats:[undefined]
Implementation:class org.alfresco.web.scripts.bean.IndexUpdate
Extensions:[undefined]

Store: classpath:alfresco/site-webscripts

[No implementation files]

Store: classpath:alfresco/webscripts

File: org/alfresco/index.post.desc.xml
<webscript>
  <shortname>Web Script Maintenance</shortname>
  <description>Maintain index of Web Scripts</description>
  <url>/index?reset={reset?}</url>
  <url>/?reset={reset?}</url>
  <lifecycle>internal</lifecycle>
</webscript>
File: org/alfresco/index.post.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>Alfresco Web Scripts Maintenance</@wsLib.head>
   <body>
      <div>
         <table>
            <tr>
               <td><img src="${url.context}/images/logo/AlfrescoLogo32.png" alt="Alfresco" /></td>
               <td><span class="title">Alfresco Web Scripts Maintenance</span></td>
            </tr>
         </table>
         <br/>
         <table>
            <tr align="left"><td><b>Maintenance Completed</b></td></tr>
            <#list tasks as task>
            <tr><td>${task}</td></tr>
            </#list>
         </table>
         <#if failures?size &gt; 0>
         <br/>
         <table>
            <tr align="left"><td><b>Broken Web Scripts</b></td></tr>
            <#list failures?keys as failure>
            <tr><td>${failures[failure]} (<b>${failure}</b>)</td></tr>
            </#list>
         </table>
         </#if>
         <br/>
         <table><tr><td><a href="${url.serviceContext}${url.match}">List Web Scripts</a></td></tr></table>
      </div>
   </body>
</html>