. Submit Dialog now supports submit with no workflow match - i.e. allows direct submit to staging sandbox if no workflows are appropriate

. Submit Dialog now requires comment+label field to be completed
. DNS name client-side check now allows captial A-Z characters
. Create Shortcut action now available for Website folder type

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4585 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Kevin Roast
2006-12-12 19:00:18 +00:00
parent 0442918790
commit cd3f538dcb

View File

@@ -56,9 +56,11 @@
<h:panelGrid columns="2" cellpadding="2" cellpadding="2" width="100%" style="margin-left:8px">
<h:outputText value="#{msg.submit_comment}"/>
<h:inputText id="comment" value="#{DialogManager.bean.comment}" maxlength="1024" size="35" />
<h:inputText id="comment" value="#{DialogManager.bean.comment}" maxlength="1024" size="35"
onkeyup="javascript:checkButtonState();" />
<h:outputText value="#{msg.submit_snapshotlabel}"/>
<h:inputText id="label" value="#{DialogManager.bean.label}" maxlength="1024" size="35" />
<h:inputText id="label" value="#{DialogManager.bean.label}" maxlength="1024" size="35"
onkeyup="javascript:checkButtonState();" />
</h:panelGrid>
<h:panelGrid columns="1" cellpadding="2" style="padding-top:16px;padding-bottom:4px;"