Web Script: org/alfresco/index.get
Generated from /share/service/script/org/alfresco/index.get on Jun 14, 2026 8:56:28 AM

Script Properties
Id:org/alfresco/index.get
Short Name:Web Scripts Home
Description:Web Scripts Home
Authentication:none
Transaction:none
Method:GET
URL Template:/
URL Template:/index
Format Style:any
Default Format:html
Negotiated Formats:[undefined]
Implementation:class org.alfresco.web.scripts.bean.Index
Extensions:[undefined]

Store: classpath:alfresco/site-webscripts

[No implementation files]

Store: classpath:alfresco/webscripts

File: org/alfresco/index.get.desc.xml
<webscript>
  <shortname>Web Scripts Home</shortname>
  <description>Web Scripts Home</description>
  <url>/</url>
  <url>/index</url>
  <lifecycle>internal</lifecycle>
</webscript>
File: org/alfresco/index.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>${msg("alfresco.index.title")}</@wsLib.head>
   <body>
      <div>
      <@wsLib.indexheader>Web Scripts Home</@wsLib.indexheader>
      <#if failures?size &gt; 0>
      <br/>
      <table>
         <tr><td><a href="${url.serviceContext}/index/failures">(+${failures?size} failed)</td></tr>
      </table>
      </#if>      
      <br>
      <@wsLib.onlinedoc/>
      <br/>
      <span class="mainSubTitle">Index</span>
      <#if rootfamily.children?size &gt; 0>
      <table>
         <#list rootfamily.children as childpath>
         <tr><td><a href="${url.serviceContext}/index/family${childpath.path}">Browse '${childpath.name}' Web Scripts</a></td></tr>
         </#list>  
      </table>
      <br/>
      </#if> 
      <table>
         <tr><td><a href="${url.serviceContext}/index/all">Browse all Web Scripts</a></td></tr>
         <tr><td><a href="${url.serviceContext}/index/uri/">Browse by Web Script URI</a></td></tr>
         <tr><td><a href="${url.serviceContext}/index/package/">Browse by Web Script Package</a></td></tr>
      </table>
      <br/>
      <br/>
      <span class="mainSubTitle">Maintenance</span>
      <form action="${url.serviceContext}${url.match}" method="post">
      <input type="hidden" name="reset" value="on"/>
      <table>
   	 <tr><td><a href="${url.serviceContext}/index/lifecycle/">Browse by Web Script Lifecycle</a></td></tr>
         <#if failures?size &gt; 0>
         <tr><td><a href="${url.serviceContext}/index/failures">Browse failed Web Scripts</a></td></tr>
         </#if>
         <tr><td><a href="${url.serviceContext}/api/javascript/debugger">Alfresco Javascript Debugger</a></td></tr>
         <tr><td><a href="${url.serviceContext}/installer">Web Script Installer</a></td></tr>
      </table>
      <br/>
      <table>
         <tr><td><input type="submit" name="submit" value="Refresh Web Scripts"/></td></tr>          
      </table>
      </div>
   </body>
</html>
File: org/alfresco/index.get.properties
alfresco.index.title=Web Scripts Home