|
| File: org/alfresco/modules/documentlibrary/workflow.get.desc.xml |
<webscript>
<shortname>workflow</shortname>
<description>Document Workflow module primarily for Document Library</description>
<url>/modules/documentlibrary/workflow</url>
</webscript> |
| File: org/alfresco/modules/documentlibrary/workflow.get.html.ftl |
<div id="${args.htmlid}-dialog" class="workflow">
<div id="${args.htmlid}-title" class="hd"></div>
<div class="bd">
<form id="${args.htmlid}-form" action="" method="post">
<input type="hidden" name="date" id="${args.htmlid}-date" value="" />
<div class="yui-g">
<h2>${msg("header.type")}:</h2>
</div>
<div class="field">
<select id="${args.htmlid}-type" name="type" tabindex="4">
<option value="wf:review" selected="selected">Review & Approve</option>
<option value="wf:adhoc">Adhoc Task</option>
</select>
</div>
<div class="yui-g">
<h2>${msg("header.people")}:</h2>
</div>
<div class="yui-ge field">
<div class="yui-u first">
<div id="${args.htmlid}-peoplefinder"></div>
</div>
<div class="yui-u">
<div id="${args.htmlid}-peopleselected" class="people-selected"></div>
</div>
</div>
<div class="yui-g">
<h2>${msg("header.date")}:</h2>
</div>
<div class="field">
<input id="${args.htmlid}-dueDate-checkbox" name="-" type="checkbox" value="${msg("label.due-date.none")}" tabindex="4"/>
<span id="${args.htmlid}-dueDate"><label for="${args.htmlid}-dueDate-checkbox">${msg("label.due-date.none")}</label></span>
</div>
<div id="${args.htmlid}-calendarOverlay" class="calendar-overlay">
<div class="bd">
<div id="${args.htmlid}-calendar" class="calendar"></div>
</div>
</div>
<div class="yui-g">
<h2>${msg("header.comment")}:</h2>
</div>
<div class="field">
<textarea id="${args.htmlid}-comment" name="description" rows="3" tabindex="5"></textarea>
<span>${msg("label.comment.max-length")}</span>
</div>
<div class="bdft">
<input type="button" id="${args.htmlid}-ok" value="${msg("button.assign")}" tabindex="6" />
<input type="button" id="${args.htmlid}-cancel" value="${msg("button.cancel")}" tabindex="7" />
</div>
</form>
</div>
</div>
<script type="text/javascript">//<![CDATA[
Alfresco.util.addMessages(${messages}, "Alfresco.module.DoclibWorkflow");
//]]></script>
|
| File: org/alfresco/modules/documentlibrary/workflow.get.properties |
## Titles
title.single=Assign Workflow to {0}
title.multi=Assign Workflow to {0} Items
header.type=Select Workflow
header.people=Select Assignee
header.date=Due Date
header.comment=Comment
## Pop-up Messages
message.assigning=Assigning workflows...
message.workflow.success=Successfully assigned {0} item(s) to workflow
message.workflow.failure=Could not assign workflow
## Labels, Tooltips, etc.
button.assign=Assign Workflow
label.due-date.none=(None)
format.due-date=dddd, dd mmmm yyyy
tooltip.remove-person=Remove
label.comment.max-length=(Maximum 255 characters)
label.no-users-selected=No users selected |