mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
- Fix Web Script issue where urls contained ; (due to tomcat) - Allow AVMScriptStore to be passed through script converters (add serializable) git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6071 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
19 lines
367 B
Plaintext
19 lines
367 B
Plaintext
<html>
|
|
<head>
|
|
<title>AVM Stores</title>
|
|
</head>
|
|
<body>
|
|
AVM Stores
|
|
<br>
|
|
<br>
|
|
<table>
|
|
<tr>
|
|
<#list avm.stores as store>
|
|
<tr>
|
|
<td>${store.creator}<td> <td>${store.createdDate?datetime}<td> <td><a href="${url.serviceContext}/sample/avm/path/${store.id}/">${store.id}
|
|
</tr>
|
|
</#list>
|
|
</table>
|
|
</body>
|
|
</html>
|