|
| File: org/alfresco/modules/blog/comments/edit-comment.get.desc.xml |
<webscript>
<shortname>edit-comment</shortname>
<description>Get a comment edit form</description>
<url>/modules/blog/comments/edit-comment</url>
<format default="html"/>
</webscript> |
| File: org/alfresco/modules/blog/comments/edit-comment.get.html.ftl |
<div class="editCommentForm">
<div class="commentFormTitle">
${msg("editComment")}
</div>
<div class="editComment">
<form id="${args.htmlid}-form" method="POST" action="">
<input type="hidden" id="${args.htmlid}-site" name="site" value="" />
<input type="hidden" id="${args.htmlid}-container" name="container" value="" />
<input type="hidden" id="${args.htmlid}-itemTitle" name="itemTitle" value="" />
<input type="hidden" id="${args.htmlid}-page" name="page" value="" />
<input type="hidden" id="${args.htmlid}-pageParams" name="pageParams" value="" />
<textarea id="${args.htmlid}-content" rows="8" cols="80" name="content"></textarea>
<div class="commentFormAction">
<input type="submit" id="${args.htmlid}-submit" value="${msg('action.update')}" />
<input type="reset" id="${args.htmlid}-cancel" value="${msg('action.cancel')}" />
</div>
</form>
</div>
</div>
|
| File: org/alfresco/modules/blog/comments/edit-comment.get.properties |
## template
editComment=Edit Comment
action.update=Update
action.cancel=Cancel
|