mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
- Refactored client config for workflow
- Enabled all default actions for workflow package items - Added view content properties dialog - Added view completed task dialog git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@3644 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -47,9 +47,9 @@ import org.apache.commons.logging.LogFactory;
|
||||
public class AlfrescoNavigationHandler extends NavigationHandler
|
||||
{
|
||||
public final static String OUTCOME_SEPARATOR = ":";
|
||||
public final static String DIALOG_PREXIX = "dialog" + OUTCOME_SEPARATOR;
|
||||
public final static String DIALOG_PREFIX = "dialog" + OUTCOME_SEPARATOR;
|
||||
public final static String WIZARD_PREFIX = "wizard" + OUTCOME_SEPARATOR;
|
||||
public final static String CLOSE_DIALOG_OUTCOME = DIALOG_PREXIX + "close";
|
||||
public final static String CLOSE_DIALOG_OUTCOME = DIALOG_PREFIX + "close";
|
||||
public final static String CLOSE_WIZARD_OUTCOME = WIZARD_PREFIX + "close";
|
||||
|
||||
protected final static String CONFIG_NAV_BEAN = "NavigationBean";
|
||||
@@ -135,7 +135,7 @@ public class AlfrescoNavigationHandler extends NavigationHandler
|
||||
{
|
||||
boolean dialog = false;
|
||||
|
||||
if (outcome != null && outcome.startsWith(DIALOG_PREXIX))
|
||||
if (outcome != null && outcome.startsWith(DIALOG_PREFIX))
|
||||
{
|
||||
dialog = true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user